Class: Aws::Deadline::Types::S3Location

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

Overview

The Amazon S3 location information.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_nameString

The name of the Amazon S3 bucket.

Returns:

  • (String)


6803
6804
6805
6806
6807
6808
# File 'lib/aws-sdk-deadline/types.rb', line 6803

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

#keyString

The Amazon S3 object key that uniquely identifies the Amazon S3 bucket.

Returns:

  • (String)


6803
6804
6805
6806
6807
6808
# File 'lib/aws-sdk-deadline/types.rb', line 6803

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