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

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

Overview

The location of the S3 bucket that contains a revision.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_nameString

The name of the S3 bucket.

Returns:

  • (String)


3908
3909
3910
3911
3912
3913
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 3908

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

#object_keyString

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

Returns:

  • (String)


3908
3909
3910
3911
3912
3913
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 3908

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