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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-deadline/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)


6592
6593
6594
6595
6596
6597
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 6592

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)


6592
6593
6594
6595
6596
6597
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 6592

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