Class: Aws::B2bi::Types::TemplateDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::TemplateDetails
- Defined in:
- gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb
Overview
Note:
TemplateDetails is a union - when making an API calls you must set exactly one of the members.
A data structure that contains the information to use when generating a mapping template.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#x12 ⇒ Types::X12Details
A structure that contains the X12 transaction set and version.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
2003 2004 2005 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 2003 def unknown @unknown end |
#x12 ⇒ Types::X12Details
A structure that contains the X12 transaction set and version. The X12 structure is used when the system transforms an EDI (electronic data interchange) file.
2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 2003 class TemplateDetails < Struct.new( :x12, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class X12 < TemplateDetails; end class Unknown < TemplateDetails; end end |