{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--aws-codepipeline-customactiontype.json",
  "title": "AWSCodePipelineCustomActionTypeProperties",
  "description": "The AWS::CodePipeline::CustomActionType resource creates a custom action for activities that aren't included in the CodePipeline default actions, such as running an internally developed build process or a test suite. You can use these custom actions in the stage of a pipeline.. Source:- <https://github.com/aws-cloudformation/aws-cloudformation-resource-providers-codepipeline.git>",
  "x-lintel": {
    "source": "https://raw.githubusercontent.com/lalcebo/json-schema/master/serverless/resources/cloudformation-modified/aws-codepipeline-customactiontype.json",
    "sourceSha256": "3756cde68177166b867eebfc48e88664ef343a1eddf09421d7e63b4ee5a9572f"
  },
  "type": "object",
  "properties": {
    "Category": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The category of the custom action, such as a build action or a test action."
    },
    "ConfigurationProperties": {
      "description": "The configuration properties for the custom action.",
      "type": "array",
      "uniqueItems": true,
      "insertionOrder": false,
      "items": {
        "$ref": "#/$defs/ConfigurationProperties"
      }
    },
    "InputArtifactDetails": {
      "description": "The details of the input artifact for the action, such as its commit ID.",
      "$ref": "#/$defs/ArtifactDetails"
    },
    "OutputArtifactDetails": {
      "description": "The details of the output artifact of the action, such as its commit ID.",
      "$ref": "#/$defs/ArtifactDetails"
    },
    "Provider": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The provider of the service used in the custom action, such as AWS CodeDeploy."
    },
    "Settings": {
      "description": "URLs that provide users information about this custom action.",
      "$ref": "#/$defs/Settings"
    },
    "Tags": {
      "description": "Any tags assigned to the custom action.",
      "type": "array",
      "uniqueItems": false,
      "insertionOrder": false,
      "items": {
        "$ref": "#/$defs/Tag"
      }
    },
    "Version": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The version identifier of the custom action."
    }
  },
  "typeName": "AWS::CodePipeline::CustomActionType",
  "primaryIdentifier": [
    "/properties/Category",
    "/properties/Provider",
    "/properties/Version"
  ],
  "sourceUrl": "https://github.com/aws-cloudformation/aws-cloudformation-resource-providers-codepipeline.git",
  "$defs": {
    "ConfigurationProperties": {
      "title": "AWSCodePipelineCustomActionTypeConfigurationPropertiesDefinition",
      "description": "The configuration properties for the custom action.",
      "type": "object",
      "properties": {
        "Description": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The description of the action configuration property that is displayed to users. "
        },
        "Key": {
          "description": "Whether the configuration property is a key.",
          "type": "boolean"
        },
        "Name": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The name of the action configuration property."
        },
        "Queryable": {
          "description": "Indicates that the property is used with PollForJobs. When creating a custom action, an action can have up to one queryable property. If it has one, that property must be both required and not secret.If you create a pipeline with a custom action type, and that custom action contains a queryable property, the value for that configuration property is subject to other restrictions. The value must be less than or equal to twenty (20) characters. The value can contain only alphanumeric characters, underscores, and hyphens. ",
          "type": "boolean"
        },
        "Required": {
          "description": "Whether the configuration property is a required value.",
          "type": "boolean"
        },
        "Secret": {
          "description": "Whether the configuration property is secret. Secrets are hidden from all calls except for GetJobDetails, GetThirdPartyJobDetails, PollForJobs, and PollForThirdPartyJobs.",
          "type": "boolean"
        },
        "Type": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The type of the configuration property."
        }
      },
      "required": [
        "Key",
        "Name",
        "Required",
        "Secret"
      ],
      "additionalProperties": false
    },
    "ArtifactDetails": {
      "title": "AWSCodePipelineCustomActionTypeArtifactDetailsDefinition",
      "description": "Returns information about the details of an artifact.",
      "type": "object",
      "properties": {
        "MaximumCount": {
          "description": "The maximum number of artifacts allowed for the action type.",
          "type": "integer"
        },
        "MinimumCount": {
          "description": "The minimum number of artifacts allowed for the action type.",
          "type": "integer"
        }
      },
      "required": [
        "MaximumCount",
        "MinimumCount"
      ],
      "additionalProperties": false
    },
    "Settings": {
      "title": "AWSCodePipelineCustomActionTypeSettingsDefinition",
      "description": "Settings is a property of the AWS::CodePipeline::CustomActionType resource that provides URLs that users can access to view information about the CodePipeline custom action. ",
      "type": "object",
      "properties": {
        "EntityUrlTemplate": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The URL returned to the AWS CodePipeline console that provides a deep link to the resources of the external system, such as the configuration page for an AWS CodeDeploy deployment group. This link is provided as part of the action display in the pipeline. "
        },
        "ExecutionUrlTemplate": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The URL returned to the AWS CodePipeline console that contains a link to the top-level landing page for the external system, such as the console page for AWS CodeDeploy. This link is shown on the pipeline view page in the AWS CodePipeline console and provides a link to the execution entity of the external action. "
        },
        "RevisionUrlTemplate": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The URL returned to the AWS CodePipeline console that contains a link to the page where customers can update or change the configuration of the external action. "
        },
        "ThirdPartyConfigurationUrl": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The URL of a sign-up page where users can sign up for an external service and perform initial configuration of the action provided by that service."
        }
      },
      "additionalProperties": false
    },
    "Tag": {
      "type": "object",
      "title": "AWSCodePipelineCustomActionTypeTagDefinition",
      "properties": {
        "Value": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        },
        "Key": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ]
        }
      },
      "required": [
        "Value",
        "Key"
      ],
      "additionalProperties": false
    }
  },
  "readOnlyProperties": [
    "/properties/Id"
  ],
  "additionalProperties": false,
  "tagging": {
    "taggable": true,
    "tagOnCreate": true,
    "tagUpdatable": true,
    "cloudFormationSystemTags": false,
    "tagProperty": "/properties/Tags"
  },
  "required": [
    "Category",
    "InputArtifactDetails",
    "OutputArtifactDetails",
    "Provider",
    "Version"
  ],
  "createOnlyProperties": [
    "/properties/Category",
    "/properties/ConfigurationProperties",
    "/properties/InputArtifactDetails",
    "/properties/OutputArtifactDetails",
    "/properties/Provider",
    "/properties/Settings",
    "/properties/Version"
  ],
  "writeOnlyProperties": [
    "/properties/ConfigurationProperties/*/Type"
  ]
}
