Class: AWSCDK::RDS::ParameterGroupClusterConfig
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::RDS::ParameterGroupClusterConfig
- Defined in:
- rds/parameter_group_cluster_config.rb
Overview
The type returned from IParameterGroup.bindToCluster.
Instance Attribute Summary collapse
-
#parameter_group_name ⇒ String
readonly
The name of this parameter group.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(parameter_group_name:) ⇒ ParameterGroupClusterConfig
constructor
A new instance of ParameterGroupClusterConfig.
- #to_jsii ⇒ Object
Constructor Details
#initialize(parameter_group_name:) ⇒ ParameterGroupClusterConfig
Returns a new instance of ParameterGroupClusterConfig.
8 9 10 11 |
# File 'rds/parameter_group_cluster_config.rb', line 8 def initialize(parameter_group_name:) @parameter_group_name = parameter_group_name Jsii::Type.check_type(@parameter_group_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "parameterGroupName") end |
Instance Attribute Details
#parameter_group_name ⇒ String (readonly)
The name of this parameter group.
16 17 18 |
# File 'rds/parameter_group_cluster_config.rb', line 16 def parameter_group_name @parameter_group_name end |
Class Method Details
.jsii_properties ⇒ Object
18 19 20 21 22 |
# File 'rds/parameter_group_cluster_config.rb', line 18 def self.jsii_properties { :parameter_group_name => "parameterGroupName", } end |
Instance Method Details
#to_jsii ⇒ Object
24 25 26 27 28 29 30 |
# File 'rds/parameter_group_cluster_config.rb', line 24 def to_jsii result = {} result.merge!({ "parameterGroupName" => @parameter_group_name, }) result.compact end |