Describe Secondary Interfaces
| ec2_describe_secondary_interfaces | R Documentation |
Describes one or more of your secondary interfaces¶
Description¶
Describes one or more of your secondary interfaces.
Usage¶
ec2_describe_secondary_interfaces(DryRun, Filters, MaxResults,
NextToken, SecondaryInterfaceIds)
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. |
SecondaryInterfaceIds |
The IDs of the secondary interfaces. |
Value¶
A list with the following syntax:
list(
SecondaryInterfaces = list(
list(
AvailabilityZone = "string",
AvailabilityZoneId = "string",
Attachment = list(
AttachmentId = "string",
AttachTime = as.POSIXct(
"2015-01-01"
),
DeleteOnTermination = TRUE|FALSE,
DeviceIndex = 123,
InstanceId = "string",
InstanceOwnerId = "string",
NetworkCardIndex = 123,
Status = "attaching"|"attached"|"detaching"|"detached"
),
MacAddress = "string",
OwnerId = "string",
PrivateIpv4Addresses = list(
list(
PrivateIpAddress = "string"
)
),
SecondaryInterfaceId = "string",
SecondaryInterfaceArn = "string",
SecondaryInterfaceType = "secondary",
SecondarySubnetId = "string",
SecondaryNetworkId = "string",
SecondaryNetworkType = "rdma",
SourceDestCheck = TRUE|FALSE,
Status = "available"|"in-use",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_secondary_interfaces(
DryRun = TRUE|FALSE,
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
MaxResults = 123,
NextToken = "string",
SecondaryInterfaceIds = list(
"string"
)
)