Class: Aws::B2bi::Types::S3Location

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb

Overview

Specifies the details for the Amazon S3 file location that is being used with Amazon Web Services B2BI Data Interchange. File locations in Amazon S3 are identified using a combination of the bucket and key.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_nameString

Specifies the name of the Amazon S3 bucket.

Returns:

  • (String)


1310
1311
1312
1313
1314
1315
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1310

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

#keyString

Specifies the Amazon S3 key for the file location.

Returns:

  • (String)


1310
1311
1312
1313
1314
1315
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1310

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