Class: Aws::CodeDeploy::Types::S3Location

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#bucketString

The name of the Amazon S3 bucket where the application revision is stored.

Returns:

  • (String)


4525
4526
4527
4528
4529
4530
4531
4532
4533
# File 'lib/aws-sdk-codedeploy/types.rb', line 4525

class S3Location < Struct.new(
  :bucket,
  :key,
  :bundle_type,
  :version,
  :e_tag)
  SENSITIVE = []
  include Aws::Structure
end

#bundle_typeString

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.

  • ‘YAML`: A YAML-formatted file.

  • ‘JSON`: A JSON-formatted file.

Returns:

  • (String)


4525
4526
4527
4528
4529
4530
4531
4532
4533
# File 'lib/aws-sdk-codedeploy/types.rb', line 4525

class S3Location < Struct.new(
  :bucket,
  :key,
  :bundle_type,
  :version,
  :e_tag)
  SENSITIVE = []
  include Aws::Structure
end

#e_tagString

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.

Returns:

  • (String)


4525
4526
4527
4528
4529
4530
4531
4532
4533
# File 'lib/aws-sdk-codedeploy/types.rb', line 4525

class S3Location < Struct.new(
  :bucket,
  :key,
  :bundle_type,
  :version,
  :e_tag)
  SENSITIVE = []
  include Aws::Structure
end

#keyString

The name of the Amazon S3 object that represents the bundled artifacts for the application revision.

Returns:

  • (String)


4525
4526
4527
4528
4529
4530
4531
4532
4533
# File 'lib/aws-sdk-codedeploy/types.rb', line 4525

class S3Location < Struct.new(
  :bucket,
  :key,
  :bundle_type,
  :version,
  :e_tag)
  SENSITIVE = []
  include Aws::Structure
end

#versionString

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.

Returns:

  • (String)


4525
4526
4527
4528
4529
4530
4531
4532
4533
# File 'lib/aws-sdk-codedeploy/types.rb', line 4525

class S3Location < Struct.new(
  :bucket,
  :key,
  :bundle_type,
  :version,
  :e_tag)
  SENSITIVE = []
  include Aws::Structure
end