Class: Aws::CodePipeline::Types::S3ArtifactLocation

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-codepipeline/types.rb

Overview

The location of the Amazon S3 bucket that contains a revision.

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_nameString

The name of the Amazon S3 bucket.

Returns:

  • (String)


2794
2795
2796
2797
2798
# File 'lib/aws-sdk-codepipeline/types.rb', line 2794

class S3ArtifactLocation < Struct.new(
  :bucket_name,
  :object_key)
  include Aws::Structure
end

#object_keyString

The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.

Returns:

  • (String)


2794
2795
2796
2797
2798
# File 'lib/aws-sdk-codepipeline/types.rb', line 2794

class S3ArtifactLocation < Struct.new(
  :bucket_name,
  :object_key)
  include Aws::Structure
end