Class: AWSCDK::DataZone::CfnProjectProfile::EnvironmentConfigurationParameterProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
data_zone/cfn_project_profile.rb

Overview

The environment configuration parameter.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(is_editable: nil, name: nil, value: nil) ⇒ EnvironmentConfigurationParameterProperty

Returns a new instance of EnvironmentConfigurationParameterProperty.

Parameters:

  • is_editable (Boolean, AWSCDK::IResolvable, nil) (defaults to: nil)

    Specifies whether the environment parameter is editable.

  • name (String, nil) (defaults to: nil)

    The name of the environment configuration parameter.

  • value (String, nil) (defaults to: nil)

    The value of the environment configuration parameter.



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_editableBoolean, ... (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

#nameString? (readonly)

The name of the environment configuration parameter.



710
711
712
# File 'data_zone/cfn_project_profile.rb', line 710

def name
  @name
end

#valueString? (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_propertiesObject



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_jsiiObject



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