Class: Aws::B2bi::Types::OutputSampleFileSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::OutputSampleFileSource
- Defined in:
- gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb
Overview
Note:
OutputSampleFileSource is a union - when making an API calls you must set exactly one of the members.
Container for the location of a sample file used for outbound transformations.
Direct Known Subclasses
Defined Under Namespace
Classes: FileLocation, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_location ⇒ Types::S3Location
Specifies the details for the Amazon S3 file location that is being used with Amazon Web Services B2B Data Interchange.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#file_location ⇒ Types::S3Location
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.
1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1663 class OutputSampleFileSource < Struct.new( :file_location, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class FileLocation < OutputSampleFileSource; end class Unknown < OutputSampleFileSource; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1663 1664 1665 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1663 def unknown @unknown end |