You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing S3Location as input to an Aws::Client method, you can use a vanilla 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.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

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

Returns:

  • (String)

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

#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.

    Possible values:

    • tar
    • tgz
    • zip
    • YAML
    • JSON

Returns:

  • (String)

    The file type of the application revision.

#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)

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

#keyString

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

Returns:

  • (String)

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

#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)

    A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision.