Describe Secondary Subnets
| ec2_describe_secondary_subnets | R Documentation |
Describes one or more of your secondary subnets¶
Description¶
Describes one or more of your secondary subnets.
Usage¶
ec2_describe_secondary_subnets(DryRun, Filters, MaxResults, NextToken,
SecondarySubnetIds)
Arguments¶
DryRun |
Checks whether you have the required permissions for the action,
without actually making the request, and provides an error response. If
you have the required permissions, the error response is
|
Filters |
The filters.
|
MaxResults |
The maximum number of results to return with a single call. To
retrieve the remaining results, make another call with the returned
|
NextToken |
The token for the next page of results. |
SecondarySubnetIds |
The IDs of the secondary subnets. |
Value¶
A list with the following syntax:
list(
SecondarySubnets = list(
list(
SecondarySubnetId = "string",
SecondarySubnetArn = "string",
SecondaryNetworkId = "string",
SecondaryNetworkType = "rdma",
OwnerId = "string",
AvailabilityZoneId = "string",
AvailabilityZone = "string",
Ipv4CidrBlockAssociations = list(
list(
AssociationId = "string",
CidrBlock = "string",
State = "associating"|"associated"|"association-failed"|"disassociating"|"disassociated"|"disassociation-failed",
StateReason = "string"
)
),
State = "create-in-progress"|"create-complete"|"create-failed"|"delete-in-progress"|"delete-complete"|"delete-failed",
StateReason = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_secondary_subnets(
DryRun = TRUE|FALSE,
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
MaxResults = 123,
NextToken = "string",
SecondarySubnetIds = list(
"string"
)
)