Amazon CodeDeploy · Schema
S3Location
Information about the location of application artifacts stored in Amazon S3.
AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment
Properties
| Name | Type | Description |
|---|---|---|
| bucket | object | |
| key | object | |
| bundleType | object | |
| version | object | |
| eTag | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-schema/amazon-codedeploy-s3-location-schema.json",
"title": "S3Location",
"description": "Information about the location of application artifacts stored in Amazon S3.",
"type": "object",
"properties": {
"bucket": {
"allOf": [
{
"$ref": "#/components/schemas/S3Bucket"
},
{
"description": "The name of the Amazon S3 bucket where the application revision is stored."
}
]
},
"key": {
"allOf": [
{
"$ref": "#/components/schemas/S3Key"
},
{
"description": "The name of the Amazon S3 object that represents the bundled artifacts for the application revision."
}
]
},
"bundleType": {
"allOf": [
{
"$ref": "#/components/schemas/BundleType"
},
{
"description": "<p>The file type of the application revision. Must be one of the following:</p> <ul> <li> <p> <code>tar</code>: A tar archive file.</p> </li> <li> <p> <code>tgz</code>: A compressed tar archive file.</p> </li> <li> <p> <code>zip</code>: A zip archive file.</p> </li> </ul>"
}
]
},
"version": {
"allOf": [
{
"$ref": "#/components/schemas/VersionId"
},
{
"description": "<p>A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision.</p> <p>If the version is not specified, the system uses the most recent version by default.</p>"
}
]
},
"eTag": {
"allOf": [
{
"$ref": "#/components/schemas/ETag"
},
{
"description": "<p>The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision.</p> <p>If the ETag is not specified as an input parameter, ETag validation of the object is skipped.</p>"
}
]
}
}
}