Class: Aws::CodePipeline::Types::S3Location

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

Overview

The Amazon S3 artifact location for an action’s artifacts.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The Amazon S3 artifact bucket for an action’s artifacts.

Returns:

  • (String)


3915
3916
3917
3918
3919
3920
# File 'lib/aws-sdk-codepipeline/types.rb', line 3915

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

#keyString

The artifact name.

Returns:

  • (String)


3915
3916
3917
3918
3919
3920
# File 'lib/aws-sdk-codepipeline/types.rb', line 3915

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