Class: AWSCDK::GroundStation::CfnConfig::DecodeConfigProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::GroundStation::CfnConfig::DecodeConfigProperty
- Defined in:
- ground_station/cfn_config.rb
Overview
Defines decoding settings.
Instance Attribute Summary collapse
-
#unvalidated_json ⇒ String?
readonly
The decoding settings are in JSON format and define a set of steps to perform to decode the data.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(unvalidated_json: nil) ⇒ DecodeConfigProperty
constructor
A new instance of DecodeConfigProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(unvalidated_json: nil) ⇒ DecodeConfigProperty
Returns a new instance of DecodeConfigProperty.
867 868 869 870 |
# File 'ground_station/cfn_config.rb', line 867 def initialize(unvalidated_json: nil) @unvalidated_json = unvalidated_json Jsii::Type.check_type(@unvalidated_json, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "unvalidatedJson") unless @unvalidated_json.nil? end |
Instance Attribute Details
#unvalidated_json ⇒ String? (readonly)
The decoding settings are in JSON format and define a set of steps to perform to decode the data.
876 877 878 |
# File 'ground_station/cfn_config.rb', line 876 def unvalidated_json @unvalidated_json end |
Class Method Details
.jsii_properties ⇒ Object
878 879 880 881 882 |
# File 'ground_station/cfn_config.rb', line 878 def self.jsii_properties { :unvalidated_json => "unvalidatedJson", } end |
Instance Method Details
#to_jsii ⇒ Object
884 885 886 887 888 889 890 |
# File 'ground_station/cfn_config.rb', line 884 def to_jsii result = {} result.merge!({ "unvalidatedJson" => @unvalidated_json, }) result.compact end |