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)


6852
6853
6854
6855
6856
6857
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 6852

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)


6852
6853
6854
6855
6856
6857
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 6852

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