Describe Classic Link Instances
ec2_describe_classic_link_instances | R Documentation |
This action is deprecated¶
Description¶
This action is deprecated.
Describes your linked EC2-Classic instances. This request only returns information about EC2-Classic instances linked to a VPC through ClassicLink. You cannot use this request to return information about other instances.
Usage¶
ec2_describe_classic_link_instances(DryRun, InstanceIds, Filters,
NextToken, MaxResults)
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
|
InstanceIds |
The instance IDs. Must be instances linked to a VPC through ClassicLink. |
Filters |
The filters.
|
NextToken |
The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request. |
MaxResults |
The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination. Constraint: If the value is greater than 1000, we return only 1000 items. |
Value¶
A list with the following syntax:
list(
Instances = list(
list(
Groups = list(
list(
GroupId = "string",
GroupName = "string"
)
),
InstanceId = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
VpcId = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_classic_link_instances(
DryRun = TRUE|FALSE,
InstanceIds = list(
"string"
),
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
NextToken = "string",
MaxResults = 123
)