NetworkManagerClient
Index > NetworkManager > NetworkManagerClient
Auto-generated documentation for NetworkManager type annotations stubs module mypy-boto3-networkmanager.
NetworkManagerClient
Type annotations and code completion for boto3.client("networkmanager")
.
boto3 documentation
from boto3.session import Session
from mypy_boto3_networkmanager.client import NetworkManagerClient
def get_networkmanager_client() -> NetworkManagerClient:
return Session().client("networkmanager")
Exceptions
boto3
client exceptions are generated in runtime.
This class provides code completion for boto3.client("networkmanager").exceptions
structure.
client = boto3.client("networkmanager")
try:
do_something(client)
except (
client.AccessDeniedException,
client.ClientError,
client.ConflictException,
client.CoreNetworkPolicyException,
client.InternalServerException,
client.ResourceNotFoundException,
client.ServiceQuotaExceededException,
client.ThrottlingException,
client.ValidationException,
) as e:
print(e)
from mypy_boto3_networkmanager.client import Exceptions
def handle_error(exc: Exceptions.AccessDeniedException) -> None:
...
Methods
accept_attachment
Accepts a core network attachment request.
Type annotations and code completion for boto3.client("networkmanager").accept_attachment
method.
boto3 documentation
def accept_attachment(
self,
*,
AttachmentId: str,
) -> AcceptAttachmentResponseTypeDef: # (1)
...
kwargs: AcceptAttachmentRequestRequestTypeDef = { # (1)
"AttachmentId": ...,
}
parent.accept_attachment(**kwargs)
associate_connect_peer
Associates a core network Connect peer with a device and optionally, with a link.
Type annotations and code completion for boto3.client("networkmanager").associate_connect_peer
method.
boto3 documentation
def associate_connect_peer(
self,
*,
GlobalNetworkId: str,
ConnectPeerId: str,
DeviceId: str,
LinkId: str = ...,
) -> AssociateConnectPeerResponseTypeDef: # (1)
...
kwargs: AssociateConnectPeerRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
"ConnectPeerId": ...,
"DeviceId": ...,
}
parent.associate_connect_peer(**kwargs)
associate_customer_gateway
Associates a customer gateway with a device and optionally, with a link.
Type annotations and code completion for boto3.client("networkmanager").associate_customer_gateway
method.
boto3 documentation
def associate_customer_gateway(
self,
*,
CustomerGatewayArn: str,
GlobalNetworkId: str,
DeviceId: str,
LinkId: str = ...,
) -> AssociateCustomerGatewayResponseTypeDef: # (1)
...
kwargs: AssociateCustomerGatewayRequestRequestTypeDef = { # (1)
"CustomerGatewayArn": ...,
"GlobalNetworkId": ...,
"DeviceId": ...,
}
parent.associate_customer_gateway(**kwargs)
associate_link
Associates a link to a device.
Type annotations and code completion for boto3.client("networkmanager").associate_link
method.
boto3 documentation
def associate_link(
self,
*,
GlobalNetworkId: str,
DeviceId: str,
LinkId: str,
) -> AssociateLinkResponseTypeDef: # (1)
...
kwargs: AssociateLinkRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
"DeviceId": ...,
"LinkId": ...,
}
parent.associate_link(**kwargs)
associate_transit_gateway_connect_peer
Associates a transit gateway Connect peer with a device, and optionally, with a link.
Type annotations and code completion for boto3.client("networkmanager").associate_transit_gateway_connect_peer
method.
boto3 documentation
def associate_transit_gateway_connect_peer(
self,
*,
GlobalNetworkId: str,
TransitGatewayConnectPeerArn: str,
DeviceId: str,
LinkId: str = ...,
) -> AssociateTransitGatewayConnectPeerResponseTypeDef: # (1)
...
kwargs: AssociateTransitGatewayConnectPeerRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
"TransitGatewayConnectPeerArn": ...,
"DeviceId": ...,
}
parent.associate_transit_gateway_connect_peer(**kwargs)
can_paginate
Check if an operation can be paginated.
Type annotations and code completion for boto3.client("networkmanager").can_paginate
method.
boto3 documentation
close
Closes underlying endpoint connections.
Type annotations and code completion for boto3.client("networkmanager").close
method.
boto3 documentation
create_connect_attachment
Creates a core network Connect attachment from a specified core network attachment.
Type annotations and code completion for boto3.client("networkmanager").create_connect_attachment
method.
boto3 documentation
def create_connect_attachment(
self,
*,
CoreNetworkId: str,
EdgeLocation: str,
TransportAttachmentId: str,
Options: ConnectAttachmentOptionsTypeDef, # (1)
Tags: Sequence[TagTypeDef] = ..., # (2)
ClientToken: str = ...,
) -> CreateConnectAttachmentResponseTypeDef: # (3)
...
kwargs: CreateConnectAttachmentRequestRequestTypeDef = { # (1)
"CoreNetworkId": ...,
"EdgeLocation": ...,
"TransportAttachmentId": ...,
"Options": ...,
}
parent.create_connect_attachment(**kwargs)
create_connect_peer
Creates a core network Connect peer for a specified core network connect attachment between a core network and an appliance.
Type annotations and code completion for boto3.client("networkmanager").create_connect_peer
method.
boto3 documentation
def create_connect_peer(
self,
*,
ConnectAttachmentId: str,
PeerAddress: str,
InsideCidrBlocks: Sequence[str],
CoreNetworkAddress: str = ...,
BgpOptions: BgpOptionsTypeDef = ..., # (1)
Tags: Sequence[TagTypeDef] = ..., # (2)
ClientToken: str = ...,
) -> CreateConnectPeerResponseTypeDef: # (3)
...
kwargs: CreateConnectPeerRequestRequestTypeDef = { # (1)
"ConnectAttachmentId": ...,
"PeerAddress": ...,
"InsideCidrBlocks": ...,
}
parent.create_connect_peer(**kwargs)
create_connection
Creates a connection between two devices.
Type annotations and code completion for boto3.client("networkmanager").create_connection
method.
boto3 documentation
def create_connection(
self,
*,
GlobalNetworkId: str,
DeviceId: str,
ConnectedDeviceId: str,
LinkId: str = ...,
ConnectedLinkId: str = ...,
Description: str = ...,
Tags: Sequence[TagTypeDef] = ..., # (1)
) -> CreateConnectionResponseTypeDef: # (2)
...
kwargs: CreateConnectionRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
"DeviceId": ...,
"ConnectedDeviceId": ...,
}
parent.create_connection(**kwargs)
create_core_network
Creates a core network as part of your global network, and optionally, with a core network policy.
Type annotations and code completion for boto3.client("networkmanager").create_core_network
method.
boto3 documentation
def create_core_network(
self,
*,
GlobalNetworkId: str,
Description: str = ...,
Tags: Sequence[TagTypeDef] = ..., # (1)
PolicyDocument: str = ...,
ClientToken: str = ...,
) -> CreateCoreNetworkResponseTypeDef: # (2)
...
kwargs: CreateCoreNetworkRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
}
parent.create_core_network(**kwargs)
create_device
Creates a new device in a global network.
Type annotations and code completion for boto3.client("networkmanager").create_device
method.
boto3 documentation
def create_device(
self,
*,
GlobalNetworkId: str,
AWSLocation: AWSLocationTypeDef = ..., # (1)
Description: str = ...,
Type: str = ...,
Vendor: str = ...,
Model: str = ...,
SerialNumber: str = ...,
Location: LocationTypeDef = ..., # (2)
SiteId: str = ...,
Tags: Sequence[TagTypeDef] = ..., # (3)
) -> CreateDeviceResponseTypeDef: # (4)
...
- See AWSLocationTypeDef
- See LocationTypeDef
- See TagTypeDef
- See CreateDeviceResponseTypeDef
kwargs: CreateDeviceRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
}
parent.create_device(**kwargs)
create_global_network
Creates a new, empty global network.
Type annotations and code completion for boto3.client("networkmanager").create_global_network
method.
boto3 documentation
def create_global_network(
self,
*,
Description: str = ...,
Tags: Sequence[TagTypeDef] = ..., # (1)
) -> CreateGlobalNetworkResponseTypeDef: # (2)
...
kwargs: CreateGlobalNetworkRequestRequestTypeDef = { # (1)
"Description": ...,
}
parent.create_global_network(**kwargs)
create_link
Creates a new link for a specified site.
Type annotations and code completion for boto3.client("networkmanager").create_link
method.
boto3 documentation
def create_link(
self,
*,
GlobalNetworkId: str,
Bandwidth: BandwidthTypeDef, # (1)
SiteId: str,
Description: str = ...,
Type: str = ...,
Provider: str = ...,
Tags: Sequence[TagTypeDef] = ..., # (2)
) -> CreateLinkResponseTypeDef: # (3)
...
- See BandwidthTypeDef
- See TagTypeDef
- See CreateLinkResponseTypeDef
kwargs: CreateLinkRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
"Bandwidth": ...,
"SiteId": ...,
}
parent.create_link(**kwargs)
create_site
Creates a new site in a global network.
Type annotations and code completion for boto3.client("networkmanager").create_site
method.
boto3 documentation
def create_site(
self,
*,
GlobalNetworkId: str,
Description: str = ...,
Location: LocationTypeDef = ..., # (1)
Tags: Sequence[TagTypeDef] = ..., # (2)
) -> CreateSiteResponseTypeDef: # (3)
...
- See LocationTypeDef
- See TagTypeDef
- See CreateSiteResponseTypeDef
kwargs: CreateSiteRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
}
parent.create_site(**kwargs)
create_site_to_site_vpn_attachment
Creates an Amazon Web Services site-to-site VPN attachment on an edge location of a core network.
Type annotations and code completion for boto3.client("networkmanager").create_site_to_site_vpn_attachment
method.
boto3 documentation
def create_site_to_site_vpn_attachment(
self,
*,
CoreNetworkId: str,
VpnConnectionArn: str,
Tags: Sequence[TagTypeDef] = ..., # (1)
ClientToken: str = ...,
) -> CreateSiteToSiteVpnAttachmentResponseTypeDef: # (2)
...
kwargs: CreateSiteToSiteVpnAttachmentRequestRequestTypeDef = { # (1)
"CoreNetworkId": ...,
"VpnConnectionArn": ...,
}
parent.create_site_to_site_vpn_attachment(**kwargs)
create_transit_gateway_peering
Creates a transit gateway peering connection.
Type annotations and code completion for boto3.client("networkmanager").create_transit_gateway_peering
method.
boto3 documentation
def create_transit_gateway_peering(
self,
*,
CoreNetworkId: str,
TransitGatewayArn: str,
Tags: Sequence[TagTypeDef] = ..., # (1)
ClientToken: str = ...,
) -> CreateTransitGatewayPeeringResponseTypeDef: # (2)
...
kwargs: CreateTransitGatewayPeeringRequestRequestTypeDef = { # (1)
"CoreNetworkId": ...,
"TransitGatewayArn": ...,
}
parent.create_transit_gateway_peering(**kwargs)
create_transit_gateway_route_table_attachment
Creates a transit gateway route table attachment.
Type annotations and code completion for boto3.client("networkmanager").create_transit_gateway_route_table_attachment
method.
boto3 documentation
def create_transit_gateway_route_table_attachment(
self,
*,
PeeringId: str,
TransitGatewayRouteTableArn: str,
Tags: Sequence[TagTypeDef] = ..., # (1)
ClientToken: str = ...,
) -> CreateTransitGatewayRouteTableAttachmentResponseTypeDef: # (2)
...
kwargs: CreateTransitGatewayRouteTableAttachmentRequestRequestTypeDef = { # (1)
"PeeringId": ...,
"TransitGatewayRouteTableArn": ...,
}
parent.create_transit_gateway_route_table_attachment(**kwargs)
create_vpc_attachment
Creates a VPC attachment on an edge location of a core network.
Type annotations and code completion for boto3.client("networkmanager").create_vpc_attachment
method.
boto3 documentation
def create_vpc_attachment(
self,
*,
CoreNetworkId: str,
VpcArn: str,
SubnetArns: Sequence[str],
Options: VpcOptionsTypeDef = ..., # (1)
Tags: Sequence[TagTypeDef] = ..., # (2)
ClientToken: str = ...,
) -> CreateVpcAttachmentResponseTypeDef: # (3)
...
kwargs: CreateVpcAttachmentRequestRequestTypeDef = { # (1)
"CoreNetworkId": ...,
"VpcArn": ...,
"SubnetArns": ...,
}
parent.create_vpc_attachment(**kwargs)
delete_attachment
Deletes an attachment.
Type annotations and code completion for boto3.client("networkmanager").delete_attachment
method.
boto3 documentation
def delete_attachment(
self,
*,
AttachmentId: str,
) -> DeleteAttachmentResponseTypeDef: # (1)
...
kwargs: DeleteAttachmentRequestRequestTypeDef = { # (1)
"AttachmentId": ...,
}
parent.delete_attachment(**kwargs)
delete_connect_peer
Deletes a Connect peer.
Type annotations and code completion for boto3.client("networkmanager").delete_connect_peer
method.
boto3 documentation
def delete_connect_peer(
self,
*,
ConnectPeerId: str,
) -> DeleteConnectPeerResponseTypeDef: # (1)
...
kwargs: DeleteConnectPeerRequestRequestTypeDef = { # (1)
"ConnectPeerId": ...,
}
parent.delete_connect_peer(**kwargs)
delete_connection
Deletes the specified connection in your global network.
Type annotations and code completion for boto3.client("networkmanager").delete_connection
method.
boto3 documentation
def delete_connection(
self,
*,
GlobalNetworkId: str,
ConnectionId: str,
) -> DeleteConnectionResponseTypeDef: # (1)
...
kwargs: DeleteConnectionRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
"ConnectionId": ...,
}
parent.delete_connection(**kwargs)
delete_core_network
Deletes a core network along with all core network policies.
Type annotations and code completion for boto3.client("networkmanager").delete_core_network
method.
boto3 documentation
def delete_core_network(
self,
*,
CoreNetworkId: str,
) -> DeleteCoreNetworkResponseTypeDef: # (1)
...
kwargs: DeleteCoreNetworkRequestRequestTypeDef = { # (1)
"CoreNetworkId": ...,
}
parent.delete_core_network(**kwargs)
delete_core_network_policy_version
Deletes a policy version from a core network.
Type annotations and code completion for boto3.client("networkmanager").delete_core_network_policy_version
method.
boto3 documentation
def delete_core_network_policy_version(
self,
*,
CoreNetworkId: str,
PolicyVersionId: int,
) -> DeleteCoreNetworkPolicyVersionResponseTypeDef: # (1)
...
kwargs: DeleteCoreNetworkPolicyVersionRequestRequestTypeDef = { # (1)
"CoreNetworkId": ...,
"PolicyVersionId": ...,
}
parent.delete_core_network_policy_version(**kwargs)
delete_device
Deletes an existing device.
Type annotations and code completion for boto3.client("networkmanager").delete_device
method.
boto3 documentation
def delete_device(
self,
*,
GlobalNetworkId: str,
DeviceId: str,
) -> DeleteDeviceResponseTypeDef: # (1)
...
kwargs: DeleteDeviceRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
"DeviceId": ...,
}
parent.delete_device(**kwargs)
delete_global_network
Deletes an existing global network.
Type annotations and code completion for boto3.client("networkmanager").delete_global_network
method.
boto3 documentation
def delete_global_network(
self,
*,
GlobalNetworkId: str,
) -> DeleteGlobalNetworkResponseTypeDef: # (1)
...
kwargs: DeleteGlobalNetworkRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
}
parent.delete_global_network(**kwargs)
delete_link
Deletes an existing link.
Type annotations and code completion for boto3.client("networkmanager").delete_link
method.
boto3 documentation
def delete_link(
self,
*,
GlobalNetworkId: str,
LinkId: str,
) -> DeleteLinkResponseTypeDef: # (1)
...
kwargs: DeleteLinkRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
"LinkId": ...,
}
parent.delete_link(**kwargs)
delete_peering
Deletes an existing peering connection.
Type annotations and code completion for boto3.client("networkmanager").delete_peering
method.
boto3 documentation
def delete_peering(
self,
*,
PeeringId: str,
) -> DeletePeeringResponseTypeDef: # (1)
...
kwargs: DeletePeeringRequestRequestTypeDef = { # (1)
"PeeringId": ...,
}
parent.delete_peering(**kwargs)
delete_resource_policy
Deletes a resource policy for the specified resource.
Type annotations and code completion for boto3.client("networkmanager").delete_resource_policy
method.
boto3 documentation
kwargs: DeleteResourcePolicyRequestRequestTypeDef = { # (1)
"ResourceArn": ...,
}
parent.delete_resource_policy(**kwargs)
delete_site
Deletes an existing site.
Type annotations and code completion for boto3.client("networkmanager").delete_site
method.
boto3 documentation
def delete_site(
self,
*,
GlobalNetworkId: str,
SiteId: str,
) -> DeleteSiteResponseTypeDef: # (1)
...
kwargs: DeleteSiteRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
"SiteId": ...,
}
parent.delete_site(**kwargs)
deregister_transit_gateway
Deregisters a transit gateway from your global network.
Type annotations and code completion for boto3.client("networkmanager").deregister_transit_gateway
method.
boto3 documentation
def deregister_transit_gateway(
self,
*,
GlobalNetworkId: str,
TransitGatewayArn: str,
) -> DeregisterTransitGatewayResponseTypeDef: # (1)
...
kwargs: DeregisterTransitGatewayRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
"TransitGatewayArn": ...,
}
parent.deregister_transit_gateway(**kwargs)
describe_global_networks
Describes one or more global networks.
Type annotations and code completion for boto3.client("networkmanager").describe_global_networks
method.
boto3 documentation
def describe_global_networks(
self,
*,
GlobalNetworkIds: Sequence[str] = ...,
MaxResults: int = ...,
NextToken: str = ...,
) -> DescribeGlobalNetworksResponseTypeDef: # (1)
...
kwargs: DescribeGlobalNetworksRequestRequestTypeDef = { # (1)
"GlobalNetworkIds": ...,
}
parent.describe_global_networks(**kwargs)
disassociate_connect_peer
Disassociates a core network Connect peer from a device and a link.
Type annotations and code completion for boto3.client("networkmanager").disassociate_connect_peer
method.
boto3 documentation
def disassociate_connect_peer(
self,
*,
GlobalNetworkId: str,
ConnectPeerId: str,
) -> DisassociateConnectPeerResponseTypeDef: # (1)
...
kwargs: DisassociateConnectPeerRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
"ConnectPeerId": ...,
}
parent.disassociate_connect_peer(**kwargs)
disassociate_customer_gateway
Disassociates a customer gateway from a device and a link.
Type annotations and code completion for boto3.client("networkmanager").disassociate_customer_gateway
method.
boto3 documentation
def disassociate_customer_gateway(
self,
*,
GlobalNetworkId: str,
CustomerGatewayArn: str,
) -> DisassociateCustomerGatewayResponseTypeDef: # (1)
...
kwargs: DisassociateCustomerGatewayRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
"CustomerGatewayArn": ...,
}
parent.disassociate_customer_gateway(**kwargs)
disassociate_link
Disassociates an existing device from a link.
Type annotations and code completion for boto3.client("networkmanager").disassociate_link
method.
boto3 documentation
def disassociate_link(
self,
*,
GlobalNetworkId: str,
DeviceId: str,
LinkId: str,
) -> DisassociateLinkResponseTypeDef: # (1)
...
kwargs: DisassociateLinkRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
"DeviceId": ...,
"LinkId": ...,
}
parent.disassociate_link(**kwargs)
disassociate_transit_gateway_connect_peer
Disassociates a transit gateway Connect peer from a device and link.
Type annotations and code completion for boto3.client("networkmanager").disassociate_transit_gateway_connect_peer
method.
boto3 documentation
def disassociate_transit_gateway_connect_peer(
self,
*,
GlobalNetworkId: str,
TransitGatewayConnectPeerArn: str,
) -> DisassociateTransitGatewayConnectPeerResponseTypeDef: # (1)
...
kwargs: DisassociateTransitGatewayConnectPeerRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
"TransitGatewayConnectPeerArn": ...,
}
parent.disassociate_transit_gateway_connect_peer(**kwargs)
execute_core_network_change_set
Executes a change set on your core network.
Type annotations and code completion for boto3.client("networkmanager").execute_core_network_change_set
method.
boto3 documentation
def execute_core_network_change_set(
self,
*,
CoreNetworkId: str,
PolicyVersionId: int,
) -> Dict[str, Any]:
...
kwargs: ExecuteCoreNetworkChangeSetRequestRequestTypeDef = { # (1)
"CoreNetworkId": ...,
"PolicyVersionId": ...,
}
parent.execute_core_network_change_set(**kwargs)
generate_presigned_url
Generate a presigned url given a client, its method, and arguments.
Type annotations and code completion for boto3.client("networkmanager").generate_presigned_url
method.
boto3 documentation
def generate_presigned_url(
self,
ClientMethod: str,
Params: Mapping[str, Any] = ...,
ExpiresIn: int = 3600,
HttpMethod: str = ...,
) -> str:
...
get_connect_attachment
Returns information about a core network Connect attachment.
Type annotations and code completion for boto3.client("networkmanager").get_connect_attachment
method.
boto3 documentation
def get_connect_attachment(
self,
*,
AttachmentId: str,
) -> GetConnectAttachmentResponseTypeDef: # (1)
...
kwargs: GetConnectAttachmentRequestRequestTypeDef = { # (1)
"AttachmentId": ...,
}
parent.get_connect_attachment(**kwargs)
get_connect_peer
Returns information about a core network Connect peer.
Type annotations and code completion for boto3.client("networkmanager").get_connect_peer
method.
boto3 documentation
def get_connect_peer(
self,
*,
ConnectPeerId: str,
) -> GetConnectPeerResponseTypeDef: # (1)
...
kwargs: GetConnectPeerRequestRequestTypeDef = { # (1)
"ConnectPeerId": ...,
}
parent.get_connect_peer(**kwargs)
get_connect_peer_associations
Returns information about a core network Connect peer associations.
Type annotations and code completion for boto3.client("networkmanager").get_connect_peer_associations
method.
boto3 documentation
def get_connect_peer_associations(
self,
*,
GlobalNetworkId: str,
ConnectPeerIds: Sequence[str] = ...,
MaxResults: int = ...,
NextToken: str = ...,
) -> GetConnectPeerAssociationsResponseTypeDef: # (1)
...
kwargs: GetConnectPeerAssociationsRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
}
parent.get_connect_peer_associations(**kwargs)
get_connections
Gets information about one or more of your connections in a global network.
Type annotations and code completion for boto3.client("networkmanager").get_connections
method.
boto3 documentation
def get_connections(
self,
*,
GlobalNetworkId: str,
ConnectionIds: Sequence[str] = ...,
DeviceId: str = ...,
MaxResults: int = ...,
NextToken: str = ...,
) -> GetConnectionsResponseTypeDef: # (1)
...
kwargs: GetConnectionsRequestRequestTypeDef = { # (1)
"GlobalNetworkId": ...,
}
parent.get_connections(**kwargs)
get_core_network
Returns information about the LIVE policy for a core network.
Type annotations and code completion for boto3.client("networkmanager").get_core_network
method.
boto3 documentation
def get_core_network(
self,
*,
CoreNetworkId: str,
) -> GetCoreNetworkResponseTypeDef: # (1)
...
kwargs: GetCoreNetworkRequestRequestTypeDef = { # (1)
"CoreNetworkId": ...,
}
parent.get_core_network(**kwargs)
get_core_network_change_events
Returns information about a core network change event.
Type annotations and code completion for boto3.client("networkmanager").get_core_network_change_events
method.
boto3 documentation