Class: Aws::CodeDeploy::Types::S3Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::S3Location
- Defined in:
- gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb
Overview
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.
4399 4400 4401 4402 4403 4404 4405 4406 4407 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4399 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.
4399 4400 4401 4402 4403 4404 4405 4406 4407 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4399 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.
4399 4400 4401 4402 4403 4404 4405 4406 4407 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4399 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.
4399 4400 4401 4402 4403 4404 4405 4406 4407 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4399 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.
4399 4400 4401 4402 4403 4404 4405 4406 4407 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4399 class S3Location < Struct.new( :bucket, :key, :bundle_type, :version, :e_tag) SENSITIVE = [] include Aws::Structure end |