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


3896
3897
3898
3899
3900
3901
# File 'lib/aws-sdk-codepipeline/types.rb', line 3896

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)


3896
3897
3898
3899
3900
3901
# File 'lib/aws-sdk-codepipeline/types.rb', line 3896

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