Class: Aws::B2bi::Types::InputFileSource

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

Overview

Note:

InputFileSource is a union - when making an API calls you must set exactly one of the members.

The input file to use for an outbound transformation.

Direct Known Subclasses

FileContent, Unknown

Defined Under Namespace

Classes: FileContent, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#file_contentString

Specify the input contents, as a string, for the source of an outbound transformation.

Returns:

  • (String)


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

class InputFileSource < Struct.new(
  :file_content,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class FileContent < InputFileSource; end
  class Unknown < InputFileSource; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1307
1308
1309
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1307

def unknown
  @unknown
end