Class: AWSCDK::IoT::CfnCommand::AWSJsonSubstitutionCommandPreprocessorConfigProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::IoT::CfnCommand::AWSJsonSubstitutionCommandPreprocessorConfigProperty
- Defined in:
- io_t/cfn_command.rb
Overview
Instance Attribute Summary collapse
- #output_format ⇒ String readonly
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(output_format:) ⇒ AWSJsonSubstitutionCommandPreprocessorConfigProperty
constructor
A new instance of AWSJsonSubstitutionCommandPreprocessorConfigProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(output_format:) ⇒ AWSJsonSubstitutionCommandPreprocessorConfigProperty
Returns a new instance of AWSJsonSubstitutionCommandPreprocessorConfigProperty.
706 707 708 709 |
# File 'io_t/cfn_command.rb', line 706 def initialize(output_format:) @output_format = output_format Jsii::Type.check_type(@output_format, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "outputFormat") end |
Instance Attribute Details
#output_format ⇒ String (readonly)
713 714 715 |
# File 'io_t/cfn_command.rb', line 713 def output_format @output_format end |
Class Method Details
.jsii_properties ⇒ Object
715 716 717 718 719 |
# File 'io_t/cfn_command.rb', line 715 def self.jsii_properties { :output_format => "outputFormat", } end |
Instance Method Details
#to_jsii ⇒ Object
721 722 723 724 725 726 727 |
# File 'io_t/cfn_command.rb', line 721 def to_jsii result = {} result.merge!({ "outputFormat" => @output_format, }) result.compact end |