CfnDBSubnetGroupMixinProps

class aws_cdk.mixins_preview.aws_neptune.mixins.CfnDBSubnetGroupMixinProps(*, db_subnet_group_description=None, db_subnet_group_name=None, subnet_ids=None, tags=None)

Bases: object

Properties for CfnDBSubnetGroupPropsMixin.

Parameters:
  • db_subnet_group_description (Optional[str]) – Provides the description of the DB subnet group.

  • db_subnet_group_name (Optional[str]) – The name of the DB subnet group.

  • subnet_ids (Optional[Sequence[str]]) – The Amazon EC2 subnet IDs for the DB subnet group.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags that you want to attach to the DB subnet group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html

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.mixins_preview.aws_neptune import mixins as neptune_mixins

cfn_dBSubnet_group_mixin_props = neptune_mixins.CfnDBSubnetGroupMixinProps(
    db_subnet_group_description="dbSubnetGroupDescription",
    db_subnet_group_name="dbSubnetGroupName",
    subnet_ids=["subnetIds"],
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

db_subnet_group_description

Provides the description of the DB subnet group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupdescription

db_subnet_group_name

The name of the DB subnet group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-dbsubnetgroupname

subnet_ids

The Amazon EC2 subnet IDs for the DB subnet group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-subnetids

tags

The tags that you want to attach to the DB subnet group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#cfn-neptune-dbsubnetgroup-tags