Class: AWSCDK::DataZone::CfnProjectProfile::EnvironmentConfigurationParameterProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::DataZone::CfnProjectProfile::EnvironmentConfigurationParameterProperty
- Defined in:
- data_zone/cfn_project_profile.rb
Overview
The environment configuration parameter.
Instance Attribute Summary collapse
-
#is_editable ⇒ Boolean, ...
readonly
Specifies whether the environment parameter is editable.
-
#name ⇒ String?
readonly
The name of the environment configuration parameter.
-
#value ⇒ String?
readonly
The value of the environment configuration parameter.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(is_editable: nil, name: nil, value: nil) ⇒ EnvironmentConfigurationParameterProperty
constructor
A new instance of EnvironmentConfigurationParameterProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(is_editable: nil, name: nil, value: nil) ⇒ EnvironmentConfigurationParameterProperty
Returns a new instance of EnvironmentConfigurationParameterProperty.
692 693 694 695 696 697 698 699 |
# File 'data_zone/cfn_project_profile.rb', line 692 def initialize(is_editable: nil, name: nil, value: nil) @is_editable = is_editable Jsii::Type.check_type(@is_editable, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3sicHJpbWl0aXZlIjoiYm9vbGVhbiJ9LHsiZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifV19fQ==")), "isEditable") unless @is_editable.nil? @name = name Jsii::Type.check_type(@name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "name") unless @name.nil? @value = value Jsii::Type.check_type(@value, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "value") unless @value.nil? end |
Instance Attribute Details
#is_editable ⇒ Boolean, ... (readonly)
Specifies whether the environment parameter is editable.
705 706 707 |
# File 'data_zone/cfn_project_profile.rb', line 705 def is_editable @is_editable end |
#name ⇒ String? (readonly)
The name of the environment configuration parameter.
710 711 712 |
# File 'data_zone/cfn_project_profile.rb', line 710 def name @name end |
#value ⇒ String? (readonly)
The value of the environment configuration parameter.
715 716 717 |
# File 'data_zone/cfn_project_profile.rb', line 715 def value @value end |
Class Method Details
.jsii_properties ⇒ Object
717 718 719 720 721 722 723 |
# File 'data_zone/cfn_project_profile.rb', line 717 def self.jsii_properties { :is_editable => "isEditable", :name => "name", :value => "value", } end |
Instance Method Details
#to_jsii ⇒ Object
725 726 727 728 729 730 731 732 733 |
# File 'data_zone/cfn_project_profile.rb', line 725 def to_jsii result = {} result.merge!({ "isEditable" => @is_editable, "name" => @name, "value" => @value, }) result.compact end |