Class: Aws::B2bi::Types::S3Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::S3Location
- 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
-
#bucket_name ⇒ String
Specifies the name of the Amazon S3 bucket.
-
#key ⇒ String
Specifies the Amazon S3 key for the file location.
Instance Attribute Details
#bucket_name ⇒ String
Specifies the name of the Amazon S3 bucket.
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 |
#key ⇒ String
Specifies the Amazon S3 key for the file location.
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 |