Class: Aws::B2bi::Types::OutputSampleFileSource

Inherits:
Struct
  • Object
show all
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

FileLocation, Unknown

Defined Under Namespace

Classes: FileLocation, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#file_locationTypes::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.

Returns:



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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1663
1664
1665
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1663

def unknown
  @unknown
end