Class: Aws::CodeDeploy::Types::S3Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::S3Location
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
When making an API call, you may pass S3Location data as a hash:
{
bucket: "S3Bucket",
key: "S3Key",
bundle_type: "tar", # accepts tar, tgz, zip, YAML, JSON
version: "VersionId",
e_tag: "ETag",
}
Information about the location of application artifacts stored in Amazon S3.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the Amazon S3 bucket where the application revision is stored.
-
#bundle_type ⇒ String
The file type of the application revision.
-
#e_tag ⇒ String
The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision.
-
#key ⇒ String
The name of the Amazon S3 object that represents the bundled artifacts for the application revision.
-
#version ⇒ String
A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision.
Instance Attribute Details
#bucket ⇒ String
The name of the Amazon S3 bucket where the application revision is stored.
5143 5144 5145 5146 5147 5148 5149 5150 5151 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 5143 class S3Location < Struct.new( :bucket, :key, :bundle_type, :version, :e_tag) SENSITIVE = [] include Aws::Structure end |
#bundle_type ⇒ String
The file type of the application revision. Must be one of the following:
-
‘tar`: A tar archive file.
-
‘tgz`: A compressed tar archive file.
-
‘zip`: A zip archive file.
5143 5144 5145 5146 5147 5148 5149 5150 5151 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 5143 class S3Location < Struct.new( :bucket, :key, :bundle_type, :version, :e_tag) SENSITIVE = [] include Aws::Structure end |
#e_tag ⇒ String
The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision.
If the ETag is not specified as an input parameter, ETag validation of the object is skipped.
5143 5144 5145 5146 5147 5148 5149 5150 5151 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 5143 class S3Location < Struct.new( :bucket, :key, :bundle_type, :version, :e_tag) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
The name of the Amazon S3 object that represents the bundled artifacts for the application revision.
5143 5144 5145 5146 5147 5148 5149 5150 5151 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 5143 class S3Location < Struct.new( :bucket, :key, :bundle_type, :version, :e_tag) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision.
If the version is not specified, the system uses the most recent version by default.
5143 5144 5145 5146 5147 5148 5149 5150 5151 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 5143 class S3Location < Struct.new( :bucket, :key, :bundle_type, :version, :e_tag) SENSITIVE = [] include Aws::Structure end |