/#Action=ModifyClusterSubnetGroup
http://redshift.{region}.amazonaws.com/#Action=ModifyClusterSubnetGroupModifies a cluster subnet group to include the specified list of VPC subnets. The operation replaces the existing list of subnets with the new list of subnets.
Query Params
The name of the subnet group to be modified.
A text description of the subnet group to be modified.
An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single request.
Responses
{
"success": true,
"data": {
"id": "abc123",
"created_at": "2025-01-01T00:00:00Z"
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters"
}
}1curl --request GET \2 --url 'http://redshift.{region}.amazonaws.com/#Action=ModifyClusterSubnetGroup' \3 --header 'accept: application/json' \4 --header 'content-type: application/json'1{2 "success": true,3 "data": {4 "id": "abc123",5 "created_at": "2025-01-01T00:00:00Z"6 }7}