List Attachment Routing Policy Associations
| networkmanager_list_attachment_routing_policy_associations | R Documentation |
Lists the routing policy associations for attachments in a core network¶
Description¶
Lists the routing policy associations for attachments in a core network.
Usage¶
networkmanager_list_attachment_routing_policy_associations(
CoreNetworkId, AttachmentId, MaxResults, NextToken)
Arguments¶
CoreNetworkId |
[required] The ID of the core network to list attachment routing policy associations for. |
AttachmentId |
The ID of a specific attachment to filter the routing policy associations. |
MaxResults |
The maximum number of results to return in a single page. |
NextToken |
The token for the next page of results. |
Value¶
A list with the following syntax:
list(
AttachmentRoutingPolicyAssociations = list(
list(
AttachmentId = "string",
PendingRoutingPolicies = list(
"string"
),
AssociatedRoutingPolicies = list(
"string"
),
RoutingPolicyLabel = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_attachment_routing_policy_associations(
CoreNetworkId = "string",
AttachmentId = "string",
MaxResults = 123,
NextToken = "string"
)