ParameterGroupInstanceConfig

class aws_cdk.aws_rds.ParameterGroupInstanceConfig(*, parameter_group_name)

Bases: object

The type returned from IParameterGroup.bindToInstance.

Parameters:

parameter_group_name (str) – The name of this parameter group.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_rds as rds

parameter_group_instance_config = rds.ParameterGroupInstanceConfig(
    parameter_group_name="parameterGroupName"
)

Attributes

parameter_group_name

The name of this parameter group.