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)


1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1351

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



1351
1352
1353
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1351

def unknown
  @unknown
end