Class: AWSCDK::B2BI::CfnPartnership::OutboundEdiOptionsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::B2BI::CfnPartnership::OutboundEdiOptionsProperty
- Defined in:
- b2_bi/cfn_partnership.rb
Overview
A container for outbound EDI options.
Instance Attribute Summary collapse
-
#x12 ⇒ AWSCDK::IResolvable, AWSCDK::B2BI::CfnPartnership::X12EnvelopeProperty
readonly
A structure that contains an X12 envelope structure.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(x12:) ⇒ OutboundEdiOptionsProperty
constructor
A new instance of OutboundEdiOptionsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(x12:) ⇒ OutboundEdiOptionsProperty
Returns a new instance of OutboundEdiOptionsProperty.
708 709 710 711 |
# File 'b2_bi/cfn_partnership.rb', line 708 def initialize(x12:) @x12 = x12.is_a?(Hash) ? ::AWSCDK::B2BI::CfnPartnership::X12EnvelopeProperty.new(**x12.transform_keys(&:to_sym)) : x12 Jsii::Type.check_type(@x12, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19iMmJpLkNmblBhcnRuZXJzaGlwLlgxMkVudmVsb3BlUHJvcGVydHkifV19fQ==")), "x12") end |
Instance Attribute Details
#x12 ⇒ AWSCDK::IResolvable, AWSCDK::B2BI::CfnPartnership::X12EnvelopeProperty (readonly)
A structure that contains an X12 envelope structure.
717 718 719 |
# File 'b2_bi/cfn_partnership.rb', line 717 def x12 @x12 end |
Class Method Details
.jsii_properties ⇒ Object
719 720 721 722 723 |
# File 'b2_bi/cfn_partnership.rb', line 719 def self.jsii_properties { :x12 => "x12", } end |
Instance Method Details
#to_jsii ⇒ Object
725 726 727 728 729 730 731 |
# File 'b2_bi/cfn_partnership.rb', line 725 def to_jsii result = {} result.merge!({ "x12" => @x12, }) result.compact end |