[][src]Struct rusoto_directconnect::DirectConnectClient

pub struct DirectConnectClient { /* fields omitted */ }

A client for the AWS Direct Connect API.

Implementations

impl DirectConnectClient[src]

pub fn new(region: Region) -> DirectConnectClient[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

pub fn new_with<P, D>(
    request_dispatcher: D,
    credentials_provider: P,
    region: Region
) -> DirectConnectClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    D: DispatchSignedRequest + Send + Sync + 'static, 
[src]

pub fn new_with_client(client: Client, region: Region) -> DirectConnectClient[src]

Trait Implementations

impl Clone for DirectConnectClient[src]

impl DirectConnect for DirectConnectClient[src]

pub fn accept_direct_connect_gateway_association_proposal<'life0, 'async_trait>(
    &'life0 self,
    input: AcceptDirectConnectGatewayAssociationProposalRequest
) -> Pin<Box<dyn Future<Output = Result<AcceptDirectConnectGatewayAssociationProposalResult, RusotoError<AcceptDirectConnectGatewayAssociationProposalError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Accepts a proposal request to attach a virtual private gateway or transit gateway to a Direct Connect gateway.

pub fn allocate_connection_on_interconnect<'life0, 'async_trait>(
    &'life0 self,
    input: AllocateConnectionOnInterconnectRequest
) -> Pin<Box<dyn Future<Output = Result<Connection, RusotoError<AllocateConnectionOnInterconnectError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deprecated. Use AllocateHostedConnection instead.

Creates a hosted connection on an interconnect.

Allocates a VLAN number and a specified amount of bandwidth for use by a hosted connection on the specified interconnect.

Intended for use by AWS Direct Connect Partners only.

pub fn allocate_hosted_connection<'life0, 'async_trait>(
    &'life0 self,
    input: AllocateHostedConnectionRequest
) -> Pin<Box<dyn Future<Output = Result<Connection, RusotoError<AllocateHostedConnectionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a hosted connection on the specified interconnect or a link aggregation group (LAG) of interconnects.

Allocates a VLAN number and a specified amount of capacity (bandwidth) for use by a hosted connection on the specified interconnect or LAG of interconnects. AWS polices the hosted connection for the specified capacity and the AWS Direct Connect Partner must also police the hosted connection for the specified capacity.

Intended for use by AWS Direct Connect Partners only.

pub fn allocate_private_virtual_interface<'life0, 'async_trait>(
    &'life0 self,
    input: AllocatePrivateVirtualInterfaceRequest
) -> Pin<Box<dyn Future<Output = Result<VirtualInterface, RusotoError<AllocatePrivateVirtualInterfaceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Provisions a private virtual interface to be owned by the specified AWS account.

Virtual interfaces created using this action must be confirmed by the owner using ConfirmPrivateVirtualInterface. Until then, the virtual interface is in the Confirming state and is not available to handle traffic.

pub fn allocate_public_virtual_interface<'life0, 'async_trait>(
    &'life0 self,
    input: AllocatePublicVirtualInterfaceRequest
) -> Pin<Box<dyn Future<Output = Result<VirtualInterface, RusotoError<AllocatePublicVirtualInterfaceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Provisions a public virtual interface to be owned by the specified AWS account.

The owner of a connection calls this function to provision a public virtual interface to be owned by the specified AWS account.

Virtual interfaces created using this function must be confirmed by the owner using ConfirmPublicVirtualInterface. Until this step has been completed, the virtual interface is in the confirming state and is not available to handle traffic.

When creating an IPv6 public virtual interface, omit the Amazon address and customer address. IPv6 addresses are automatically assigned from the Amazon pool of IPv6 addresses; you cannot specify custom IPv6 addresses.

pub fn allocate_transit_virtual_interface<'life0, 'async_trait>(
    &'life0 self,
    input: AllocateTransitVirtualInterfaceRequest
) -> Pin<Box<dyn Future<Output = Result<AllocateTransitVirtualInterfaceResult, RusotoError<AllocateTransitVirtualInterfaceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Provisions a transit virtual interface to be owned by the specified AWS account. Use this type of interface to connect a transit gateway to your Direct Connect gateway.

The owner of a connection provisions a transit virtual interface to be owned by the specified AWS account.

After you create a transit virtual interface, it must be confirmed by the owner using ConfirmTransitVirtualInterface. Until this step has been completed, the transit virtual interface is in the requested state and is not available to handle traffic.

pub fn associate_connection_with_lag<'life0, 'async_trait>(
    &'life0 self,
    input: AssociateConnectionWithLagRequest
) -> Pin<Box<dyn Future<Output = Result<Connection, RusotoError<AssociateConnectionWithLagError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Associates an existing connection with a link aggregation group (LAG). The connection is interrupted and re-established as a member of the LAG (connectivity to AWS is interrupted). The connection must be hosted on the same AWS Direct Connect endpoint as the LAG, and its bandwidth must match the bandwidth for the LAG. You can re-associate a connection that's currently associated with a different LAG; however, if removing the connection would cause the original LAG to fall below its setting for minimum number of operational connections, the request fails.

Any virtual interfaces that are directly associated with the connection are automatically re-associated with the LAG. If the connection was originally associated with a different LAG, the virtual interfaces remain associated with the original LAG.

For interconnects, any hosted connections are automatically re-associated with the LAG. If the interconnect was originally associated with a different LAG, the hosted connections remain associated with the original LAG.

pub fn associate_hosted_connection<'life0, 'async_trait>(
    &'life0 self,
    input: AssociateHostedConnectionRequest
) -> Pin<Box<dyn Future<Output = Result<Connection, RusotoError<AssociateHostedConnectionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Associates a hosted connection and its virtual interfaces with a link aggregation group (LAG) or interconnect. If the target interconnect or LAG has an existing hosted connection with a conflicting VLAN number or IP address, the operation fails. This action temporarily interrupts the hosted connection's connectivity to AWS as it is being migrated.

Intended for use by AWS Direct Connect Partners only.

pub fn associate_virtual_interface<'life0, 'async_trait>(
    &'life0 self,
    input: AssociateVirtualInterfaceRequest
) -> Pin<Box<dyn Future<Output = Result<VirtualInterface, RusotoError<AssociateVirtualInterfaceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Associates a virtual interface with a specified link aggregation group (LAG) or connection. Connectivity to AWS is temporarily interrupted as the virtual interface is being migrated. If the target connection or LAG has an associated virtual interface with a conflicting VLAN number or a conflicting IP address, the operation fails.

Virtual interfaces associated with a hosted connection cannot be associated with a LAG; hosted connections must be migrated along with their virtual interfaces using AssociateHostedConnection.

To reassociate a virtual interface to a new connection or LAG, the requester must own either the virtual interface itself or the connection to which the virtual interface is currently associated. Additionally, the requester must own the connection or LAG for the association.

pub fn confirm_connection<'life0, 'async_trait>(
    &'life0 self,
    input: ConfirmConnectionRequest
) -> Pin<Box<dyn Future<Output = Result<ConfirmConnectionResponse, RusotoError<ConfirmConnectionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Confirms the creation of the specified hosted connection on an interconnect.

Upon creation, the hosted connection is initially in the Ordering state, and remains in this state until the owner confirms creation of the hosted connection.

pub fn confirm_private_virtual_interface<'life0, 'async_trait>(
    &'life0 self,
    input: ConfirmPrivateVirtualInterfaceRequest
) -> Pin<Box<dyn Future<Output = Result<ConfirmPrivateVirtualInterfaceResponse, RusotoError<ConfirmPrivateVirtualInterfaceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Accepts ownership of a private virtual interface created by another AWS account.

After the virtual interface owner makes this call, the virtual interface is created and attached to the specified virtual private gateway or Direct Connect gateway, and is made available to handle traffic.

pub fn confirm_public_virtual_interface<'life0, 'async_trait>(
    &'life0 self,
    input: ConfirmPublicVirtualInterfaceRequest
) -> Pin<Box<dyn Future<Output = Result<ConfirmPublicVirtualInterfaceResponse, RusotoError<ConfirmPublicVirtualInterfaceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Accepts ownership of a public virtual interface created by another AWS account.

After the virtual interface owner makes this call, the specified virtual interface is created and made available to handle traffic.

pub fn confirm_transit_virtual_interface<'life0, 'async_trait>(
    &'life0 self,
    input: ConfirmTransitVirtualInterfaceRequest
) -> Pin<Box<dyn Future<Output = Result<ConfirmTransitVirtualInterfaceResponse, RusotoError<ConfirmTransitVirtualInterfaceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Accepts ownership of a transit virtual interface created by another AWS account.

After the owner of the transit virtual interface makes this call, the specified transit virtual interface is created and made available to handle traffic.

pub fn create_bgp_peer<'life0, 'async_trait>(
    &'life0 self,
    input: CreateBGPPeerRequest
) -> Pin<Box<dyn Future<Output = Result<CreateBGPPeerResponse, RusotoError<CreateBGPPeerError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a BGP peer on the specified virtual interface.

You must create a BGP peer for the corresponding address family (IPv4/IPv6) in order to access AWS resources that also use that address family.

If logical redundancy is not supported by the connection, interconnect, or LAG, the BGP peer cannot be in the same address family as an existing BGP peer on the virtual interface.

When creating a IPv6 BGP peer, omit the Amazon address and customer address. IPv6 addresses are automatically assigned from the Amazon pool of IPv6 addresses; you cannot specify custom IPv6 addresses.

For a public virtual interface, the Autonomous System Number (ASN) must be private or already whitelisted for the virtual interface.

pub fn create_connection<'life0, 'async_trait>(
    &'life0 self,
    input: CreateConnectionRequest
) -> Pin<Box<dyn Future<Output = Result<Connection, RusotoError<CreateConnectionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a connection between a customer network and a specific AWS Direct Connect location.

A connection links your internal network to an AWS Direct Connect location over a standard Ethernet fiber-optic cable. One end of the cable is connected to your router, the other to an AWS Direct Connect router.

To find the locations for your Region, use DescribeLocations.

You can automatically add the new connection to a link aggregation group (LAG) by specifying a LAG ID in the request. This ensures that the new connection is allocated on the same AWS Direct Connect endpoint that hosts the specified LAG. If there are no available ports on the endpoint, the request fails and no connection is created.

pub fn create_direct_connect_gateway<'life0, 'async_trait>(
    &'life0 self,
    input: CreateDirectConnectGatewayRequest
) -> Pin<Box<dyn Future<Output = Result<CreateDirectConnectGatewayResult, RusotoError<CreateDirectConnectGatewayError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a Direct Connect gateway, which is an intermediate object that enables you to connect a set of virtual interfaces and virtual private gateways. A Direct Connect gateway is global and visible in any AWS Region after it is created. The virtual interfaces and virtual private gateways that are connected through a Direct Connect gateway can be in different AWS Regions. This enables you to connect to a VPC in any Region, regardless of the Region in which the virtual interfaces are located, and pass traffic between them.

pub fn create_direct_connect_gateway_association<'life0, 'async_trait>(
    &'life0 self,
    input: CreateDirectConnectGatewayAssociationRequest
) -> Pin<Box<dyn Future<Output = Result<CreateDirectConnectGatewayAssociationResult, RusotoError<CreateDirectConnectGatewayAssociationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates an association between a Direct Connect gateway and a virtual private gateway. The virtual private gateway must be attached to a VPC and must not be associated with another Direct Connect gateway.

pub fn create_direct_connect_gateway_association_proposal<'life0, 'async_trait>(
    &'life0 self,
    input: CreateDirectConnectGatewayAssociationProposalRequest
) -> Pin<Box<dyn Future<Output = Result<CreateDirectConnectGatewayAssociationProposalResult, RusotoError<CreateDirectConnectGatewayAssociationProposalError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a proposal to associate the specified virtual private gateway or transit gateway with the specified Direct Connect gateway.

You can associate a Direct Connect gateway and virtual private gateway or transit gateway that is owned by any AWS account.

pub fn create_interconnect<'life0, 'async_trait>(
    &'life0 self,
    input: CreateInterconnectRequest
) -> Pin<Box<dyn Future<Output = Result<Interconnect, RusotoError<CreateInterconnectError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates an interconnect between an AWS Direct Connect Partner's network and a specific AWS Direct Connect location.

An interconnect is a connection that is capable of hosting other connections. The AWS Direct Connect partner can use an interconnect to provide AWS Direct Connect hosted connections to customers through their own network services. Like a standard connection, an interconnect links the partner's network to an AWS Direct Connect location over a standard Ethernet fiber-optic cable. One end is connected to the partner's router, the other to an AWS Direct Connect router.

You can automatically add the new interconnect to a link aggregation group (LAG) by specifying a LAG ID in the request. This ensures that the new interconnect is allocated on the same AWS Direct Connect endpoint that hosts the specified LAG. If there are no available ports on the endpoint, the request fails and no interconnect is created.

For each end customer, the AWS Direct Connect Partner provisions a connection on their interconnect by calling AllocateHostedConnection. The end customer can then connect to AWS resources by creating a virtual interface on their connection, using the VLAN assigned to them by the AWS Direct Connect Partner.

Intended for use by AWS Direct Connect Partners only.

pub fn create_lag<'life0, 'async_trait>(
    &'life0 self,
    input: CreateLagRequest
) -> Pin<Box<dyn Future<Output = Result<Lag, RusotoError<CreateLagError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a link aggregation group (LAG) with the specified number of bundled physical dedicated connections between the customer network and a specific AWS Direct Connect location. A LAG is a logical interface that uses the Link Aggregation Control Protocol (LACP) to aggregate multiple interfaces, enabling you to treat them as a single interface.

All connections in a LAG must use the same bandwidth (either 1Gbps or 10Gbps) and must terminate at the same AWS Direct Connect endpoint.

You can have up to 10 dedicated connections per LAG. Regardless of this limit, if you request more connections for the LAG than AWS Direct Connect can allocate on a single endpoint, no LAG is created.

You can specify an existing physical dedicated connection or interconnect to include in the LAG (which counts towards the total number of connections). Doing so interrupts the current physical dedicated connection, and re-establishes them as a member of the LAG. The LAG will be created on the same AWS Direct Connect endpoint to which the dedicated connection terminates. Any virtual interfaces associated with the dedicated connection are automatically disassociated and re-associated with the LAG. The connection ID does not change.

If the AWS account used to create a LAG is a registered AWS Direct Connect Partner, the LAG is automatically enabled to host sub-connections. For a LAG owned by a partner, any associated virtual interfaces cannot be directly configured.

pub fn create_private_virtual_interface<'life0, 'async_trait>(
    &'life0 self,
    input: CreatePrivateVirtualInterfaceRequest
) -> Pin<Box<dyn Future<Output = Result<VirtualInterface, RusotoError<CreatePrivateVirtualInterfaceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a private virtual interface. A virtual interface is the VLAN that transports AWS Direct Connect traffic. A private virtual interface can be connected to either a Direct Connect gateway or a Virtual Private Gateway (VGW). Connecting the private virtual interface to a Direct Connect gateway enables the possibility for connecting to multiple VPCs, including VPCs in different AWS Regions. Connecting the private virtual interface to a VGW only provides access to a single VPC within the same Region.

Setting the MTU of a virtual interface to 9001 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections. To check whether your virtual interface supports jumbo frames, call DescribeVirtualInterfaces.

pub fn create_public_virtual_interface<'life0, 'async_trait>(
    &'life0 self,
    input: CreatePublicVirtualInterfaceRequest
) -> Pin<Box<dyn Future<Output = Result<VirtualInterface, RusotoError<CreatePublicVirtualInterfaceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a public virtual interface. A virtual interface is the VLAN that transports AWS Direct Connect traffic. A public virtual interface supports sending traffic to public services of AWS such as Amazon S3.

When creating an IPv6 public virtual interface (addressFamily is ipv6), leave the customer and amazon address fields blank to use auto-assigned IPv6 space. Custom IPv6 addresses are not supported.

pub fn create_transit_virtual_interface<'life0, 'async_trait>(
    &'life0 self,
    input: CreateTransitVirtualInterfaceRequest
) -> Pin<Box<dyn Future<Output = Result<CreateTransitVirtualInterfaceResult, RusotoError<CreateTransitVirtualInterfaceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a transit virtual interface. A transit virtual interface should be used to access one or more transit gateways associated with Direct Connect gateways. A transit virtual interface enables the connection of multiple VPCs attached to a transit gateway to a Direct Connect gateway.

If you associate your transit gateway with one or more Direct Connect gateways, the Autonomous System Number (ASN) used by the transit gateway and the Direct Connect gateway must be different. For example, if you use the default ASN 64512 for both your the transit gateway and Direct Connect gateway, the association request fails.

Setting the MTU of a virtual interface to 8500 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections. To check whether your virtual interface supports jumbo frames, call DescribeVirtualInterfaces.

pub fn delete_bgp_peer<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteBGPPeerRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteBGPPeerResponse, RusotoError<DeleteBGPPeerError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the specified BGP peer on the specified virtual interface with the specified customer address and ASN.

You cannot delete the last BGP peer from a virtual interface.

pub fn delete_connection<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteConnectionRequest
) -> Pin<Box<dyn Future<Output = Result<Connection, RusotoError<DeleteConnectionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the specified connection.

Deleting a connection only stops the AWS Direct Connect port hour and data transfer charges. If you are partnering with any third parties to connect with the AWS Direct Connect location, you must cancel your service with them separately.

pub fn delete_direct_connect_gateway<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteDirectConnectGatewayRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteDirectConnectGatewayResult, RusotoError<DeleteDirectConnectGatewayError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the specified Direct Connect gateway. You must first delete all virtual interfaces that are attached to the Direct Connect gateway and disassociate all virtual private gateways associated with the Direct Connect gateway.

pub fn delete_direct_connect_gateway_association<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteDirectConnectGatewayAssociationRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteDirectConnectGatewayAssociationResult, RusotoError<DeleteDirectConnectGatewayAssociationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the association between the specified Direct Connect gateway and virtual private gateway.

We recommend that you specify the associationID to delete the association. Alternatively, if you own virtual gateway and a Direct Connect gateway association, you can specify the virtualGatewayId and directConnectGatewayId to delete an association.

pub fn delete_direct_connect_gateway_association_proposal<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteDirectConnectGatewayAssociationProposalRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteDirectConnectGatewayAssociationProposalResult, RusotoError<DeleteDirectConnectGatewayAssociationProposalError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the association proposal request between the specified Direct Connect gateway and virtual private gateway or transit gateway.

pub fn delete_interconnect<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteInterconnectRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteInterconnectResponse, RusotoError<DeleteInterconnectError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the specified interconnect.

Intended for use by AWS Direct Connect Partners only.

pub fn delete_lag<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteLagRequest
) -> Pin<Box<dyn Future<Output = Result<Lag, RusotoError<DeleteLagError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the specified link aggregation group (LAG). You cannot delete a LAG if it has active virtual interfaces or hosted connections.

pub fn delete_virtual_interface<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteVirtualInterfaceRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteVirtualInterfaceResponse, RusotoError<DeleteVirtualInterfaceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes a virtual interface.

pub fn describe_connection_loa<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeConnectionLoaRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeConnectionLoaResponse, RusotoError<DescribeConnectionLoaError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deprecated. Use DescribeLoa instead.

Gets the LOA-CFA for a connection.

The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is a document that your APN partner or service provider uses when establishing your cross connect to AWS at the colocation facility. For more information, see Requesting Cross Connects at AWS Direct Connect Locations in the AWS Direct Connect User Guide.

pub fn describe_connections<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeConnectionsRequest
) -> Pin<Box<dyn Future<Output = Result<Connections, RusotoError<DescribeConnectionsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Displays the specified connection or all connections in this Region.

pub fn describe_connections_on_interconnect<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeConnectionsOnInterconnectRequest
) -> Pin<Box<dyn Future<Output = Result<Connections, RusotoError<DescribeConnectionsOnInterconnectError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deprecated. Use DescribeHostedConnections instead.

Lists the connections that have been provisioned on the specified interconnect.

Intended for use by AWS Direct Connect Partners only.

pub fn describe_direct_connect_gateway_association_proposals<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeDirectConnectGatewayAssociationProposalsRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeDirectConnectGatewayAssociationProposalsResult, RusotoError<DescribeDirectConnectGatewayAssociationProposalsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Describes one or more association proposals for connection between a virtual private gateway or transit gateway and a Direct Connect gateway.

pub fn describe_direct_connect_gateway_associations<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeDirectConnectGatewayAssociationsRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeDirectConnectGatewayAssociationsResult, RusotoError<DescribeDirectConnectGatewayAssociationsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the associations between your Direct Connect gateways and virtual private gateways. You must specify a Direct Connect gateway, a virtual private gateway, or both. If you specify a Direct Connect gateway, the response contains all virtual private gateways associated with the Direct Connect gateway. If you specify a virtual private gateway, the response contains all Direct Connect gateways associated with the virtual private gateway. If you specify both, the response contains the association between the Direct Connect gateway and the virtual private gateway.

pub fn describe_direct_connect_gateway_attachments<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeDirectConnectGatewayAttachmentsRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeDirectConnectGatewayAttachmentsResult, RusotoError<DescribeDirectConnectGatewayAttachmentsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the attachments between your Direct Connect gateways and virtual interfaces. You must specify a Direct Connect gateway, a virtual interface, or both. If you specify a Direct Connect gateway, the response contains all virtual interfaces attached to the Direct Connect gateway. If you specify a virtual interface, the response contains all Direct Connect gateways attached to the virtual interface. If you specify both, the response contains the attachment between the Direct Connect gateway and the virtual interface.

pub fn describe_direct_connect_gateways<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeDirectConnectGatewaysRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeDirectConnectGatewaysResult, RusotoError<DescribeDirectConnectGatewaysError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists all your Direct Connect gateways or only the specified Direct Connect gateway. Deleted Direct Connect gateways are not returned.

pub fn describe_hosted_connections<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeHostedConnectionsRequest
) -> Pin<Box<dyn Future<Output = Result<Connections, RusotoError<DescribeHostedConnectionsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the hosted connections that have been provisioned on the specified interconnect or link aggregation group (LAG).

Intended for use by AWS Direct Connect Partners only.

pub fn describe_interconnect_loa<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeInterconnectLoaRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeInterconnectLoaResponse, RusotoError<DescribeInterconnectLoaError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deprecated. Use DescribeLoa instead.

Gets the LOA-CFA for the specified interconnect.

The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is a document that is used when establishing your cross connect to AWS at the colocation facility. For more information, see Requesting Cross Connects at AWS Direct Connect Locations in the AWS Direct Connect User Guide.

pub fn describe_interconnects<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeInterconnectsRequest
) -> Pin<Box<dyn Future<Output = Result<Interconnects, RusotoError<DescribeInterconnectsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the interconnects owned by the AWS account or only the specified interconnect.

pub fn describe_lags<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeLagsRequest
) -> Pin<Box<dyn Future<Output = Result<Lags, RusotoError<DescribeLagsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Describes all your link aggregation groups (LAG) or the specified LAG.

pub fn describe_loa<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeLoaRequest
) -> Pin<Box<dyn Future<Output = Result<Loa, RusotoError<DescribeLoaError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Gets the LOA-CFA for a connection, interconnect, or link aggregation group (LAG).

The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is a document that is used when establishing your cross connect to AWS at the colocation facility. For more information, see Requesting Cross Connects at AWS Direct Connect Locations in the AWS Direct Connect User Guide.

pub fn describe_locations<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Result<Locations, RusotoError<DescribeLocationsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the AWS Direct Connect locations in the current AWS Region. These are the locations that can be selected when calling CreateConnection or CreateInterconnect.

pub fn describe_tags<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeTagsRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeTagsResponse, RusotoError<DescribeTagsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Describes the tags associated with the specified AWS Direct Connect resources.

pub fn describe_virtual_gateways<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Result<VirtualGateways, RusotoError<DescribeVirtualGatewaysError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the virtual private gateways owned by the AWS account.

You can create one or more AWS Direct Connect private virtual interfaces linked to a virtual private gateway.

pub fn describe_virtual_interfaces<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeVirtualInterfacesRequest
) -> Pin<Box<dyn Future<Output = Result<VirtualInterfaces, RusotoError<DescribeVirtualInterfacesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Displays all virtual interfaces for an AWS account. Virtual interfaces deleted fewer than 15 minutes before you make the request are also returned. If you specify a connection ID, only the virtual interfaces associated with the connection are returned. If you specify a virtual interface ID, then only a single virtual interface is returned.

A virtual interface (VLAN) transmits the traffic between the AWS Direct Connect location and the customer network.

pub fn disassociate_connection_from_lag<'life0, 'async_trait>(
    &'life0 self,
    input: DisassociateConnectionFromLagRequest
) -> Pin<Box<dyn Future<Output = Result<Connection, RusotoError<DisassociateConnectionFromLagError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Disassociates a connection from a link aggregation group (LAG). The connection is interrupted and re-established as a standalone connection (the connection is not deleted; to delete the connection, use the DeleteConnection request). If the LAG has associated virtual interfaces or hosted connections, they remain associated with the LAG. A disassociated connection owned by an AWS Direct Connect Partner is automatically converted to an interconnect.

If disassociating the connection would cause the LAG to fall below its setting for minimum number of operational connections, the request fails, except when it's the last member of the LAG. If all connections are disassociated, the LAG continues to exist as an empty LAG with no physical connections.

pub fn list_virtual_interface_test_history<'life0, 'async_trait>(
    &'life0 self,
    input: ListVirtualInterfaceTestHistoryRequest
) -> Pin<Box<dyn Future<Output = Result<ListVirtualInterfaceTestHistoryResponse, RusotoError<ListVirtualInterfaceTestHistoryError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the virtual interface failover test history.

pub fn start_bgp_failover_test<'life0, 'async_trait>(
    &'life0 self,
    input: StartBgpFailoverTestRequest
) -> Pin<Box<dyn Future<Output = Result<StartBgpFailoverTestResponse, RusotoError<StartBgpFailoverTestError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Starts the virtual interface failover test that verifies your configuration meets your resiliency requirements by placing the BGP peering session in the DOWN state. You can then send traffic to verify that there are no outages.

You can run the test on public, private, transit, and hosted virtual interfaces.

You can use ListVirtualInterfaceTestHistory to view the virtual interface test history.

If you need to stop the test before the test interval completes, use StopBgpFailoverTest.

pub fn stop_bgp_failover_test<'life0, 'async_trait>(
    &'life0 self,
    input: StopBgpFailoverTestRequest
) -> Pin<Box<dyn Future<Output = Result<StopBgpFailoverTestResponse, RusotoError<StopBgpFailoverTestError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Stops the virtual interface failover test.

pub fn tag_resource<'life0, 'async_trait>(
    &'life0 self,
    input: TagResourceRequest
) -> Pin<Box<dyn Future<Output = Result<TagResourceResponse, RusotoError<TagResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds the specified tags to the specified AWS Direct Connect resource. Each resource can have a maximum of 50 tags.

Each tag consists of a key and an optional value. If a tag with the same key is already associated with the resource, this action updates its value.

pub fn untag_resource<'life0, 'async_trait>(
    &'life0 self,
    input: UntagResourceRequest
) -> Pin<Box<dyn Future<Output = Result<UntagResourceResponse, RusotoError<UntagResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Removes one or more tags from the specified AWS Direct Connect resource.

pub fn update_direct_connect_gateway_association<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateDirectConnectGatewayAssociationRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateDirectConnectGatewayAssociationResult, RusotoError<UpdateDirectConnectGatewayAssociationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates the specified attributes of the Direct Connect gateway association.

Add or remove prefixes from the association.

pub fn update_lag<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateLagRequest
) -> Pin<Box<dyn Future<Output = Result<Lag, RusotoError<UpdateLagError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates the attributes of the specified link aggregation group (LAG).

You can update the following attributes:

  • The name of the LAG.

  • The value for the minimum number of connections that must be operational for the LAG itself to be operational.

When you create a LAG, the default value for the minimum number of operational connections is zero (0). If you update this value and the number of operational connections falls below the specified value, the LAG automatically goes down to avoid over-utilization of the remaining connections. Adjust this value with care, as it could force the LAG down if it is set higher than the current number of operational connections.

pub fn update_virtual_interface_attributes<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateVirtualInterfaceAttributesRequest
) -> Pin<Box<dyn Future<Output = Result<VirtualInterface, RusotoError<UpdateVirtualInterfaceAttributesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates the specified attributes of the specified virtual private interface.

Setting the MTU of a virtual interface to 9001 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections. To check whether your virtual q interface supports jumbo frames, call DescribeVirtualInterfaces.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.