Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

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 B2B 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)

1759
1760
1761
1762
1763
1764
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1759

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

#keyString

Specifies the Amazon S3 key for the file location.

Returns:

  • (String)

1759
1760
1761
1762
1763
1764
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1759

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