Class: AWSCDK::Interfaces::AWSDAX::ParameterGroupReference

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
interfaces/awsdax/parameter_group_reference.rb

Overview

A reference to a ParameterGroup resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(parameter_group_name:) ⇒ ParameterGroupReference

Returns a new instance of ParameterGroupReference.

Parameters:

  • parameter_group_name (String)

    The ParameterGroupName of the ParameterGroup resource.



8
9
10
11
# File 'interfaces/awsdax/parameter_group_reference.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_nameString (readonly)

The ParameterGroupName of the ParameterGroup resource.

Returns:

  • (String)


16
17
18
# File 'interfaces/awsdax/parameter_group_reference.rb', line 16

def parameter_group_name
  @parameter_group_name
end

Class Method Details

.jsii_propertiesObject



18
19
20
21
22
# File 'interfaces/awsdax/parameter_group_reference.rb', line 18

def self.jsii_properties
  {
    :parameter_group_name => "parameterGroupName",
  }
end

Instance Method Details

#to_jsiiObject



24
25
26
27
28
29
30
# File 'interfaces/awsdax/parameter_group_reference.rb', line 24

def to_jsii
  result = {}
  result.merge!({
    "parameterGroupName" => @parameter_group_name,
  })
  result.compact
end