@aws-sdk/client-direct-connect 3.315.0 → 3.319.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/DirectConnect.js +67 -882
- package/dist-es/DirectConnect.js +67 -882
- package/dist-types/DirectConnect.d.ts +75 -404
- package/dist-types/ts3.4/DirectConnect.d.ts +4 -1
- package/package.json +8 -8
|
@@ -63,723 +63,394 @@ import { UpdateDirectConnectGatewayCommandInput, UpdateDirectConnectGatewayComma
|
|
|
63
63
|
import { UpdateLagCommandInput, UpdateLagCommandOutput } from "./commands/UpdateLagCommand";
|
|
64
64
|
import { UpdateVirtualInterfaceAttributesCommandInput, UpdateVirtualInterfaceAttributesCommandOutput } from "./commands/UpdateVirtualInterfaceAttributesCommand";
|
|
65
65
|
import { DirectConnectClient } from "./DirectConnectClient";
|
|
66
|
-
|
|
67
|
-
* @public
|
|
68
|
-
* <p>Direct Connect links your internal network to an Direct Connect location over a standard Ethernet fiber-optic cable.
|
|
69
|
-
* One end of the cable is connected to your router, the other to an Direct Connect router. With this connection
|
|
70
|
-
* in place, you can create virtual interfaces directly to the Amazon Web Services Cloud (for example, to Amazon EC2
|
|
71
|
-
* and Amazon S3) and to Amazon VPC, bypassing Internet service providers in your network path. A
|
|
72
|
-
* connection provides access to all Amazon Web Services Regions except the China (Beijing) and (China) Ningxia Regions.
|
|
73
|
-
* Amazon Web Services resources in the China Regions can only be accessed through locations associated with those Regions.</p>
|
|
74
|
-
*/
|
|
75
|
-
export declare class DirectConnect extends DirectConnectClient {
|
|
66
|
+
export interface DirectConnect {
|
|
76
67
|
/**
|
|
77
|
-
* @
|
|
78
|
-
* <p>Accepts a proposal request to attach a virtual private gateway or transit gateway to a Direct Connect gateway.</p>
|
|
68
|
+
* @see {@link AcceptDirectConnectGatewayAssociationProposalCommand}
|
|
79
69
|
*/
|
|
80
70
|
acceptDirectConnectGatewayAssociationProposal(args: AcceptDirectConnectGatewayAssociationProposalCommandInput, options?: __HttpHandlerOptions): Promise<AcceptDirectConnectGatewayAssociationProposalCommandOutput>;
|
|
81
71
|
acceptDirectConnectGatewayAssociationProposal(args: AcceptDirectConnectGatewayAssociationProposalCommandInput, cb: (err: any, data?: AcceptDirectConnectGatewayAssociationProposalCommandOutput) => void): void;
|
|
82
72
|
acceptDirectConnectGatewayAssociationProposal(args: AcceptDirectConnectGatewayAssociationProposalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptDirectConnectGatewayAssociationProposalCommandOutput) => void): void;
|
|
83
73
|
/**
|
|
84
|
-
* @
|
|
85
|
-
* @deprecated
|
|
86
|
-
*
|
|
87
|
-
* <p>Deprecated. Use <a>AllocateHostedConnection</a> instead.</p>
|
|
88
|
-
* <p>Creates a hosted connection on an interconnect.</p>
|
|
89
|
-
* <p>Allocates a VLAN number and a specified amount of bandwidth for use by a hosted connection on the specified interconnect.</p>
|
|
90
|
-
* <note>
|
|
91
|
-
* <p>Intended for use by Direct Connect Partners only.</p>
|
|
92
|
-
* </note>
|
|
74
|
+
* @see {@link AllocateConnectionOnInterconnectCommand}
|
|
93
75
|
*/
|
|
94
76
|
allocateConnectionOnInterconnect(args: AllocateConnectionOnInterconnectCommandInput, options?: __HttpHandlerOptions): Promise<AllocateConnectionOnInterconnectCommandOutput>;
|
|
95
77
|
allocateConnectionOnInterconnect(args: AllocateConnectionOnInterconnectCommandInput, cb: (err: any, data?: AllocateConnectionOnInterconnectCommandOutput) => void): void;
|
|
96
78
|
allocateConnectionOnInterconnect(args: AllocateConnectionOnInterconnectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AllocateConnectionOnInterconnectCommandOutput) => void): void;
|
|
97
79
|
/**
|
|
98
|
-
* @
|
|
99
|
-
* <p>Creates a hosted connection on the specified interconnect or a link aggregation group (LAG) of interconnects.</p>
|
|
100
|
-
* <p>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.
|
|
101
|
-
* Amazon Web Services polices the hosted connection for the specified capacity and the Direct Connect Partner must also police the hosted connection for the specified capacity.</p>
|
|
102
|
-
* <note>
|
|
103
|
-
* <p>Intended for use by Direct Connect Partners only.</p>
|
|
104
|
-
* </note>
|
|
80
|
+
* @see {@link AllocateHostedConnectionCommand}
|
|
105
81
|
*/
|
|
106
82
|
allocateHostedConnection(args: AllocateHostedConnectionCommandInput, options?: __HttpHandlerOptions): Promise<AllocateHostedConnectionCommandOutput>;
|
|
107
83
|
allocateHostedConnection(args: AllocateHostedConnectionCommandInput, cb: (err: any, data?: AllocateHostedConnectionCommandOutput) => void): void;
|
|
108
84
|
allocateHostedConnection(args: AllocateHostedConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AllocateHostedConnectionCommandOutput) => void): void;
|
|
109
85
|
/**
|
|
110
|
-
* @
|
|
111
|
-
* <p>Provisions a private virtual interface to be owned by the specified Amazon Web Services account.</p>
|
|
112
|
-
* <p>Virtual interfaces created using this action must be confirmed by the owner using <a>ConfirmPrivateVirtualInterface</a>.
|
|
113
|
-
* Until then, the virtual interface is in the <code>Confirming</code> state and is not available to handle traffic.</p>
|
|
86
|
+
* @see {@link AllocatePrivateVirtualInterfaceCommand}
|
|
114
87
|
*/
|
|
115
88
|
allocatePrivateVirtualInterface(args: AllocatePrivateVirtualInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<AllocatePrivateVirtualInterfaceCommandOutput>;
|
|
116
89
|
allocatePrivateVirtualInterface(args: AllocatePrivateVirtualInterfaceCommandInput, cb: (err: any, data?: AllocatePrivateVirtualInterfaceCommandOutput) => void): void;
|
|
117
90
|
allocatePrivateVirtualInterface(args: AllocatePrivateVirtualInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AllocatePrivateVirtualInterfaceCommandOutput) => void): void;
|
|
118
91
|
/**
|
|
119
|
-
* @
|
|
120
|
-
* <p>Provisions a public virtual interface to be owned by the specified Amazon Web Services account.</p>
|
|
121
|
-
* <p>The owner of a connection calls this function to provision a public virtual interface to be owned by the specified Amazon Web Services account.</p>
|
|
122
|
-
* <p>Virtual interfaces created using this function must be confirmed by the owner using <a>ConfirmPublicVirtualInterface</a>.
|
|
123
|
-
* Until this step has been completed, the virtual interface is in the <code>confirming</code> state and is not available to handle traffic.</p>
|
|
124
|
-
* <p>When creating an IPv6 public virtual interface, omit the Amazon address and customer address. IPv6 addresses are automatically assigned from
|
|
125
|
-
* the Amazon pool of IPv6 addresses; you cannot specify custom IPv6 addresses.</p>
|
|
92
|
+
* @see {@link AllocatePublicVirtualInterfaceCommand}
|
|
126
93
|
*/
|
|
127
94
|
allocatePublicVirtualInterface(args: AllocatePublicVirtualInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<AllocatePublicVirtualInterfaceCommandOutput>;
|
|
128
95
|
allocatePublicVirtualInterface(args: AllocatePublicVirtualInterfaceCommandInput, cb: (err: any, data?: AllocatePublicVirtualInterfaceCommandOutput) => void): void;
|
|
129
96
|
allocatePublicVirtualInterface(args: AllocatePublicVirtualInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AllocatePublicVirtualInterfaceCommandOutput) => void): void;
|
|
130
97
|
/**
|
|
131
|
-
* @
|
|
132
|
-
* <p>Provisions a transit virtual interface to be owned by the specified Amazon Web Services account. Use this type of interface to connect a transit gateway to your Direct Connect gateway.</p>
|
|
133
|
-
* <p>The owner of a connection provisions a transit virtual interface to be owned by the specified Amazon Web Services account.</p>
|
|
134
|
-
* <p>After you create a transit virtual interface, it must be confirmed by the owner using <a>ConfirmTransitVirtualInterface</a>. Until this step has been completed, the transit virtual interface is in the <code>requested</code> state and is not available to handle traffic.</p>
|
|
98
|
+
* @see {@link AllocateTransitVirtualInterfaceCommand}
|
|
135
99
|
*/
|
|
136
100
|
allocateTransitVirtualInterface(args: AllocateTransitVirtualInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<AllocateTransitVirtualInterfaceCommandOutput>;
|
|
137
101
|
allocateTransitVirtualInterface(args: AllocateTransitVirtualInterfaceCommandInput, cb: (err: any, data?: AllocateTransitVirtualInterfaceCommandOutput) => void): void;
|
|
138
102
|
allocateTransitVirtualInterface(args: AllocateTransitVirtualInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AllocateTransitVirtualInterfaceCommandOutput) => void): void;
|
|
139
103
|
/**
|
|
140
|
-
* @
|
|
141
|
-
* <p>Associates an existing connection with a link aggregation group (LAG). The connection
|
|
142
|
-
* is interrupted and re-established as a member of the LAG (connectivity to Amazon Web Services is
|
|
143
|
-
* interrupted). The connection must be hosted on the same Direct Connect endpoint as the LAG, and its
|
|
144
|
-
* bandwidth must match the bandwidth for the LAG. You can re-associate a connection that's
|
|
145
|
-
* currently associated with a different LAG; however, if removing the connection would cause
|
|
146
|
-
* the original LAG to fall below its setting for minimum number of operational connections,
|
|
147
|
-
* the request fails.</p>
|
|
148
|
-
* <p>Any virtual interfaces that are directly associated with the connection are
|
|
149
|
-
* automatically re-associated with the LAG. If the connection was originally associated
|
|
150
|
-
* with a different LAG, the virtual interfaces remain associated with the original
|
|
151
|
-
* LAG.</p>
|
|
152
|
-
* <p>For interconnects, any hosted connections are automatically re-associated with the
|
|
153
|
-
* LAG. If the interconnect was originally associated with a different LAG, the hosted
|
|
154
|
-
* connections remain associated with the original LAG.</p>
|
|
104
|
+
* @see {@link AssociateConnectionWithLagCommand}
|
|
155
105
|
*/
|
|
156
106
|
associateConnectionWithLag(args: AssociateConnectionWithLagCommandInput, options?: __HttpHandlerOptions): Promise<AssociateConnectionWithLagCommandOutput>;
|
|
157
107
|
associateConnectionWithLag(args: AssociateConnectionWithLagCommandInput, cb: (err: any, data?: AssociateConnectionWithLagCommandOutput) => void): void;
|
|
158
108
|
associateConnectionWithLag(args: AssociateConnectionWithLagCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateConnectionWithLagCommandOutput) => void): void;
|
|
159
109
|
/**
|
|
160
|
-
* @
|
|
161
|
-
* <p>Associates a hosted connection and its virtual interfaces with a link aggregation
|
|
162
|
-
* group (LAG) or interconnect. If the target interconnect or LAG has an existing hosted
|
|
163
|
-
* connection with a conflicting VLAN number or IP address, the operation fails. This
|
|
164
|
-
* action temporarily interrupts the hosted connection's connectivity to Amazon Web Services
|
|
165
|
-
* as it is being migrated.</p>
|
|
166
|
-
* <note>
|
|
167
|
-
* <p>Intended for use by Direct Connect Partners only.</p>
|
|
168
|
-
* </note>
|
|
110
|
+
* @see {@link AssociateHostedConnectionCommand}
|
|
169
111
|
*/
|
|
170
112
|
associateHostedConnection(args: AssociateHostedConnectionCommandInput, options?: __HttpHandlerOptions): Promise<AssociateHostedConnectionCommandOutput>;
|
|
171
113
|
associateHostedConnection(args: AssociateHostedConnectionCommandInput, cb: (err: any, data?: AssociateHostedConnectionCommandOutput) => void): void;
|
|
172
114
|
associateHostedConnection(args: AssociateHostedConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateHostedConnectionCommandOutput) => void): void;
|
|
173
115
|
/**
|
|
174
|
-
* @
|
|
175
|
-
* <p>Associates a MAC Security (MACsec) Connection Key Name (CKN)/ Connectivity Association Key (CAK) pair with an Direct Connect dedicated connection.</p>
|
|
176
|
-
* <p>You must supply either the <code>secretARN,</code> or the CKN/CAK (<code>ckn</code> and <code>cak</code>) pair in the request.</p>
|
|
177
|
-
* <p>For information about MAC Security (MACsec) key considerations, see <a href="https://docs.aws.amazon.com/directconnect/latest/UserGuide/direct-connect-mac-sec-getting-started.html#mac-sec-key-consideration">MACsec pre-shared CKN/CAK key considerations </a> in the <i>Direct Connect User Guide</i>.</p>
|
|
116
|
+
* @see {@link AssociateMacSecKeyCommand}
|
|
178
117
|
*/
|
|
179
118
|
associateMacSecKey(args: AssociateMacSecKeyCommandInput, options?: __HttpHandlerOptions): Promise<AssociateMacSecKeyCommandOutput>;
|
|
180
119
|
associateMacSecKey(args: AssociateMacSecKeyCommandInput, cb: (err: any, data?: AssociateMacSecKeyCommandOutput) => void): void;
|
|
181
120
|
associateMacSecKey(args: AssociateMacSecKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateMacSecKeyCommandOutput) => void): void;
|
|
182
121
|
/**
|
|
183
|
-
* @
|
|
184
|
-
* <p>Associates a virtual interface with a specified link aggregation group (LAG) or
|
|
185
|
-
* connection. Connectivity to Amazon Web Services is temporarily interrupted as the virtual interface is
|
|
186
|
-
* being migrated. If the target connection or LAG has an associated virtual interface with
|
|
187
|
-
* a conflicting VLAN number or a conflicting IP address, the operation fails.</p>
|
|
188
|
-
* <p>Virtual interfaces associated with a hosted connection cannot be associated with a
|
|
189
|
-
* LAG; hosted connections must be migrated along with their virtual interfaces using <a>AssociateHostedConnection</a>.</p>
|
|
190
|
-
* <p>To reassociate a virtual interface to a new connection or LAG, the requester
|
|
191
|
-
* must own either the virtual interface itself or the connection to which the virtual
|
|
192
|
-
* interface is currently associated. Additionally, the requester must own the connection
|
|
193
|
-
* or LAG for the association.</p>
|
|
122
|
+
* @see {@link AssociateVirtualInterfaceCommand}
|
|
194
123
|
*/
|
|
195
124
|
associateVirtualInterface(args: AssociateVirtualInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<AssociateVirtualInterfaceCommandOutput>;
|
|
196
125
|
associateVirtualInterface(args: AssociateVirtualInterfaceCommandInput, cb: (err: any, data?: AssociateVirtualInterfaceCommandOutput) => void): void;
|
|
197
126
|
associateVirtualInterface(args: AssociateVirtualInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateVirtualInterfaceCommandOutput) => void): void;
|
|
198
127
|
/**
|
|
199
|
-
* @
|
|
200
|
-
* <p>Confirms the creation of the specified hosted connection on an interconnect.</p>
|
|
201
|
-
* <p>Upon creation, the hosted connection is initially in the <code>Ordering</code> state, and
|
|
202
|
-
* remains in this state until the owner confirms creation of the hosted connection.</p>
|
|
128
|
+
* @see {@link ConfirmConnectionCommand}
|
|
203
129
|
*/
|
|
204
130
|
confirmConnection(args: ConfirmConnectionCommandInput, options?: __HttpHandlerOptions): Promise<ConfirmConnectionCommandOutput>;
|
|
205
131
|
confirmConnection(args: ConfirmConnectionCommandInput, cb: (err: any, data?: ConfirmConnectionCommandOutput) => void): void;
|
|
206
132
|
confirmConnection(args: ConfirmConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConfirmConnectionCommandOutput) => void): void;
|
|
207
133
|
/**
|
|
208
|
-
* @
|
|
209
|
-
* <p>
|
|
210
|
-
* The confirmation of the terms of agreement when creating the connection/link aggregation group (LAG).
|
|
211
|
-
* </p>
|
|
134
|
+
* @see {@link ConfirmCustomerAgreementCommand}
|
|
212
135
|
*/
|
|
213
136
|
confirmCustomerAgreement(args: ConfirmCustomerAgreementCommandInput, options?: __HttpHandlerOptions): Promise<ConfirmCustomerAgreementCommandOutput>;
|
|
214
137
|
confirmCustomerAgreement(args: ConfirmCustomerAgreementCommandInput, cb: (err: any, data?: ConfirmCustomerAgreementCommandOutput) => void): void;
|
|
215
138
|
confirmCustomerAgreement(args: ConfirmCustomerAgreementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConfirmCustomerAgreementCommandOutput) => void): void;
|
|
216
139
|
/**
|
|
217
|
-
* @
|
|
218
|
-
* <p>Accepts ownership of a private virtual interface created by another Amazon Web Services account.</p>
|
|
219
|
-
* <p>After the virtual interface owner makes this call, the virtual interface is
|
|
220
|
-
* created and attached to the specified virtual private gateway or Direct Connect gateway, and is
|
|
221
|
-
* made available to handle traffic.</p>
|
|
140
|
+
* @see {@link ConfirmPrivateVirtualInterfaceCommand}
|
|
222
141
|
*/
|
|
223
142
|
confirmPrivateVirtualInterface(args: ConfirmPrivateVirtualInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<ConfirmPrivateVirtualInterfaceCommandOutput>;
|
|
224
143
|
confirmPrivateVirtualInterface(args: ConfirmPrivateVirtualInterfaceCommandInput, cb: (err: any, data?: ConfirmPrivateVirtualInterfaceCommandOutput) => void): void;
|
|
225
144
|
confirmPrivateVirtualInterface(args: ConfirmPrivateVirtualInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConfirmPrivateVirtualInterfaceCommandOutput) => void): void;
|
|
226
145
|
/**
|
|
227
|
-
* @
|
|
228
|
-
* <p>Accepts ownership of a public virtual interface created by another Amazon Web Services account.</p>
|
|
229
|
-
* <p>After the virtual interface owner makes this call, the specified virtual interface is
|
|
230
|
-
* created and made available to handle traffic.</p>
|
|
146
|
+
* @see {@link ConfirmPublicVirtualInterfaceCommand}
|
|
231
147
|
*/
|
|
232
148
|
confirmPublicVirtualInterface(args: ConfirmPublicVirtualInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<ConfirmPublicVirtualInterfaceCommandOutput>;
|
|
233
149
|
confirmPublicVirtualInterface(args: ConfirmPublicVirtualInterfaceCommandInput, cb: (err: any, data?: ConfirmPublicVirtualInterfaceCommandOutput) => void): void;
|
|
234
150
|
confirmPublicVirtualInterface(args: ConfirmPublicVirtualInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConfirmPublicVirtualInterfaceCommandOutput) => void): void;
|
|
235
151
|
/**
|
|
236
|
-
* @
|
|
237
|
-
* <p>Accepts ownership of a transit virtual interface created by another Amazon Web Services account.</p>
|
|
238
|
-
* <p> After the owner of the transit virtual interface makes this call, the specified transit virtual interface is created and made available to handle traffic.</p>
|
|
152
|
+
* @see {@link ConfirmTransitVirtualInterfaceCommand}
|
|
239
153
|
*/
|
|
240
154
|
confirmTransitVirtualInterface(args: ConfirmTransitVirtualInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<ConfirmTransitVirtualInterfaceCommandOutput>;
|
|
241
155
|
confirmTransitVirtualInterface(args: ConfirmTransitVirtualInterfaceCommandInput, cb: (err: any, data?: ConfirmTransitVirtualInterfaceCommandOutput) => void): void;
|
|
242
156
|
confirmTransitVirtualInterface(args: ConfirmTransitVirtualInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConfirmTransitVirtualInterfaceCommandOutput) => void): void;
|
|
243
157
|
/**
|
|
244
|
-
* @
|
|
245
|
-
* <p>Creates a BGP peer on the specified virtual interface.</p>
|
|
246
|
-
* <p>You must create a BGP peer for the corresponding address family (IPv4/IPv6) in order to
|
|
247
|
-
* access Amazon Web Services resources that also use that address family.</p>
|
|
248
|
-
* <p>If logical redundancy is not supported by the connection, interconnect, or LAG, the BGP peer cannot
|
|
249
|
-
* be in the same address family as an existing BGP peer on the virtual interface.</p>
|
|
250
|
-
* <p>When creating a IPv6 BGP peer, omit the Amazon address and customer address. IPv6 addresses are automatically assigned from
|
|
251
|
-
* the Amazon pool of IPv6 addresses; you cannot specify custom IPv6 addresses.</p>
|
|
252
|
-
* <important>
|
|
253
|
-
* <p>If you let Amazon Web Services auto-assign IPv4 addresses, a /30 CIDR will be allocated
|
|
254
|
-
* from 169.254.0.0/16. Amazon Web Services does not recommend this option if you intend to use
|
|
255
|
-
* the customer router peer IP address as the source and destination for traffic. Instead you
|
|
256
|
-
* should use RFC 1918 or other addressing, and specify the address yourself. For more
|
|
257
|
-
* information about RFC 1918 see <a href="https://datatracker.ietf.org/doc/html/rfc1918">
|
|
258
|
-
* Address Allocation for Private Internets</a>.</p>
|
|
259
|
-
* </important>
|
|
260
|
-
* <p>For a public virtual interface, the Autonomous System Number (ASN) must be private or already on the allow list for the virtual interface.</p>
|
|
158
|
+
* @see {@link CreateBGPPeerCommand}
|
|
261
159
|
*/
|
|
262
160
|
createBGPPeer(args: CreateBGPPeerCommandInput, options?: __HttpHandlerOptions): Promise<CreateBGPPeerCommandOutput>;
|
|
263
161
|
createBGPPeer(args: CreateBGPPeerCommandInput, cb: (err: any, data?: CreateBGPPeerCommandOutput) => void): void;
|
|
264
162
|
createBGPPeer(args: CreateBGPPeerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBGPPeerCommandOutput) => void): void;
|
|
265
163
|
/**
|
|
266
|
-
* @
|
|
267
|
-
* <p>Creates a connection between a customer network and a specific Direct Connect location.</p>
|
|
268
|
-
* <p>A connection links your internal network to an Direct Connect location over a standard Ethernet fiber-optic
|
|
269
|
-
* cable. One end of the cable is connected to your router, the other to an Direct Connect router.</p>
|
|
270
|
-
* <p>To find the locations for your Region, use <a>DescribeLocations</a>.</p>
|
|
271
|
-
* <p>You can automatically add the new connection to a link aggregation group (LAG) by
|
|
272
|
-
* specifying a LAG ID in the request. This ensures that the new connection is allocated on the
|
|
273
|
-
* same Direct Connect endpoint that hosts the specified LAG. If there are no available ports on the endpoint,
|
|
274
|
-
* the request fails and no connection is created.</p>
|
|
164
|
+
* @see {@link CreateConnectionCommand}
|
|
275
165
|
*/
|
|
276
166
|
createConnection(args: CreateConnectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateConnectionCommandOutput>;
|
|
277
167
|
createConnection(args: CreateConnectionCommandInput, cb: (err: any, data?: CreateConnectionCommandOutput) => void): void;
|
|
278
168
|
createConnection(args: CreateConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConnectionCommandOutput) => void): void;
|
|
279
169
|
/**
|
|
280
|
-
* @
|
|
281
|
-
* <p>Creates a Direct Connect gateway, which is an intermediate object that enables you to connect a set
|
|
282
|
-
* of virtual interfaces and virtual private gateways. A Direct Connect gateway is global and visible in any
|
|
283
|
-
* Amazon Web Services Region after it is created. The virtual interfaces and virtual private gateways that
|
|
284
|
-
* are connected through a Direct Connect gateway can be in different Amazon Web Services Regions. This enables you to
|
|
285
|
-
* connect to a VPC in any Region, regardless of the Region in which the virtual interfaces
|
|
286
|
-
* are located, and pass traffic between them.</p>
|
|
170
|
+
* @see {@link CreateDirectConnectGatewayCommand}
|
|
287
171
|
*/
|
|
288
172
|
createDirectConnectGateway(args: CreateDirectConnectGatewayCommandInput, options?: __HttpHandlerOptions): Promise<CreateDirectConnectGatewayCommandOutput>;
|
|
289
173
|
createDirectConnectGateway(args: CreateDirectConnectGatewayCommandInput, cb: (err: any, data?: CreateDirectConnectGatewayCommandOutput) => void): void;
|
|
290
174
|
createDirectConnectGateway(args: CreateDirectConnectGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDirectConnectGatewayCommandOutput) => void): void;
|
|
291
175
|
/**
|
|
292
|
-
* @
|
|
293
|
-
* <p>Creates an association between a Direct Connect gateway and a virtual private gateway. The virtual
|
|
294
|
-
* private gateway must be attached to a VPC and must not be associated with another Direct Connect gateway.</p>
|
|
176
|
+
* @see {@link CreateDirectConnectGatewayAssociationCommand}
|
|
295
177
|
*/
|
|
296
178
|
createDirectConnectGatewayAssociation(args: CreateDirectConnectGatewayAssociationCommandInput, options?: __HttpHandlerOptions): Promise<CreateDirectConnectGatewayAssociationCommandOutput>;
|
|
297
179
|
createDirectConnectGatewayAssociation(args: CreateDirectConnectGatewayAssociationCommandInput, cb: (err: any, data?: CreateDirectConnectGatewayAssociationCommandOutput) => void): void;
|
|
298
180
|
createDirectConnectGatewayAssociation(args: CreateDirectConnectGatewayAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDirectConnectGatewayAssociationCommandOutput) => void): void;
|
|
299
181
|
/**
|
|
300
|
-
* @
|
|
301
|
-
* <p>Creates a proposal to associate the specified virtual private gateway or transit gateway with the specified Direct Connect gateway.</p>
|
|
302
|
-
* <p>You can associate a Direct Connect gateway and virtual private gateway or transit gateway that is owned by any Amazon Web Services account. </p>
|
|
182
|
+
* @see {@link CreateDirectConnectGatewayAssociationProposalCommand}
|
|
303
183
|
*/
|
|
304
184
|
createDirectConnectGatewayAssociationProposal(args: CreateDirectConnectGatewayAssociationProposalCommandInput, options?: __HttpHandlerOptions): Promise<CreateDirectConnectGatewayAssociationProposalCommandOutput>;
|
|
305
185
|
createDirectConnectGatewayAssociationProposal(args: CreateDirectConnectGatewayAssociationProposalCommandInput, cb: (err: any, data?: CreateDirectConnectGatewayAssociationProposalCommandOutput) => void): void;
|
|
306
186
|
createDirectConnectGatewayAssociationProposal(args: CreateDirectConnectGatewayAssociationProposalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDirectConnectGatewayAssociationProposalCommandOutput) => void): void;
|
|
307
187
|
/**
|
|
308
|
-
* @
|
|
309
|
-
* <p>Creates an interconnect between an Direct Connect Partner's network and a specific Direct Connect location.</p>
|
|
310
|
-
* <p>An interconnect is a connection that is capable of hosting other connections. The
|
|
311
|
-
* Direct Connect Partner can use an interconnect to provide Direct Connect hosted
|
|
312
|
-
* connections to customers through their own network services. Like a standard connection, an
|
|
313
|
-
* interconnect links the partner's network to an Direct Connect location over a standard Ethernet
|
|
314
|
-
* fiber-optic cable. One end is connected to the partner's router, the other to an Direct Connect
|
|
315
|
-
* router.</p>
|
|
316
|
-
* <p>You can automatically add the new interconnect to a link aggregation group (LAG) by
|
|
317
|
-
* specifying a LAG ID in the request. This ensures that the new interconnect is allocated on
|
|
318
|
-
* the same Direct Connect endpoint that hosts the specified LAG. If there are no available ports on the
|
|
319
|
-
* endpoint, the request fails and no interconnect is created.</p>
|
|
320
|
-
* <p>For each end customer, the Direct Connect Partner provisions a connection on their interconnect by calling <a>AllocateHostedConnection</a>.
|
|
321
|
-
* The end customer can then connect to Amazon Web Services resources by creating a virtual interface on their connection, using the VLAN assigned to them by the Direct Connect Partner.</p>
|
|
322
|
-
* <note>
|
|
323
|
-
* <p>Intended for use by Direct Connect Partners only.</p>
|
|
324
|
-
* </note>
|
|
188
|
+
* @see {@link CreateInterconnectCommand}
|
|
325
189
|
*/
|
|
326
190
|
createInterconnect(args: CreateInterconnectCommandInput, options?: __HttpHandlerOptions): Promise<CreateInterconnectCommandOutput>;
|
|
327
191
|
createInterconnect(args: CreateInterconnectCommandInput, cb: (err: any, data?: CreateInterconnectCommandOutput) => void): void;
|
|
328
192
|
createInterconnect(args: CreateInterconnectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateInterconnectCommandOutput) => void): void;
|
|
329
193
|
/**
|
|
330
|
-
* @
|
|
331
|
-
* <p>Creates a link aggregation group (LAG) with the specified number of bundled
|
|
332
|
-
* physical dedicated connections between the customer network and a specific Direct Connect location.
|
|
333
|
-
* A LAG is a logical interface that uses the Link Aggregation Control Protocol
|
|
334
|
-
* (LACP) to aggregate multiple interfaces, enabling you to treat them as a single
|
|
335
|
-
* interface.</p>
|
|
336
|
-
* <p>All connections in a LAG must use the same bandwidth (either 1Gbps or 10Gbps) and must terminate at the same Direct Connect endpoint.</p>
|
|
337
|
-
* <p>You can have up to 10 dedicated connections per LAG. Regardless of this limit, if you
|
|
338
|
-
* request more connections for the LAG than Direct Connect can allocate on a single endpoint, no LAG is
|
|
339
|
-
* created.</p>
|
|
340
|
-
* <p>You can specify an existing physical dedicated connection or interconnect to include in
|
|
341
|
-
* the LAG (which counts towards the total number of connections). Doing so interrupts the
|
|
342
|
-
* current physical dedicated connection, and re-establishes them as a member of the LAG. The LAG
|
|
343
|
-
* will be created on the same Direct Connect endpoint to which the dedicated connection terminates. Any
|
|
344
|
-
* virtual interfaces associated with the dedicated connection are automatically disassociated
|
|
345
|
-
* and re-associated with the LAG. The connection ID does not change.</p>
|
|
346
|
-
* <p>If the Amazon Web Services account used to create a LAG is a registered Direct Connect Partner, the LAG is
|
|
347
|
-
* automatically enabled to host sub-connections. For a LAG owned by a partner, any associated virtual
|
|
348
|
-
* interfaces cannot be directly configured.</p>
|
|
194
|
+
* @see {@link CreateLagCommand}
|
|
349
195
|
*/
|
|
350
196
|
createLag(args: CreateLagCommandInput, options?: __HttpHandlerOptions): Promise<CreateLagCommandOutput>;
|
|
351
197
|
createLag(args: CreateLagCommandInput, cb: (err: any, data?: CreateLagCommandOutput) => void): void;
|
|
352
198
|
createLag(args: CreateLagCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLagCommandOutput) => void): void;
|
|
353
199
|
/**
|
|
354
|
-
* @
|
|
355
|
-
* <p>Creates a private virtual interface. A virtual interface is the VLAN that transports Direct Connect traffic.
|
|
356
|
-
* A private virtual interface can be connected to either a Direct Connect gateway or a Virtual Private Gateway (VGW).
|
|
357
|
-
* Connecting the private virtual interface to a Direct Connect gateway enables the possibility for connecting to multiple
|
|
358
|
-
* VPCs, including VPCs in different Amazon Web Services Regions. Connecting the private virtual interface
|
|
359
|
-
* to a VGW only provides access to a single VPC within the same Region.</p>
|
|
360
|
-
* <p>Setting the MTU of a virtual interface to 9001 (jumbo frames) can cause an update to
|
|
361
|
-
* the underlying physical connection if it wasn't updated to support jumbo frames. Updating
|
|
362
|
-
* the connection disrupts network connectivity for all virtual interfaces associated with
|
|
363
|
-
* the connection for up to 30 seconds. To check whether your connection supports jumbo
|
|
364
|
-
* frames, call <a>DescribeConnections</a>. To check whether your virtual
|
|
365
|
-
* interface supports jumbo frames, call <a>DescribeVirtualInterfaces</a>.</p>
|
|
200
|
+
* @see {@link CreatePrivateVirtualInterfaceCommand}
|
|
366
201
|
*/
|
|
367
202
|
createPrivateVirtualInterface(args: CreatePrivateVirtualInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<CreatePrivateVirtualInterfaceCommandOutput>;
|
|
368
203
|
createPrivateVirtualInterface(args: CreatePrivateVirtualInterfaceCommandInput, cb: (err: any, data?: CreatePrivateVirtualInterfaceCommandOutput) => void): void;
|
|
369
204
|
createPrivateVirtualInterface(args: CreatePrivateVirtualInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePrivateVirtualInterfaceCommandOutput) => void): void;
|
|
370
205
|
/**
|
|
371
|
-
* @
|
|
372
|
-
* <p>Creates a public virtual interface. A virtual interface is the VLAN that transports Direct Connect traffic.
|
|
373
|
-
* A public virtual interface supports sending traffic to public services of Amazon Web Services such as Amazon S3.</p>
|
|
374
|
-
* <p>When creating an IPv6 public virtual interface (<code>addressFamily</code> is <code>ipv6</code>), leave the <code>customer</code>
|
|
375
|
-
* and <code>amazon</code> address fields blank to use auto-assigned IPv6 space. Custom IPv6 addresses are not supported.</p>
|
|
206
|
+
* @see {@link CreatePublicVirtualInterfaceCommand}
|
|
376
207
|
*/
|
|
377
208
|
createPublicVirtualInterface(args: CreatePublicVirtualInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<CreatePublicVirtualInterfaceCommandOutput>;
|
|
378
209
|
createPublicVirtualInterface(args: CreatePublicVirtualInterfaceCommandInput, cb: (err: any, data?: CreatePublicVirtualInterfaceCommandOutput) => void): void;
|
|
379
210
|
createPublicVirtualInterface(args: CreatePublicVirtualInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePublicVirtualInterfaceCommandOutput) => void): void;
|
|
380
211
|
/**
|
|
381
|
-
* @
|
|
382
|
-
* <p>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.</p>
|
|
383
|
-
* <important>
|
|
384
|
-
* <p>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.</p>
|
|
385
|
-
* </important>
|
|
386
|
-
* <p>A jumbo MTU value must be either 1500 or 8500. No other values will be accepted. Setting
|
|
387
|
-
* the MTU of a virtual interface to 8500 (jumbo frames) can cause an update to the underlying
|
|
388
|
-
* physical connection if it wasn't updated to support jumbo frames. Updating the connection
|
|
389
|
-
* disrupts network connectivity for all virtual interfaces associated with the connection for up
|
|
390
|
-
* to 30 seconds. To check whether your connection supports jumbo frames, call <a>DescribeConnections</a>. To check whether your virtual interface supports jumbo
|
|
391
|
-
* frames, call <a>DescribeVirtualInterfaces</a>.</p>
|
|
212
|
+
* @see {@link CreateTransitVirtualInterfaceCommand}
|
|
392
213
|
*/
|
|
393
214
|
createTransitVirtualInterface(args: CreateTransitVirtualInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<CreateTransitVirtualInterfaceCommandOutput>;
|
|
394
215
|
createTransitVirtualInterface(args: CreateTransitVirtualInterfaceCommandInput, cb: (err: any, data?: CreateTransitVirtualInterfaceCommandOutput) => void): void;
|
|
395
216
|
createTransitVirtualInterface(args: CreateTransitVirtualInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTransitVirtualInterfaceCommandOutput) => void): void;
|
|
396
217
|
/**
|
|
397
|
-
* @
|
|
398
|
-
* <p>Deletes the specified BGP peer on the specified virtual interface with the specified customer address and ASN.</p>
|
|
399
|
-
* <p>You cannot delete the last BGP peer from a virtual interface.</p>
|
|
218
|
+
* @see {@link DeleteBGPPeerCommand}
|
|
400
219
|
*/
|
|
401
220
|
deleteBGPPeer(args: DeleteBGPPeerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBGPPeerCommandOutput>;
|
|
402
221
|
deleteBGPPeer(args: DeleteBGPPeerCommandInput, cb: (err: any, data?: DeleteBGPPeerCommandOutput) => void): void;
|
|
403
222
|
deleteBGPPeer(args: DeleteBGPPeerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBGPPeerCommandOutput) => void): void;
|
|
404
223
|
/**
|
|
405
|
-
* @
|
|
406
|
-
* <p>Deletes the specified connection.</p>
|
|
407
|
-
* <p>Deleting a connection only stops the Direct Connect port hour and data transfer charges.
|
|
408
|
-
* If you are partnering with any third parties to connect with the Direct Connect location,
|
|
409
|
-
* you must cancel your service with them separately.</p>
|
|
224
|
+
* @see {@link DeleteConnectionCommand}
|
|
410
225
|
*/
|
|
411
226
|
deleteConnection(args: DeleteConnectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConnectionCommandOutput>;
|
|
412
227
|
deleteConnection(args: DeleteConnectionCommandInput, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void;
|
|
413
228
|
deleteConnection(args: DeleteConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void;
|
|
414
229
|
/**
|
|
415
|
-
* @
|
|
416
|
-
* <p>Deletes the specified Direct Connect gateway. You must first delete all virtual interfaces that are
|
|
417
|
-
* attached to the Direct Connect gateway and disassociate all virtual private gateways associated
|
|
418
|
-
* with the Direct Connect gateway.</p>
|
|
230
|
+
* @see {@link DeleteDirectConnectGatewayCommand}
|
|
419
231
|
*/
|
|
420
232
|
deleteDirectConnectGateway(args: DeleteDirectConnectGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDirectConnectGatewayCommandOutput>;
|
|
421
233
|
deleteDirectConnectGateway(args: DeleteDirectConnectGatewayCommandInput, cb: (err: any, data?: DeleteDirectConnectGatewayCommandOutput) => void): void;
|
|
422
234
|
deleteDirectConnectGateway(args: DeleteDirectConnectGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDirectConnectGatewayCommandOutput) => void): void;
|
|
423
235
|
/**
|
|
424
|
-
* @
|
|
425
|
-
* <p>Deletes the association between the specified Direct Connect gateway and virtual private gateway.</p>
|
|
426
|
-
* <p>We recommend that you specify the <code>associationID</code> to delete the association. Alternatively, if you own virtual gateway and a Direct Connect gateway association, you can specify the <code>virtualGatewayId</code> and <code>directConnectGatewayId</code> to delete an association.</p>
|
|
236
|
+
* @see {@link DeleteDirectConnectGatewayAssociationCommand}
|
|
427
237
|
*/
|
|
428
238
|
deleteDirectConnectGatewayAssociation(args: DeleteDirectConnectGatewayAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDirectConnectGatewayAssociationCommandOutput>;
|
|
429
239
|
deleteDirectConnectGatewayAssociation(args: DeleteDirectConnectGatewayAssociationCommandInput, cb: (err: any, data?: DeleteDirectConnectGatewayAssociationCommandOutput) => void): void;
|
|
430
240
|
deleteDirectConnectGatewayAssociation(args: DeleteDirectConnectGatewayAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDirectConnectGatewayAssociationCommandOutput) => void): void;
|
|
431
241
|
/**
|
|
432
|
-
* @
|
|
433
|
-
* <p>Deletes the association proposal request between the specified Direct Connect gateway and virtual private gateway or transit gateway.</p>
|
|
242
|
+
* @see {@link DeleteDirectConnectGatewayAssociationProposalCommand}
|
|
434
243
|
*/
|
|
435
244
|
deleteDirectConnectGatewayAssociationProposal(args: DeleteDirectConnectGatewayAssociationProposalCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDirectConnectGatewayAssociationProposalCommandOutput>;
|
|
436
245
|
deleteDirectConnectGatewayAssociationProposal(args: DeleteDirectConnectGatewayAssociationProposalCommandInput, cb: (err: any, data?: DeleteDirectConnectGatewayAssociationProposalCommandOutput) => void): void;
|
|
437
246
|
deleteDirectConnectGatewayAssociationProposal(args: DeleteDirectConnectGatewayAssociationProposalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDirectConnectGatewayAssociationProposalCommandOutput) => void): void;
|
|
438
247
|
/**
|
|
439
|
-
* @
|
|
440
|
-
* <p>Deletes the specified interconnect.</p>
|
|
441
|
-
* <note>
|
|
442
|
-
* <p>Intended for use
|
|
443
|
-
* by Direct Connect Partners only.</p>
|
|
444
|
-
* </note>
|
|
248
|
+
* @see {@link DeleteInterconnectCommand}
|
|
445
249
|
*/
|
|
446
250
|
deleteInterconnect(args: DeleteInterconnectCommandInput, options?: __HttpHandlerOptions): Promise<DeleteInterconnectCommandOutput>;
|
|
447
251
|
deleteInterconnect(args: DeleteInterconnectCommandInput, cb: (err: any, data?: DeleteInterconnectCommandOutput) => void): void;
|
|
448
252
|
deleteInterconnect(args: DeleteInterconnectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteInterconnectCommandOutput) => void): void;
|
|
449
253
|
/**
|
|
450
|
-
* @
|
|
451
|
-
* <p>Deletes the specified link aggregation group (LAG). You cannot delete a LAG if it has active
|
|
452
|
-
* virtual interfaces or hosted connections.</p>
|
|
254
|
+
* @see {@link DeleteLagCommand}
|
|
453
255
|
*/
|
|
454
256
|
deleteLag(args: DeleteLagCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLagCommandOutput>;
|
|
455
257
|
deleteLag(args: DeleteLagCommandInput, cb: (err: any, data?: DeleteLagCommandOutput) => void): void;
|
|
456
258
|
deleteLag(args: DeleteLagCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLagCommandOutput) => void): void;
|
|
457
259
|
/**
|
|
458
|
-
* @
|
|
459
|
-
* <p>Deletes a virtual interface.</p>
|
|
260
|
+
* @see {@link DeleteVirtualInterfaceCommand}
|
|
460
261
|
*/
|
|
461
262
|
deleteVirtualInterface(args: DeleteVirtualInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVirtualInterfaceCommandOutput>;
|
|
462
263
|
deleteVirtualInterface(args: DeleteVirtualInterfaceCommandInput, cb: (err: any, data?: DeleteVirtualInterfaceCommandOutput) => void): void;
|
|
463
264
|
deleteVirtualInterface(args: DeleteVirtualInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVirtualInterfaceCommandOutput) => void): void;
|
|
464
265
|
/**
|
|
465
|
-
* @
|
|
466
|
-
* @deprecated
|
|
467
|
-
*
|
|
468
|
-
* <p>Deprecated. Use <a>DescribeLoa</a> instead.</p>
|
|
469
|
-
* <p>Gets the LOA-CFA for a connection.</p>
|
|
470
|
-
* <p>The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is a document that your APN partner or
|
|
471
|
-
* service provider uses when establishing your cross connect to Amazon Web Services at the colocation facility. For more information,
|
|
472
|
-
* see <a href="https://docs.aws.amazon.com/directconnect/latest/UserGuide/Colocation.html">Requesting Cross Connects
|
|
473
|
-
* at Direct Connect Locations</a> in the <i>Direct Connect User Guide</i>.</p>
|
|
266
|
+
* @see {@link DescribeConnectionLoaCommand}
|
|
474
267
|
*/
|
|
475
268
|
describeConnectionLoa(args: DescribeConnectionLoaCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectionLoaCommandOutput>;
|
|
476
269
|
describeConnectionLoa(args: DescribeConnectionLoaCommandInput, cb: (err: any, data?: DescribeConnectionLoaCommandOutput) => void): void;
|
|
477
270
|
describeConnectionLoa(args: DescribeConnectionLoaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectionLoaCommandOutput) => void): void;
|
|
478
271
|
/**
|
|
479
|
-
* @
|
|
480
|
-
* <p>Displays the specified connection or all connections in this Region.</p>
|
|
272
|
+
* @see {@link DescribeConnectionsCommand}
|
|
481
273
|
*/
|
|
482
274
|
describeConnections(args: DescribeConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectionsCommandOutput>;
|
|
483
275
|
describeConnections(args: DescribeConnectionsCommandInput, cb: (err: any, data?: DescribeConnectionsCommandOutput) => void): void;
|
|
484
276
|
describeConnections(args: DescribeConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectionsCommandOutput) => void): void;
|
|
485
277
|
/**
|
|
486
|
-
* @
|
|
487
|
-
* @deprecated
|
|
488
|
-
*
|
|
489
|
-
* <p>Deprecated. Use <a>DescribeHostedConnections</a> instead.</p>
|
|
490
|
-
* <p>Lists the connections that have been provisioned on the specified interconnect.</p>
|
|
491
|
-
* <note>
|
|
492
|
-
* <p>Intended for use by Direct Connect Partners only.</p>
|
|
493
|
-
* </note>
|
|
278
|
+
* @see {@link DescribeConnectionsOnInterconnectCommand}
|
|
494
279
|
*/
|
|
495
280
|
describeConnectionsOnInterconnect(args: DescribeConnectionsOnInterconnectCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectionsOnInterconnectCommandOutput>;
|
|
496
281
|
describeConnectionsOnInterconnect(args: DescribeConnectionsOnInterconnectCommandInput, cb: (err: any, data?: DescribeConnectionsOnInterconnectCommandOutput) => void): void;
|
|
497
282
|
describeConnectionsOnInterconnect(args: DescribeConnectionsOnInterconnectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectionsOnInterconnectCommandOutput) => void): void;
|
|
498
283
|
/**
|
|
499
|
-
* @
|
|
500
|
-
* <p>Get and view a list of customer agreements, along with their signed status and whether the customer is an NNIPartner, NNIPartnerV2, or a nonPartner. </p>
|
|
284
|
+
* @see {@link DescribeCustomerMetadataCommand}
|
|
501
285
|
*/
|
|
502
286
|
describeCustomerMetadata(args: DescribeCustomerMetadataCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCustomerMetadataCommandOutput>;
|
|
503
287
|
describeCustomerMetadata(args: DescribeCustomerMetadataCommandInput, cb: (err: any, data?: DescribeCustomerMetadataCommandOutput) => void): void;
|
|
504
288
|
describeCustomerMetadata(args: DescribeCustomerMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCustomerMetadataCommandOutput) => void): void;
|
|
505
289
|
/**
|
|
506
|
-
* @
|
|
507
|
-
* <p>Describes one or more association proposals for connection between a virtual private gateway or transit gateway and a Direct Connect gateway. </p>
|
|
290
|
+
* @see {@link DescribeDirectConnectGatewayAssociationProposalsCommand}
|
|
508
291
|
*/
|
|
509
292
|
describeDirectConnectGatewayAssociationProposals(args: DescribeDirectConnectGatewayAssociationProposalsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDirectConnectGatewayAssociationProposalsCommandOutput>;
|
|
510
293
|
describeDirectConnectGatewayAssociationProposals(args: DescribeDirectConnectGatewayAssociationProposalsCommandInput, cb: (err: any, data?: DescribeDirectConnectGatewayAssociationProposalsCommandOutput) => void): void;
|
|
511
294
|
describeDirectConnectGatewayAssociationProposals(args: DescribeDirectConnectGatewayAssociationProposalsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDirectConnectGatewayAssociationProposalsCommandOutput) => void): void;
|
|
512
295
|
/**
|
|
513
|
-
* @
|
|
514
|
-
* <p>Lists the associations between your Direct Connect gateways and virtual private gateways and transit gateways. You must specify one of the following:</p>
|
|
515
|
-
* <ul>
|
|
516
|
-
* <li>
|
|
517
|
-
* <p>A Direct Connect gateway</p>
|
|
518
|
-
* <p>The response contains all virtual private gateways and transit gateways associated with the Direct Connect gateway.</p>
|
|
519
|
-
* </li>
|
|
520
|
-
* <li>
|
|
521
|
-
* <p>A virtual private gateway</p>
|
|
522
|
-
* <p>The response contains the Direct Connect gateway.</p>
|
|
523
|
-
* </li>
|
|
524
|
-
* <li>
|
|
525
|
-
* <p>A transit gateway</p>
|
|
526
|
-
* <p>The response contains the Direct Connect gateway.</p>
|
|
527
|
-
* </li>
|
|
528
|
-
* <li>
|
|
529
|
-
* <p>A Direct Connect gateway and a virtual private gateway</p>
|
|
530
|
-
* <p>The response contains the association between the Direct Connect gateway and virtual private gateway.</p>
|
|
531
|
-
* </li>
|
|
532
|
-
* <li>
|
|
533
|
-
* <p>A Direct Connect gateway and a transit gateway</p>
|
|
534
|
-
* <p>The response contains the association between the Direct Connect gateway and transit gateway.</p>
|
|
535
|
-
* </li>
|
|
536
|
-
* </ul>
|
|
296
|
+
* @see {@link DescribeDirectConnectGatewayAssociationsCommand}
|
|
537
297
|
*/
|
|
538
298
|
describeDirectConnectGatewayAssociations(args: DescribeDirectConnectGatewayAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDirectConnectGatewayAssociationsCommandOutput>;
|
|
539
299
|
describeDirectConnectGatewayAssociations(args: DescribeDirectConnectGatewayAssociationsCommandInput, cb: (err: any, data?: DescribeDirectConnectGatewayAssociationsCommandOutput) => void): void;
|
|
540
300
|
describeDirectConnectGatewayAssociations(args: DescribeDirectConnectGatewayAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDirectConnectGatewayAssociationsCommandOutput) => void): void;
|
|
541
301
|
/**
|
|
542
|
-
* @
|
|
543
|
-
* <p>Lists the attachments between your Direct Connect gateways and virtual interfaces. You must specify
|
|
544
|
-
* a Direct Connect gateway, a virtual interface, or both. If you specify a Direct Connect gateway, the response contains
|
|
545
|
-
* all virtual interfaces attached to the Direct Connect gateway. If you specify a virtual interface, the
|
|
546
|
-
* response contains all Direct Connect gateways attached to the virtual interface. If you specify both,
|
|
547
|
-
* the response contains the attachment between the Direct Connect gateway and the virtual interface.</p>
|
|
302
|
+
* @see {@link DescribeDirectConnectGatewayAttachmentsCommand}
|
|
548
303
|
*/
|
|
549
304
|
describeDirectConnectGatewayAttachments(args: DescribeDirectConnectGatewayAttachmentsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDirectConnectGatewayAttachmentsCommandOutput>;
|
|
550
305
|
describeDirectConnectGatewayAttachments(args: DescribeDirectConnectGatewayAttachmentsCommandInput, cb: (err: any, data?: DescribeDirectConnectGatewayAttachmentsCommandOutput) => void): void;
|
|
551
306
|
describeDirectConnectGatewayAttachments(args: DescribeDirectConnectGatewayAttachmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDirectConnectGatewayAttachmentsCommandOutput) => void): void;
|
|
552
307
|
/**
|
|
553
|
-
* @
|
|
554
|
-
* <p>Lists all your Direct Connect gateways or only the specified Direct Connect gateway. Deleted Direct Connect gateways are not returned.</p>
|
|
308
|
+
* @see {@link DescribeDirectConnectGatewaysCommand}
|
|
555
309
|
*/
|
|
556
310
|
describeDirectConnectGateways(args: DescribeDirectConnectGatewaysCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDirectConnectGatewaysCommandOutput>;
|
|
557
311
|
describeDirectConnectGateways(args: DescribeDirectConnectGatewaysCommandInput, cb: (err: any, data?: DescribeDirectConnectGatewaysCommandOutput) => void): void;
|
|
558
312
|
describeDirectConnectGateways(args: DescribeDirectConnectGatewaysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDirectConnectGatewaysCommandOutput) => void): void;
|
|
559
313
|
/**
|
|
560
|
-
* @
|
|
561
|
-
* <p>Lists the hosted connections that have been provisioned on the specified
|
|
562
|
-
* interconnect or link aggregation group (LAG).</p>
|
|
563
|
-
* <note>
|
|
564
|
-
* <p>Intended for use by Direct Connect Partners only.</p>
|
|
565
|
-
* </note>
|
|
314
|
+
* @see {@link DescribeHostedConnectionsCommand}
|
|
566
315
|
*/
|
|
567
316
|
describeHostedConnections(args: DescribeHostedConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeHostedConnectionsCommandOutput>;
|
|
568
317
|
describeHostedConnections(args: DescribeHostedConnectionsCommandInput, cb: (err: any, data?: DescribeHostedConnectionsCommandOutput) => void): void;
|
|
569
318
|
describeHostedConnections(args: DescribeHostedConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHostedConnectionsCommandOutput) => void): void;
|
|
570
319
|
/**
|
|
571
|
-
* @
|
|
572
|
-
* @deprecated
|
|
573
|
-
*
|
|
574
|
-
* <p>Deprecated. Use <a>DescribeLoa</a> instead.</p>
|
|
575
|
-
* <p>Gets the LOA-CFA for the specified interconnect.</p>
|
|
576
|
-
* <p>The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is a document that is used when establishing your cross connect to Amazon Web Services at the colocation facility.
|
|
577
|
-
* For more information, see <a href="https://docs.aws.amazon.com/directconnect/latest/UserGuide/Colocation.html">Requesting Cross Connects at Direct Connect Locations</a>
|
|
578
|
-
* in the <i>Direct Connect User Guide</i>.</p>
|
|
320
|
+
* @see {@link DescribeInterconnectLoaCommand}
|
|
579
321
|
*/
|
|
580
322
|
describeInterconnectLoa(args: DescribeInterconnectLoaCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInterconnectLoaCommandOutput>;
|
|
581
323
|
describeInterconnectLoa(args: DescribeInterconnectLoaCommandInput, cb: (err: any, data?: DescribeInterconnectLoaCommandOutput) => void): void;
|
|
582
324
|
describeInterconnectLoa(args: DescribeInterconnectLoaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInterconnectLoaCommandOutput) => void): void;
|
|
583
325
|
/**
|
|
584
|
-
* @
|
|
585
|
-
* <p>Lists the interconnects owned by the Amazon Web Services account or only the specified interconnect.</p>
|
|
326
|
+
* @see {@link DescribeInterconnectsCommand}
|
|
586
327
|
*/
|
|
587
328
|
describeInterconnects(args: DescribeInterconnectsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInterconnectsCommandOutput>;
|
|
588
329
|
describeInterconnects(args: DescribeInterconnectsCommandInput, cb: (err: any, data?: DescribeInterconnectsCommandOutput) => void): void;
|
|
589
330
|
describeInterconnects(args: DescribeInterconnectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInterconnectsCommandOutput) => void): void;
|
|
590
331
|
/**
|
|
591
|
-
* @
|
|
592
|
-
* <p>Describes all your link aggregation groups (LAG) or the specified LAG.</p>
|
|
332
|
+
* @see {@link DescribeLagsCommand}
|
|
593
333
|
*/
|
|
594
334
|
describeLags(args: DescribeLagsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLagsCommandOutput>;
|
|
595
335
|
describeLags(args: DescribeLagsCommandInput, cb: (err: any, data?: DescribeLagsCommandOutput) => void): void;
|
|
596
336
|
describeLags(args: DescribeLagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLagsCommandOutput) => void): void;
|
|
597
337
|
/**
|
|
598
|
-
* @
|
|
599
|
-
* <p>Gets the LOA-CFA for a connection, interconnect, or link aggregation group (LAG).</p>
|
|
600
|
-
* <p>The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is a document that is used when establishing
|
|
601
|
-
* your cross connect to Amazon Web Services at the colocation facility. For more information, see <a href="https://docs.aws.amazon.com/directconnect/latest/UserGuide/Colocation.html">Requesting Cross Connects at Direct Connect Locations</a>
|
|
602
|
-
* in the <i>Direct Connect User Guide</i>.</p>
|
|
338
|
+
* @see {@link DescribeLoaCommand}
|
|
603
339
|
*/
|
|
604
340
|
describeLoa(args: DescribeLoaCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLoaCommandOutput>;
|
|
605
341
|
describeLoa(args: DescribeLoaCommandInput, cb: (err: any, data?: DescribeLoaCommandOutput) => void): void;
|
|
606
342
|
describeLoa(args: DescribeLoaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLoaCommandOutput) => void): void;
|
|
607
343
|
/**
|
|
608
|
-
* @
|
|
609
|
-
* <p>Lists the Direct Connect locations in the current Amazon Web Services Region. These are the locations that can be selected when calling
|
|
610
|
-
* <a>CreateConnection</a> or <a>CreateInterconnect</a>.</p>
|
|
344
|
+
* @see {@link DescribeLocationsCommand}
|
|
611
345
|
*/
|
|
612
346
|
describeLocations(args: DescribeLocationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLocationsCommandOutput>;
|
|
613
347
|
describeLocations(args: DescribeLocationsCommandInput, cb: (err: any, data?: DescribeLocationsCommandOutput) => void): void;
|
|
614
348
|
describeLocations(args: DescribeLocationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLocationsCommandOutput) => void): void;
|
|
615
349
|
/**
|
|
616
|
-
* @
|
|
617
|
-
* <p>
|
|
618
|
-
* Details about the router.
|
|
619
|
-
* </p>
|
|
350
|
+
* @see {@link DescribeRouterConfigurationCommand}
|
|
620
351
|
*/
|
|
621
352
|
describeRouterConfiguration(args: DescribeRouterConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRouterConfigurationCommandOutput>;
|
|
622
353
|
describeRouterConfiguration(args: DescribeRouterConfigurationCommandInput, cb: (err: any, data?: DescribeRouterConfigurationCommandOutput) => void): void;
|
|
623
354
|
describeRouterConfiguration(args: DescribeRouterConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRouterConfigurationCommandOutput) => void): void;
|
|
624
355
|
/**
|
|
625
|
-
* @
|
|
626
|
-
* <p>Describes the tags associated with the specified Direct Connect resources.</p>
|
|
356
|
+
* @see {@link DescribeTagsCommand}
|
|
627
357
|
*/
|
|
628
358
|
describeTags(args: DescribeTagsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTagsCommandOutput>;
|
|
629
359
|
describeTags(args: DescribeTagsCommandInput, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
|
|
630
360
|
describeTags(args: DescribeTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
|
|
631
361
|
/**
|
|
632
|
-
* @
|
|
633
|
-
* <p>Lists the virtual private gateways owned by the Amazon Web Services account.</p>
|
|
634
|
-
* <p>You can create one or more Direct Connect private virtual interfaces linked to a virtual private gateway.</p>
|
|
362
|
+
* @see {@link DescribeVirtualGatewaysCommand}
|
|
635
363
|
*/
|
|
636
364
|
describeVirtualGateways(args: DescribeVirtualGatewaysCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVirtualGatewaysCommandOutput>;
|
|
637
365
|
describeVirtualGateways(args: DescribeVirtualGatewaysCommandInput, cb: (err: any, data?: DescribeVirtualGatewaysCommandOutput) => void): void;
|
|
638
366
|
describeVirtualGateways(args: DescribeVirtualGatewaysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVirtualGatewaysCommandOutput) => void): void;
|
|
639
367
|
/**
|
|
640
|
-
* @
|
|
641
|
-
* <p>Displays all virtual interfaces for an Amazon Web Services account. Virtual interfaces deleted fewer
|
|
642
|
-
* than 15 minutes before you make the request are also returned. If you specify a
|
|
643
|
-
* connection ID, only the virtual interfaces associated with the connection are returned.
|
|
644
|
-
* If you specify a virtual interface ID, then only a single virtual interface is returned.</p>
|
|
645
|
-
* <p>A virtual interface (VLAN) transmits the traffic between the Direct Connect location and the customer network.</p>
|
|
368
|
+
* @see {@link DescribeVirtualInterfacesCommand}
|
|
646
369
|
*/
|
|
647
370
|
describeVirtualInterfaces(args: DescribeVirtualInterfacesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVirtualInterfacesCommandOutput>;
|
|
648
371
|
describeVirtualInterfaces(args: DescribeVirtualInterfacesCommandInput, cb: (err: any, data?: DescribeVirtualInterfacesCommandOutput) => void): void;
|
|
649
372
|
describeVirtualInterfaces(args: DescribeVirtualInterfacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVirtualInterfacesCommandOutput) => void): void;
|
|
650
373
|
/**
|
|
651
|
-
* @
|
|
652
|
-
* <p>Disassociates a connection from a link aggregation group (LAG). The connection is
|
|
653
|
-
* interrupted and re-established as a standalone connection (the connection is not
|
|
654
|
-
* deleted; to delete the connection, use the <a>DeleteConnection</a> request).
|
|
655
|
-
* If the LAG has associated virtual interfaces or hosted connections, they remain
|
|
656
|
-
* associated with the LAG. A disassociated connection owned by an Direct Connect Partner is
|
|
657
|
-
* automatically converted to an interconnect.</p>
|
|
658
|
-
* <p>If disassociating the connection would cause the LAG to fall below its setting for
|
|
659
|
-
* minimum number of operational connections, the request fails, except when it's the last
|
|
660
|
-
* member of the LAG. If all connections are disassociated, the LAG continues to exist as
|
|
661
|
-
* an empty LAG with no physical connections. </p>
|
|
374
|
+
* @see {@link DisassociateConnectionFromLagCommand}
|
|
662
375
|
*/
|
|
663
376
|
disassociateConnectionFromLag(args: DisassociateConnectionFromLagCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateConnectionFromLagCommandOutput>;
|
|
664
377
|
disassociateConnectionFromLag(args: DisassociateConnectionFromLagCommandInput, cb: (err: any, data?: DisassociateConnectionFromLagCommandOutput) => void): void;
|
|
665
378
|
disassociateConnectionFromLag(args: DisassociateConnectionFromLagCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateConnectionFromLagCommandOutput) => void): void;
|
|
666
379
|
/**
|
|
667
|
-
* @
|
|
668
|
-
* <p>Removes the association between a MAC Security (MACsec) security key and an Direct Connect dedicated connection.</p>
|
|
380
|
+
* @see {@link DisassociateMacSecKeyCommand}
|
|
669
381
|
*/
|
|
670
382
|
disassociateMacSecKey(args: DisassociateMacSecKeyCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateMacSecKeyCommandOutput>;
|
|
671
383
|
disassociateMacSecKey(args: DisassociateMacSecKeyCommandInput, cb: (err: any, data?: DisassociateMacSecKeyCommandOutput) => void): void;
|
|
672
384
|
disassociateMacSecKey(args: DisassociateMacSecKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateMacSecKeyCommandOutput) => void): void;
|
|
673
385
|
/**
|
|
674
|
-
* @
|
|
675
|
-
* <p>Lists the virtual interface failover test history.</p>
|
|
386
|
+
* @see {@link ListVirtualInterfaceTestHistoryCommand}
|
|
676
387
|
*/
|
|
677
388
|
listVirtualInterfaceTestHistory(args: ListVirtualInterfaceTestHistoryCommandInput, options?: __HttpHandlerOptions): Promise<ListVirtualInterfaceTestHistoryCommandOutput>;
|
|
678
389
|
listVirtualInterfaceTestHistory(args: ListVirtualInterfaceTestHistoryCommandInput, cb: (err: any, data?: ListVirtualInterfaceTestHistoryCommandOutput) => void): void;
|
|
679
390
|
listVirtualInterfaceTestHistory(args: ListVirtualInterfaceTestHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVirtualInterfaceTestHistoryCommandOutput) => void): void;
|
|
680
391
|
/**
|
|
681
|
-
* @
|
|
682
|
-
* <p>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.</p>
|
|
683
|
-
* <p>You can run the test on public, private, transit, and hosted virtual interfaces.</p>
|
|
684
|
-
* <p>You can use <a href="https://docs.aws.amazon.com/directconnect/latest/APIReference/API_ListVirtualInterfaceTestHistory.html">ListVirtualInterfaceTestHistory</a> to view the virtual interface test history.</p>
|
|
685
|
-
* <p>If you need to stop the test before the test interval completes, use <a href="https://docs.aws.amazon.com/directconnect/latest/APIReference/API_StopBgpFailoverTest.html">StopBgpFailoverTest</a>.</p>
|
|
392
|
+
* @see {@link StartBgpFailoverTestCommand}
|
|
686
393
|
*/
|
|
687
394
|
startBgpFailoverTest(args: StartBgpFailoverTestCommandInput, options?: __HttpHandlerOptions): Promise<StartBgpFailoverTestCommandOutput>;
|
|
688
395
|
startBgpFailoverTest(args: StartBgpFailoverTestCommandInput, cb: (err: any, data?: StartBgpFailoverTestCommandOutput) => void): void;
|
|
689
396
|
startBgpFailoverTest(args: StartBgpFailoverTestCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartBgpFailoverTestCommandOutput) => void): void;
|
|
690
397
|
/**
|
|
691
|
-
* @
|
|
692
|
-
* <p>Stops the virtual interface failover test.</p>
|
|
398
|
+
* @see {@link StopBgpFailoverTestCommand}
|
|
693
399
|
*/
|
|
694
400
|
stopBgpFailoverTest(args: StopBgpFailoverTestCommandInput, options?: __HttpHandlerOptions): Promise<StopBgpFailoverTestCommandOutput>;
|
|
695
401
|
stopBgpFailoverTest(args: StopBgpFailoverTestCommandInput, cb: (err: any, data?: StopBgpFailoverTestCommandOutput) => void): void;
|
|
696
402
|
stopBgpFailoverTest(args: StopBgpFailoverTestCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopBgpFailoverTestCommandOutput) => void): void;
|
|
697
403
|
/**
|
|
698
|
-
* @
|
|
699
|
-
* <p>Adds the specified tags to the specified Direct Connect resource. Each resource can have a maximum of 50 tags.</p>
|
|
700
|
-
* <p>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.</p>
|
|
404
|
+
* @see {@link TagResourceCommand}
|
|
701
405
|
*/
|
|
702
406
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
703
407
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
704
408
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
705
409
|
/**
|
|
706
|
-
* @
|
|
707
|
-
* <p>Removes one or more tags from the specified Direct Connect resource.</p>
|
|
410
|
+
* @see {@link UntagResourceCommand}
|
|
708
411
|
*/
|
|
709
412
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
710
413
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
711
414
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
712
415
|
/**
|
|
713
|
-
* @
|
|
714
|
-
* <p>Updates the Direct Connect dedicated connection configuration.</p>
|
|
715
|
-
* <p>You can update the following parameters for a connection:</p>
|
|
716
|
-
* <ul>
|
|
717
|
-
* <li>
|
|
718
|
-
* <p>The connection name</p>
|
|
719
|
-
* </li>
|
|
720
|
-
* <li>
|
|
721
|
-
* <p>The connection's MAC Security (MACsec) encryption mode.</p>
|
|
722
|
-
* </li>
|
|
723
|
-
* </ul>
|
|
416
|
+
* @see {@link UpdateConnectionCommand}
|
|
724
417
|
*/
|
|
725
418
|
updateConnection(args: UpdateConnectionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConnectionCommandOutput>;
|
|
726
419
|
updateConnection(args: UpdateConnectionCommandInput, cb: (err: any, data?: UpdateConnectionCommandOutput) => void): void;
|
|
727
420
|
updateConnection(args: UpdateConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConnectionCommandOutput) => void): void;
|
|
728
421
|
/**
|
|
729
|
-
* @
|
|
730
|
-
* <p>Updates the name of a current Direct Connect gateway.</p>
|
|
422
|
+
* @see {@link UpdateDirectConnectGatewayCommand}
|
|
731
423
|
*/
|
|
732
424
|
updateDirectConnectGateway(args: UpdateDirectConnectGatewayCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDirectConnectGatewayCommandOutput>;
|
|
733
425
|
updateDirectConnectGateway(args: UpdateDirectConnectGatewayCommandInput, cb: (err: any, data?: UpdateDirectConnectGatewayCommandOutput) => void): void;
|
|
734
426
|
updateDirectConnectGateway(args: UpdateDirectConnectGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDirectConnectGatewayCommandOutput) => void): void;
|
|
735
427
|
/**
|
|
736
|
-
* @
|
|
737
|
-
* <p>Updates the specified attributes of the Direct Connect gateway association.</p>
|
|
738
|
-
* <p>Add or remove prefixes from the association.</p>
|
|
428
|
+
* @see {@link UpdateDirectConnectGatewayAssociationCommand}
|
|
739
429
|
*/
|
|
740
430
|
updateDirectConnectGatewayAssociation(args: UpdateDirectConnectGatewayAssociationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDirectConnectGatewayAssociationCommandOutput>;
|
|
741
431
|
updateDirectConnectGatewayAssociation(args: UpdateDirectConnectGatewayAssociationCommandInput, cb: (err: any, data?: UpdateDirectConnectGatewayAssociationCommandOutput) => void): void;
|
|
742
432
|
updateDirectConnectGatewayAssociation(args: UpdateDirectConnectGatewayAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDirectConnectGatewayAssociationCommandOutput) => void): void;
|
|
743
433
|
/**
|
|
744
|
-
* @
|
|
745
|
-
* <p>Updates the attributes of the specified link aggregation group (LAG).</p>
|
|
746
|
-
* <p>You can update the following LAG attributes:</p>
|
|
747
|
-
* <ul>
|
|
748
|
-
* <li>
|
|
749
|
-
* <p>The name of the LAG.</p>
|
|
750
|
-
* </li>
|
|
751
|
-
* <li>
|
|
752
|
-
* <p>The value for the minimum number of connections that must be operational
|
|
753
|
-
* for the LAG itself to be operational. </p>
|
|
754
|
-
* </li>
|
|
755
|
-
* <li>
|
|
756
|
-
* <p>The LAG's MACsec encryption mode.</p>
|
|
757
|
-
* <p>Amazon Web Services assigns this value to each connection which is part of the LAG.</p>
|
|
758
|
-
* </li>
|
|
759
|
-
* <li>
|
|
760
|
-
* <p>The tags</p>
|
|
761
|
-
* </li>
|
|
762
|
-
* </ul>
|
|
763
|
-
* <note>
|
|
764
|
-
* <p>If you adjust the threshold value for the minimum number of operational connections, ensure
|
|
765
|
-
* that the new value does not cause the LAG to fall below the threshold and become
|
|
766
|
-
* non-operational.</p>
|
|
767
|
-
* </note>
|
|
434
|
+
* @see {@link UpdateLagCommand}
|
|
768
435
|
*/
|
|
769
436
|
updateLag(args: UpdateLagCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLagCommandOutput>;
|
|
770
437
|
updateLag(args: UpdateLagCommandInput, cb: (err: any, data?: UpdateLagCommandOutput) => void): void;
|
|
771
438
|
updateLag(args: UpdateLagCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLagCommandOutput) => void): void;
|
|
772
439
|
/**
|
|
773
|
-
* @
|
|
774
|
-
* <p>Updates the specified attributes of the specified virtual private interface.</p>
|
|
775
|
-
* <p>Setting the MTU of a virtual interface to 9001 (jumbo frames) can cause an update to
|
|
776
|
-
* the underlying physical connection if it wasn't updated to support jumbo frames. Updating
|
|
777
|
-
* the connection disrupts network connectivity for all virtual interfaces associated with
|
|
778
|
-
* the connection for up to 30 seconds. To check whether your connection supports jumbo
|
|
779
|
-
* frames, call <a>DescribeConnections</a>. To check whether your virtual q
|
|
780
|
-
* interface supports jumbo frames, call <a>DescribeVirtualInterfaces</a>.</p>
|
|
440
|
+
* @see {@link UpdateVirtualInterfaceAttributesCommand}
|
|
781
441
|
*/
|
|
782
442
|
updateVirtualInterfaceAttributes(args: UpdateVirtualInterfaceAttributesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVirtualInterfaceAttributesCommandOutput>;
|
|
783
443
|
updateVirtualInterfaceAttributes(args: UpdateVirtualInterfaceAttributesCommandInput, cb: (err: any, data?: UpdateVirtualInterfaceAttributesCommandOutput) => void): void;
|
|
784
444
|
updateVirtualInterfaceAttributes(args: UpdateVirtualInterfaceAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateVirtualInterfaceAttributesCommandOutput) => void): void;
|
|
785
445
|
}
|
|
446
|
+
/**
|
|
447
|
+
* @public
|
|
448
|
+
* <p>Direct Connect links your internal network to an Direct Connect location over a standard Ethernet fiber-optic cable.
|
|
449
|
+
* One end of the cable is connected to your router, the other to an Direct Connect router. With this connection
|
|
450
|
+
* in place, you can create virtual interfaces directly to the Amazon Web Services Cloud (for example, to Amazon EC2
|
|
451
|
+
* and Amazon S3) and to Amazon VPC, bypassing Internet service providers in your network path. A
|
|
452
|
+
* connection provides access to all Amazon Web Services Regions except the China (Beijing) and (China) Ningxia Regions.
|
|
453
|
+
* Amazon Web Services resources in the China Regions can only be accessed through locations associated with those Regions.</p>
|
|
454
|
+
*/
|
|
455
|
+
export declare class DirectConnect extends DirectConnectClient implements DirectConnect {
|
|
456
|
+
}
|