Modify Cache Subnet Group
elasticache_modify_cache_subnet_group | R Documentation |
Modifies an existing cache subnet group¶
Description¶
Modifies an existing cache subnet group.
Usage¶
elasticache_modify_cache_subnet_group(CacheSubnetGroupName,
CacheSubnetGroupDescription, SubnetIds)
Arguments¶
CacheSubnetGroupName |
[required] The name for the cache subnet group. This value is stored as a lowercase string. Constraints: Must contain no more than 255 alphanumeric characters or hyphens. Example: |
CacheSubnetGroupDescription |
A description of the cache subnet group. |
SubnetIds |
The EC2 subnet IDs for the cache subnet group. |
Value¶
A list with the following syntax:
list(
CacheSubnetGroup = list(
CacheSubnetGroupName = "string",
CacheSubnetGroupDescription = "string",
VpcId = "string",
Subnets = list(
list(
SubnetIdentifier = "string",
SubnetAvailabilityZone = list(
Name = "string"
),
SubnetOutpost = list(
SubnetOutpostArn = "string"
),
SupportedNetworkTypes = list(
"ipv4"|"ipv6"|"dual_stack"
)
)
),
ARN = "string",
SupportedNetworkTypes = list(
"ipv4"|"ipv6"|"dual_stack"
)
)
)
Request syntax¶
svc$modify_cache_subnet_group(
CacheSubnetGroupName = "string",
CacheSubnetGroupDescription = "string",
SubnetIds = list(
"string"
)
)
Examples¶
## Not run:
# Modifies an existing ElastiCache subnet group.
svc$modify_cache_subnet_group(
CacheSubnetGroupName = "my-sn-grp",
SubnetIds = list(
"subnet-bcde2345"
)
)
## End(Not run)