{-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-duplicate-exports #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Network.AWS.DirectConnect -- Copyright : (c) 2013-2015 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- AWS Direct Connect makes it easy to establish a dedicated network -- connection from your premises to Amazon Web Services (AWS). Using AWS -- Direct Connect, you can establish private connectivity between AWS and -- your data center, office, or colocation environment, which in many cases -- can reduce your network costs, increase bandwidth throughput, and -- provide a more consistent network experience than Internet-based -- connections. -- -- The AWS Direct Connect API Reference provides descriptions, syntax, and -- usage examples for each of the actions and data types for AWS Direct -- Connect. Use the following links to get started using the /AWS Direct -- Connect API Reference/: -- -- - : -- An alphabetical list of all AWS Direct Connect actions. -- - : -- An alphabetical list of all AWS Direct Connect data types. -- - : -- Parameters that all Query actions can use. -- - : -- Client and server errors that all actions can return. -- -- /See:/ module Network.AWS.DirectConnect ( -- * Service DirectConnect -- * Errors -- $errors -- ** DirectConnectClientException , _DirectConnectClientException -- ** DirectConnectServerException , _DirectConnectServerException -- * Waiters -- $waiters -- * Operations -- $operations -- ** DescribeInterconnects , module Network.AWS.DirectConnect.DescribeInterconnects -- ** DeleteConnection , module Network.AWS.DirectConnect.DeleteConnection -- ** CreateConnection , module Network.AWS.DirectConnect.CreateConnection -- ** DescribeConnections , module Network.AWS.DirectConnect.DescribeConnections -- ** DeleteInterconnect , module Network.AWS.DirectConnect.DeleteInterconnect -- ** ConfirmPrivateVirtualInterface , module Network.AWS.DirectConnect.ConfirmPrivateVirtualInterface -- ** DescribeConnectionsOnInterconnect , module Network.AWS.DirectConnect.DescribeConnectionsOnInterconnect -- ** DescribeLocations , module Network.AWS.DirectConnect.DescribeLocations -- ** CreatePublicVirtualInterface , module Network.AWS.DirectConnect.CreatePublicVirtualInterface -- ** AllocatePrivateVirtualInterface , module Network.AWS.DirectConnect.AllocatePrivateVirtualInterface -- ** ConfirmConnection , module Network.AWS.DirectConnect.ConfirmConnection -- ** DescribeVirtualGateways , module Network.AWS.DirectConnect.DescribeVirtualGateways -- ** ConfirmPublicVirtualInterface , module Network.AWS.DirectConnect.ConfirmPublicVirtualInterface -- ** DescribeVirtualInterfaces , module Network.AWS.DirectConnect.DescribeVirtualInterfaces -- ** CreatePrivateVirtualInterface , module Network.AWS.DirectConnect.CreatePrivateVirtualInterface -- ** DeleteVirtualInterface , module Network.AWS.DirectConnect.DeleteVirtualInterface -- ** AllocatePublicVirtualInterface , module Network.AWS.DirectConnect.AllocatePublicVirtualInterface -- ** AllocateConnectionOnInterconnect , module Network.AWS.DirectConnect.AllocateConnectionOnInterconnect -- ** CreateInterconnect , module Network.AWS.DirectConnect.CreateInterconnect -- * Types -- ** ConnectionState , ConnectionState (..) -- ** InterconnectState , InterconnectState (..) -- ** VirtualInterfaceState , VirtualInterfaceState (..) -- ** Connection , Connection , connection , cVlan , cLocation , cConnectionId , cConnectionName , cPartnerName , cBandwidth , cRegion , cOwnerAccount , cConnectionState -- ** Connections , Connections , connections , cConnections -- ** Interconnect , Interconnect , interconnect , iInterconnectId , iInterconnectName , iLocation , iBandwidth , iInterconnectState , iRegion -- ** Location , Location , location , lLocationName , lLocationCode -- ** NewPrivateVirtualInterface , NewPrivateVirtualInterface , newPrivateVirtualInterface , nCustomerAddress , nAmazonAddress , nAuthKey , nVirtualInterfaceName , nVlan , nAsn , nVirtualGatewayId -- ** NewPrivateVirtualInterfaceAllocation , NewPrivateVirtualInterfaceAllocation , newPrivateVirtualInterfaceAllocation , npviaCustomerAddress , npviaAmazonAddress , npviaAuthKey , npviaVirtualInterfaceName , npviaVlan , npviaAsn -- ** NewPublicVirtualInterface , NewPublicVirtualInterface , newPublicVirtualInterface , npviAuthKey , npviVirtualInterfaceName , npviVlan , npviAsn , npviAmazonAddress , npviCustomerAddress , npviRouteFilterPrefixes -- ** NewPublicVirtualInterfaceAllocation , NewPublicVirtualInterfaceAllocation , newPublicVirtualInterfaceAllocation , newAuthKey , newVirtualInterfaceName , newVlan , newAsn , newAmazonAddress , newCustomerAddress , newRouteFilterPrefixes -- ** RouteFilterPrefix , RouteFilterPrefix , routeFilterPrefix , rfpCidr -- ** VirtualGateway , VirtualGateway , virtualGateway , vgVirtualGatewayId , vgVirtualGatewayState -- ** VirtualInterface , VirtualInterface , virtualInterface , viVirtualGatewayId , viRouteFilterPrefixes , viCustomerAddress , viVlan , viLocation , viAmazonAddress , viVirtualInterfaceState , viConnectionId , viAsn , viVirtualInterfaceType , viAuthKey , viCustomerRouterConfig , viOwnerAccount , viVirtualInterfaceName , viVirtualInterfaceId ) where import Network.AWS.DirectConnect.AllocateConnectionOnInterconnect import Network.AWS.DirectConnect.AllocatePrivateVirtualInterface import Network.AWS.DirectConnect.AllocatePublicVirtualInterface import Network.AWS.DirectConnect.ConfirmConnection import Network.AWS.DirectConnect.ConfirmPrivateVirtualInterface import Network.AWS.DirectConnect.ConfirmPublicVirtualInterface import Network.AWS.DirectConnect.CreateConnection import Network.AWS.DirectConnect.CreateInterconnect import Network.AWS.DirectConnect.CreatePrivateVirtualInterface import Network.AWS.DirectConnect.CreatePublicVirtualInterface import Network.AWS.DirectConnect.DeleteConnection import Network.AWS.DirectConnect.DeleteInterconnect import Network.AWS.DirectConnect.DeleteVirtualInterface import Network.AWS.DirectConnect.DescribeConnections import Network.AWS.DirectConnect.DescribeConnectionsOnInterconnect import Network.AWS.DirectConnect.DescribeInterconnects import Network.AWS.DirectConnect.DescribeLocations import Network.AWS.DirectConnect.DescribeVirtualGateways import Network.AWS.DirectConnect.DescribeVirtualInterfaces import Network.AWS.DirectConnect.Types import Network.AWS.DirectConnect.Waiters {- $errors Error matchers are designed for use with the functions provided by . This allows catching (and rethrowing) service specific errors returned by 'DirectConnect'. -} {- $operations Some AWS operations return results that are incomplete and require subsequent requests in order to obtain the entire result set. The process of sending subsequent requests to continue where a previous request left off is called pagination. For example, the 'ListObjects' operation of Amazon S3 returns up to 1000 objects at a time, and you must send subsequent requests with the appropriate Marker in order to retrieve the next page of results. Operations that have an 'AWSPager' instance can transparently perform subsequent requests, correctly setting Markers and other request facets to iterate through the entire result set of a truncated API operation. Operations which support this have an additional note in the documentation. Many operations have the ability to filter results on the server side. See the individual operation parameters for details. -} {- $waiters Waiters poll by repeatedly sending a request until some remote success condition configured by the 'Wait' specification is fulfilled. The 'Wait' specification determines how many attempts should be made, in addition to delay and retry strategies. -}