List Attachments
networkmanager_list_attachments | R Documentation |
Returns a list of core network attachments¶
Description¶
Returns a list of core network attachments.
Usage¶
networkmanager_list_attachments(CoreNetworkId, AttachmentType,
EdgeLocation, State, MaxResults, NextToken)
Arguments¶
CoreNetworkId |
The ID of a core network. |
AttachmentType |
The type of attachment. |
EdgeLocation |
The Region where the edge is located. |
State |
The state of the attachment. |
MaxResults |
The maximum number of results to return. |
NextToken |
The token for the next page of results. |
Value¶
A list with the following syntax:
list(
Attachments = list(
list(
CoreNetworkId = "string",
CoreNetworkArn = "string",
AttachmentId = "string",
OwnerAccountId = "string",
AttachmentType = "CONNECT"|"SITE_TO_SITE_VPN"|"VPC"|"DIRECT_CONNECT_GATEWAY"|"TRANSIT_GATEWAY_ROUTE_TABLE",
State = "REJECTED"|"PENDING_ATTACHMENT_ACCEPTANCE"|"CREATING"|"FAILED"|"AVAILABLE"|"UPDATING"|"PENDING_NETWORK_UPDATE"|"PENDING_TAG_ACCEPTANCE"|"DELETING",
EdgeLocation = "string",
EdgeLocations = list(
"string"
),
ResourceArn = "string",
AttachmentPolicyRuleNumber = 123,
SegmentName = "string",
NetworkFunctionGroupName = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
ProposedSegmentChange = list(
Tags = list(
list(
Key = "string",
Value = "string"
)
),
AttachmentPolicyRuleNumber = 123,
SegmentName = "string"
),
ProposedNetworkFunctionGroupChange = list(
Tags = list(
list(
Key = "string",
Value = "string"
)
),
AttachmentPolicyRuleNumber = 123,
NetworkFunctionGroupName = "string"
),
CreatedAt = as.POSIXct(
"2015-01-01"
),
UpdatedAt = as.POSIXct(
"2015-01-01"
),
LastModificationErrors = list(
list(
Code = "VPC_NOT_FOUND"|"SUBNET_NOT_FOUND"|"SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE"|"SUBNET_NO_FREE_ADDRESSES"|"SUBNET_UNSUPPORTED_AVAILABILITY_ZONE"|"SUBNET_NO_IPV6_CIDRS"|"VPN_CONNECTION_NOT_FOUND"|"MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED"|"DIRECT_CONNECT_GATEWAY_NOT_FOUND"|"DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS"|"DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF",
Message = "string",
ResourceArn = "string",
RequestId = "string"
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_attachments(
CoreNetworkId = "string",
AttachmentType = "CONNECT"|"SITE_TO_SITE_VPN"|"VPC"|"DIRECT_CONNECT_GATEWAY"|"TRANSIT_GATEWAY_ROUTE_TABLE",
EdgeLocation = "string",
State = "REJECTED"|"PENDING_ATTACHMENT_ACCEPTANCE"|"CREATING"|"FAILED"|"AVAILABLE"|"UPDATING"|"PENDING_NETWORK_UPDATE"|"PENDING_TAG_ACCEPTANCE"|"DELETING",
MaxResults = 123,
NextToken = "string"
)