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.

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)


1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1357

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



1357
1358
1359
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1357

def unknown
  @unknown
end