Class: Aws::B2bi::Types::InputFileSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::InputFileSource
- 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
Defined Under Namespace
Classes: FileContent, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_content ⇒ String
Specify the input contents, as a string, for the source of an outbound transformation.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#file_content ⇒ String
Specify the input contents, as a string, for the source of an outbound transformation.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
1307 1308 1309 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1307 def unknown @unknown end |