Amazon CodePipeline · Schema
ActionTypeIdentifier
Specifies the category, owner, provider, and version of the action type.
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation
Properties
| Name | Type | Description |
|---|---|---|
| category | object | |
| owner | object | |
| provider | object | |
| version | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-schema/amazon-codepipeline-action-type-identifier-schema.json",
"title": "ActionTypeIdentifier",
"description": "Specifies the category, owner, provider, and version of the action type.",
"type": "object",
"properties": {
"category": {
"allOf": [
{
"$ref": "#/components/schemas/ActionCategory"
},
{
"description": "<p>Defines what kind of action can be taken in the stage, one of the following:</p> <ul> <li> <p> <code>Source</code> </p> </li> <li> <p> <code>Build</code> </p> </li> <li> <p> <code>Test</code> </p> </li> <li> <p> <code>Deploy</code> </p> </li> <li> <p> <code>Approval</code> </p> </li> <li> <p> <code>Invoke</code> </p> </li> </ul>"
}
]
},
"owner": {
"allOf": [
{
"$ref": "#/components/schemas/ActionTypeOwner"
},
{
"description": "The creator of the action type being called: <code>AWS</code> or <code>ThirdParty</code>."
}
]
},
"provider": {
"allOf": [
{
"$ref": "#/components/schemas/ActionProvider"
},
{
"description": "The provider of the action type being called. The provider name is supplied when the action type is created."
}
]
},
"version": {
"allOf": [
{
"$ref": "#/components/schemas/Version"
},
{
"description": "A string that describes the action type version."
}
]
}
},
"required": [
"category",
"owner",
"provider",
"version"
]
}