Description Usage Arguments Value Request syntax
View source: R/redshift_operations.R
Creates a new Amazon Redshift subnet group. You must provide a list of one or more subnets in your existing Amazon Virtual Private Cloud (Amazon VPC) when creating Amazon Redshift subnet group.
For information about subnet groups, go to Amazon Redshift Cluster Subnet Groups in the Amazon Redshift Cluster Management Guide.
1 2 | redshift_create_cluster_subnet_group(ClusterSubnetGroupName,
Description, SubnetIds, Tags)
|
ClusterSubnetGroupName |
[required] The name for the subnet group. Amazon Redshift stores the value as a lowercase string. Constraints:
Example: |
Description |
[required] A description for the subnet group. |
SubnetIds |
[required] An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single request. |
Tags |
A list of tag instances. |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | list(
ClusterSubnetGroup = list(
ClusterSubnetGroupName = "string",
Description = "string",
VpcId = "string",
SubnetGroupStatus = "string",
Subnets = list(
list(
SubnetIdentifier = "string",
SubnetAvailabilityZone = list(
Name = "string",
SupportedPlatforms = list(
list(
Name = "string"
)
)
),
SubnetStatus = "string"
)
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
)
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.