Amazon CodePipeline · Schema
CreateCustomActionTypeInput
Represents the input of a CreateCustomActionType operation.
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation
Properties
| Name | Type | Description |
|---|---|---|
| category | object | |
| provider | object | |
| version | object | |
| settings | object | |
| configurationProperties | object | |
| inputArtifactDetails | object | |
| outputArtifactDetails | object | |
| tags | 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-create-custom-action-type-input-schema.json",
"title": "CreateCustomActionTypeInput",
"description": "Represents the input of a CreateCustomActionType operation.",
"type": "object",
"properties": {
"category": {
"allOf": [
{
"$ref": "#/components/schemas/ActionCategory"
},
{
"description": "The category of the custom action, such as a build action or a test action."
}
]
},
"provider": {
"allOf": [
{
"$ref": "#/components/schemas/ActionProvider"
},
{
"description": "The provider of the service used in the custom action, such as CodeDeploy."
}
]
},
"version": {
"allOf": [
{
"$ref": "#/components/schemas/Version"
},
{
"description": "The version identifier of the custom action."
}
]
},
"settings": {
"allOf": [
{
"$ref": "#/components/schemas/ActionTypeSettings"
},
{
"description": "URLs that provide users information about this custom action."
}
]
},
"configurationProperties": {
"allOf": [
{
"$ref": "#/components/schemas/ActionConfigurationPropertyList"
},
{
"description": "<p>The configuration properties for the custom action.</p> <note> <p>You can refer to a name in the configuration properties of the custom action within the URL templates by following the format of {Config:name}, as long as the configuration property is both required and not secret. For more information, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/how-to-create-custom-action.html\">Create a Custom Action for a Pipeline</a>.</p> </note>"
}
]
},
"inputArtifactDetails": {
"allOf": [
{
"$ref": "#/components/schemas/ArtifactDetails"
},
{
"description": "The details of the input artifact for the action, such as its commit ID."
}
]
},
"outputArtifactDetails": {
"allOf": [
{
"$ref": "#/components/schemas/ArtifactDetails"
},
{
"description": "The details of the output artifact of the action, such as its commit ID."
}
]
},
"tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagList"
},
{
"description": "The tags for the custom action."
}
]
}
},
"required": [
"category",
"provider",
"version",
"inputArtifactDetails",
"outputArtifactDetails"
]
}