aws::docdb-subnet-group

Creates an Document db subnet group.

Example

aws::db-subnet-group db-subnet-group-example
    name: "db-subnet-group-example"
    description: "db-subnet-group-example-description"
    subnets: [
        $(aws::subnet subnet-db-subnet-group-example-1),
        $(aws::subnet subnet-db-subnet-group-example-2)
    ]

    tags: {
        Name: "db-subnet-group-example"
    }
end

Attributes

Attribute Description
description Description of the db subnet group.
name Name of the db subnet group. (Required)
subnets set A list of associated subnets. (Required)

Outputs

Attribute Description
arn The arn of the db subnet group.
status The status of this subnet group.