@aws-sdk/client-global-accelerator 3.437.0 → 3.441.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.
Files changed (70) hide show
  1. package/README.md +57 -1
  2. package/dist-cjs/GlobalAccelerator.js +14 -0
  3. package/dist-cjs/commands/CreateCrossAccountAttachmentCommand.js +51 -0
  4. package/dist-cjs/commands/DeleteCrossAccountAttachmentCommand.js +51 -0
  5. package/dist-cjs/commands/DescribeCrossAccountAttachmentCommand.js +51 -0
  6. package/dist-cjs/commands/ListCrossAccountAttachmentsCommand.js +51 -0
  7. package/dist-cjs/commands/ListCrossAccountResourceAccountsCommand.js +51 -0
  8. package/dist-cjs/commands/ListCrossAccountResourcesCommand.js +51 -0
  9. package/dist-cjs/commands/UpdateCrossAccountAttachmentCommand.js +51 -0
  10. package/dist-cjs/commands/index.js +7 -0
  11. package/dist-cjs/endpoint/endpointResolver.js +1 -1
  12. package/dist-cjs/index.js +1 -0
  13. package/dist-cjs/models/models_0.js +15 -1
  14. package/dist-cjs/pagination/ListCrossAccountAttachmentsPaginator.js +29 -0
  15. package/dist-cjs/pagination/ListCrossAccountResourcesPaginator.js +29 -0
  16. package/dist-cjs/pagination/index.js +2 -0
  17. package/dist-cjs/protocols/Aws_json1_1.js +409 -2
  18. package/dist-es/GlobalAccelerator.js +14 -0
  19. package/dist-es/commands/CreateCrossAccountAttachmentCommand.js +47 -0
  20. package/dist-es/commands/DeleteCrossAccountAttachmentCommand.js +47 -0
  21. package/dist-es/commands/DescribeCrossAccountAttachmentCommand.js +47 -0
  22. package/dist-es/commands/ListCrossAccountAttachmentsCommand.js +47 -0
  23. package/dist-es/commands/ListCrossAccountResourceAccountsCommand.js +47 -0
  24. package/dist-es/commands/ListCrossAccountResourcesCommand.js +47 -0
  25. package/dist-es/commands/UpdateCrossAccountAttachmentCommand.js +47 -0
  26. package/dist-es/commands/index.js +7 -0
  27. package/dist-es/endpoint/endpointResolver.js +1 -1
  28. package/dist-es/index.js +1 -0
  29. package/dist-es/models/models_0.js +13 -0
  30. package/dist-es/pagination/ListCrossAccountAttachmentsPaginator.js +25 -0
  31. package/dist-es/pagination/ListCrossAccountResourcesPaginator.js +25 -0
  32. package/dist-es/pagination/index.js +2 -0
  33. package/dist-es/protocols/Aws_json1_1.js +393 -1
  34. package/dist-types/GlobalAccelerator.d.ts +50 -1
  35. package/dist-types/GlobalAcceleratorClient.d.ts +10 -3
  36. package/dist-types/commands/AddCustomRoutingEndpointsCommand.d.ts +1 -0
  37. package/dist-types/commands/AddEndpointsCommand.d.ts +1 -0
  38. package/dist-types/commands/CreateCrossAccountAttachmentCommand.d.ts +126 -0
  39. package/dist-types/commands/CreateEndpointGroupCommand.d.ts +1 -0
  40. package/dist-types/commands/DeleteCrossAccountAttachmentCommand.d.ts +103 -0
  41. package/dist-types/commands/DescribeCrossAccountAttachmentCommand.d.ts +99 -0
  42. package/dist-types/commands/ListCrossAccountAttachmentsCommand.d.ts +103 -0
  43. package/dist-types/commands/ListCrossAccountResourceAccountsCommand.d.ts +79 -0
  44. package/dist-types/commands/ListCrossAccountResourcesCommand.d.ts +97 -0
  45. package/dist-types/commands/UpdateCrossAccountAttachmentCommand.d.ts +141 -0
  46. package/dist-types/commands/UpdateEndpointGroupCommand.d.ts +1 -0
  47. package/dist-types/commands/index.d.ts +7 -0
  48. package/dist-types/index.d.ts +2 -1
  49. package/dist-types/models/models_0.d.ts +316 -4
  50. package/dist-types/pagination/ListCrossAccountAttachmentsPaginator.d.ts +7 -0
  51. package/dist-types/pagination/ListCrossAccountResourcesPaginator.d.ts +7 -0
  52. package/dist-types/pagination/index.d.ts +2 -0
  53. package/dist-types/protocols/Aws_json1_1.d.ts +63 -0
  54. package/dist-types/ts3.4/GlobalAccelerator.d.ts +119 -0
  55. package/dist-types/ts3.4/GlobalAcceleratorClient.d.ts +42 -0
  56. package/dist-types/ts3.4/commands/CreateCrossAccountAttachmentCommand.d.ts +42 -0
  57. package/dist-types/ts3.4/commands/DeleteCrossAccountAttachmentCommand.d.ts +38 -0
  58. package/dist-types/ts3.4/commands/DescribeCrossAccountAttachmentCommand.d.ts +42 -0
  59. package/dist-types/ts3.4/commands/ListCrossAccountAttachmentsCommand.d.ts +42 -0
  60. package/dist-types/ts3.4/commands/ListCrossAccountResourceAccountsCommand.d.ts +42 -0
  61. package/dist-types/ts3.4/commands/ListCrossAccountResourcesCommand.d.ts +42 -0
  62. package/dist-types/ts3.4/commands/UpdateCrossAccountAttachmentCommand.d.ts +42 -0
  63. package/dist-types/ts3.4/commands/index.d.ts +7 -0
  64. package/dist-types/ts3.4/index.d.ts +1 -0
  65. package/dist-types/ts3.4/models/models_0.d.ts +78 -0
  66. package/dist-types/ts3.4/pagination/ListCrossAccountAttachmentsPaginator.d.ts +11 -0
  67. package/dist-types/ts3.4/pagination/ListCrossAccountResourcesPaginator.d.ts +11 -0
  68. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  69. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +84 -0
  70. package/package.json +7 -6
@@ -19,6 +19,10 @@ import {
19
19
  CreateAcceleratorCommandInput,
20
20
  CreateAcceleratorCommandOutput,
21
21
  } from "./commands/CreateAcceleratorCommand";
22
+ import {
23
+ CreateCrossAccountAttachmentCommandInput,
24
+ CreateCrossAccountAttachmentCommandOutput,
25
+ } from "./commands/CreateCrossAccountAttachmentCommand";
22
26
  import {
23
27
  CreateCustomRoutingAcceleratorCommandInput,
24
28
  CreateCustomRoutingAcceleratorCommandOutput,
@@ -43,6 +47,10 @@ import {
43
47
  DeleteAcceleratorCommandInput,
44
48
  DeleteAcceleratorCommandOutput,
45
49
  } from "./commands/DeleteAcceleratorCommand";
50
+ import {
51
+ DeleteCrossAccountAttachmentCommandInput,
52
+ DeleteCrossAccountAttachmentCommandOutput,
53
+ } from "./commands/DeleteCrossAccountAttachmentCommand";
46
54
  import {
47
55
  DeleteCustomRoutingAcceleratorCommandInput,
48
56
  DeleteCustomRoutingAcceleratorCommandOutput,
@@ -79,6 +87,10 @@ import {
79
87
  DescribeAcceleratorCommandInput,
80
88
  DescribeAcceleratorCommandOutput,
81
89
  } from "./commands/DescribeAcceleratorCommand";
90
+ import {
91
+ DescribeCrossAccountAttachmentCommandInput,
92
+ DescribeCrossAccountAttachmentCommandOutput,
93
+ } from "./commands/DescribeCrossAccountAttachmentCommand";
82
94
  import {
83
95
  DescribeCustomRoutingAcceleratorAttributesCommandInput,
84
96
  DescribeCustomRoutingAcceleratorAttributesCommandOutput,
@@ -111,6 +123,18 @@ import {
111
123
  ListByoipCidrsCommandInput,
112
124
  ListByoipCidrsCommandOutput,
113
125
  } from "./commands/ListByoipCidrsCommand";
126
+ import {
127
+ ListCrossAccountAttachmentsCommandInput,
128
+ ListCrossAccountAttachmentsCommandOutput,
129
+ } from "./commands/ListCrossAccountAttachmentsCommand";
130
+ import {
131
+ ListCrossAccountResourceAccountsCommandInput,
132
+ ListCrossAccountResourceAccountsCommandOutput,
133
+ } from "./commands/ListCrossAccountResourceAccountsCommand";
134
+ import {
135
+ ListCrossAccountResourcesCommandInput,
136
+ ListCrossAccountResourcesCommandOutput,
137
+ } from "./commands/ListCrossAccountResourcesCommand";
114
138
  import {
115
139
  ListCustomRoutingAcceleratorsCommandInput,
116
140
  ListCustomRoutingAcceleratorsCommandOutput,
@@ -171,6 +195,10 @@ import {
171
195
  UpdateAcceleratorCommandInput,
172
196
  UpdateAcceleratorCommandOutput,
173
197
  } from "./commands/UpdateAcceleratorCommand";
198
+ import {
199
+ UpdateCrossAccountAttachmentCommandInput,
200
+ UpdateCrossAccountAttachmentCommandOutput,
201
+ } from "./commands/UpdateCrossAccountAttachmentCommand";
174
202
  import {
175
203
  UpdateCustomRoutingAcceleratorAttributesCommandInput,
176
204
  UpdateCustomRoutingAcceleratorAttributesCommandOutput,
@@ -262,6 +290,19 @@ export interface GlobalAccelerator {
262
290
  options: __HttpHandlerOptions,
263
291
  cb: (err: any, data?: CreateAcceleratorCommandOutput) => void
264
292
  ): void;
293
+ createCrossAccountAttachment(
294
+ args: CreateCrossAccountAttachmentCommandInput,
295
+ options?: __HttpHandlerOptions
296
+ ): Promise<CreateCrossAccountAttachmentCommandOutput>;
297
+ createCrossAccountAttachment(
298
+ args: CreateCrossAccountAttachmentCommandInput,
299
+ cb: (err: any, data?: CreateCrossAccountAttachmentCommandOutput) => void
300
+ ): void;
301
+ createCrossAccountAttachment(
302
+ args: CreateCrossAccountAttachmentCommandInput,
303
+ options: __HttpHandlerOptions,
304
+ cb: (err: any, data?: CreateCrossAccountAttachmentCommandOutput) => void
305
+ ): void;
265
306
  createCustomRoutingAccelerator(
266
307
  args: CreateCustomRoutingAcceleratorCommandInput,
267
308
  options?: __HttpHandlerOptions
@@ -340,6 +381,19 @@ export interface GlobalAccelerator {
340
381
  options: __HttpHandlerOptions,
341
382
  cb: (err: any, data?: DeleteAcceleratorCommandOutput) => void
342
383
  ): void;
384
+ deleteCrossAccountAttachment(
385
+ args: DeleteCrossAccountAttachmentCommandInput,
386
+ options?: __HttpHandlerOptions
387
+ ): Promise<DeleteCrossAccountAttachmentCommandOutput>;
388
+ deleteCrossAccountAttachment(
389
+ args: DeleteCrossAccountAttachmentCommandInput,
390
+ cb: (err: any, data?: DeleteCrossAccountAttachmentCommandOutput) => void
391
+ ): void;
392
+ deleteCrossAccountAttachment(
393
+ args: DeleteCrossAccountAttachmentCommandInput,
394
+ options: __HttpHandlerOptions,
395
+ cb: (err: any, data?: DeleteCrossAccountAttachmentCommandOutput) => void
396
+ ): void;
343
397
  deleteCustomRoutingAccelerator(
344
398
  args: DeleteCustomRoutingAcceleratorCommandInput,
345
399
  options?: __HttpHandlerOptions
@@ -457,6 +511,19 @@ export interface GlobalAccelerator {
457
511
  options: __HttpHandlerOptions,
458
512
  cb: (err: any, data?: DescribeAcceleratorAttributesCommandOutput) => void
459
513
  ): void;
514
+ describeCrossAccountAttachment(
515
+ args: DescribeCrossAccountAttachmentCommandInput,
516
+ options?: __HttpHandlerOptions
517
+ ): Promise<DescribeCrossAccountAttachmentCommandOutput>;
518
+ describeCrossAccountAttachment(
519
+ args: DescribeCrossAccountAttachmentCommandInput,
520
+ cb: (err: any, data?: DescribeCrossAccountAttachmentCommandOutput) => void
521
+ ): void;
522
+ describeCrossAccountAttachment(
523
+ args: DescribeCrossAccountAttachmentCommandInput,
524
+ options: __HttpHandlerOptions,
525
+ cb: (err: any, data?: DescribeCrossAccountAttachmentCommandOutput) => void
526
+ ): void;
460
527
  describeCustomRoutingAccelerator(
461
528
  args: DescribeCustomRoutingAcceleratorCommandInput,
462
529
  options?: __HttpHandlerOptions
@@ -573,6 +640,45 @@ export interface GlobalAccelerator {
573
640
  options: __HttpHandlerOptions,
574
641
  cb: (err: any, data?: ListByoipCidrsCommandOutput) => void
575
642
  ): void;
643
+ listCrossAccountAttachments(
644
+ args: ListCrossAccountAttachmentsCommandInput,
645
+ options?: __HttpHandlerOptions
646
+ ): Promise<ListCrossAccountAttachmentsCommandOutput>;
647
+ listCrossAccountAttachments(
648
+ args: ListCrossAccountAttachmentsCommandInput,
649
+ cb: (err: any, data?: ListCrossAccountAttachmentsCommandOutput) => void
650
+ ): void;
651
+ listCrossAccountAttachments(
652
+ args: ListCrossAccountAttachmentsCommandInput,
653
+ options: __HttpHandlerOptions,
654
+ cb: (err: any, data?: ListCrossAccountAttachmentsCommandOutput) => void
655
+ ): void;
656
+ listCrossAccountResourceAccounts(
657
+ args: ListCrossAccountResourceAccountsCommandInput,
658
+ options?: __HttpHandlerOptions
659
+ ): Promise<ListCrossAccountResourceAccountsCommandOutput>;
660
+ listCrossAccountResourceAccounts(
661
+ args: ListCrossAccountResourceAccountsCommandInput,
662
+ cb: (err: any, data?: ListCrossAccountResourceAccountsCommandOutput) => void
663
+ ): void;
664
+ listCrossAccountResourceAccounts(
665
+ args: ListCrossAccountResourceAccountsCommandInput,
666
+ options: __HttpHandlerOptions,
667
+ cb: (err: any, data?: ListCrossAccountResourceAccountsCommandOutput) => void
668
+ ): void;
669
+ listCrossAccountResources(
670
+ args: ListCrossAccountResourcesCommandInput,
671
+ options?: __HttpHandlerOptions
672
+ ): Promise<ListCrossAccountResourcesCommandOutput>;
673
+ listCrossAccountResources(
674
+ args: ListCrossAccountResourcesCommandInput,
675
+ cb: (err: any, data?: ListCrossAccountResourcesCommandOutput) => void
676
+ ): void;
677
+ listCrossAccountResources(
678
+ args: ListCrossAccountResourcesCommandInput,
679
+ options: __HttpHandlerOptions,
680
+ cb: (err: any, data?: ListCrossAccountResourcesCommandOutput) => void
681
+ ): void;
576
682
  listCustomRoutingAccelerators(
577
683
  args: ListCustomRoutingAcceleratorsCommandInput,
578
684
  options?: __HttpHandlerOptions
@@ -774,6 +880,19 @@ export interface GlobalAccelerator {
774
880
  options: __HttpHandlerOptions,
775
881
  cb: (err: any, data?: UpdateAcceleratorAttributesCommandOutput) => void
776
882
  ): void;
883
+ updateCrossAccountAttachment(
884
+ args: UpdateCrossAccountAttachmentCommandInput,
885
+ options?: __HttpHandlerOptions
886
+ ): Promise<UpdateCrossAccountAttachmentCommandOutput>;
887
+ updateCrossAccountAttachment(
888
+ args: UpdateCrossAccountAttachmentCommandInput,
889
+ cb: (err: any, data?: UpdateCrossAccountAttachmentCommandOutput) => void
890
+ ): void;
891
+ updateCrossAccountAttachment(
892
+ args: UpdateCrossAccountAttachmentCommandInput,
893
+ options: __HttpHandlerOptions,
894
+ cb: (err: any, data?: UpdateCrossAccountAttachmentCommandOutput) => void
895
+ ): void;
777
896
  updateCustomRoutingAccelerator(
778
897
  args: UpdateCustomRoutingAcceleratorCommandInput,
779
898
  options?: __HttpHandlerOptions
@@ -65,6 +65,10 @@ import {
65
65
  CreateAcceleratorCommandInput,
66
66
  CreateAcceleratorCommandOutput,
67
67
  } from "./commands/CreateAcceleratorCommand";
68
+ import {
69
+ CreateCrossAccountAttachmentCommandInput,
70
+ CreateCrossAccountAttachmentCommandOutput,
71
+ } from "./commands/CreateCrossAccountAttachmentCommand";
68
72
  import {
69
73
  CreateCustomRoutingAcceleratorCommandInput,
70
74
  CreateCustomRoutingAcceleratorCommandOutput,
@@ -89,6 +93,10 @@ import {
89
93
  DeleteAcceleratorCommandInput,
90
94
  DeleteAcceleratorCommandOutput,
91
95
  } from "./commands/DeleteAcceleratorCommand";
96
+ import {
97
+ DeleteCrossAccountAttachmentCommandInput,
98
+ DeleteCrossAccountAttachmentCommandOutput,
99
+ } from "./commands/DeleteCrossAccountAttachmentCommand";
92
100
  import {
93
101
  DeleteCustomRoutingAcceleratorCommandInput,
94
102
  DeleteCustomRoutingAcceleratorCommandOutput,
@@ -125,6 +133,10 @@ import {
125
133
  DescribeAcceleratorCommandInput,
126
134
  DescribeAcceleratorCommandOutput,
127
135
  } from "./commands/DescribeAcceleratorCommand";
136
+ import {
137
+ DescribeCrossAccountAttachmentCommandInput,
138
+ DescribeCrossAccountAttachmentCommandOutput,
139
+ } from "./commands/DescribeCrossAccountAttachmentCommand";
128
140
  import {
129
141
  DescribeCustomRoutingAcceleratorAttributesCommandInput,
130
142
  DescribeCustomRoutingAcceleratorAttributesCommandOutput,
@@ -157,6 +169,18 @@ import {
157
169
  ListByoipCidrsCommandInput,
158
170
  ListByoipCidrsCommandOutput,
159
171
  } from "./commands/ListByoipCidrsCommand";
172
+ import {
173
+ ListCrossAccountAttachmentsCommandInput,
174
+ ListCrossAccountAttachmentsCommandOutput,
175
+ } from "./commands/ListCrossAccountAttachmentsCommand";
176
+ import {
177
+ ListCrossAccountResourceAccountsCommandInput,
178
+ ListCrossAccountResourceAccountsCommandOutput,
179
+ } from "./commands/ListCrossAccountResourceAccountsCommand";
180
+ import {
181
+ ListCrossAccountResourcesCommandInput,
182
+ ListCrossAccountResourcesCommandOutput,
183
+ } from "./commands/ListCrossAccountResourcesCommand";
160
184
  import {
161
185
  ListCustomRoutingAcceleratorsCommandInput,
162
186
  ListCustomRoutingAcceleratorsCommandOutput,
@@ -217,6 +241,10 @@ import {
217
241
  UpdateAcceleratorCommandInput,
218
242
  UpdateAcceleratorCommandOutput,
219
243
  } from "./commands/UpdateAcceleratorCommand";
244
+ import {
245
+ UpdateCrossAccountAttachmentCommandInput,
246
+ UpdateCrossAccountAttachmentCommandOutput,
247
+ } from "./commands/UpdateCrossAccountAttachmentCommand";
220
248
  import {
221
249
  UpdateCustomRoutingAcceleratorAttributesCommandInput,
222
250
  UpdateCustomRoutingAcceleratorAttributesCommandOutput,
@@ -254,12 +282,14 @@ export type ServiceInputTypes =
254
282
  | AdvertiseByoipCidrCommandInput
255
283
  | AllowCustomRoutingTrafficCommandInput
256
284
  | CreateAcceleratorCommandInput
285
+ | CreateCrossAccountAttachmentCommandInput
257
286
  | CreateCustomRoutingAcceleratorCommandInput
258
287
  | CreateCustomRoutingEndpointGroupCommandInput
259
288
  | CreateCustomRoutingListenerCommandInput
260
289
  | CreateEndpointGroupCommandInput
261
290
  | CreateListenerCommandInput
262
291
  | DeleteAcceleratorCommandInput
292
+ | DeleteCrossAccountAttachmentCommandInput
263
293
  | DeleteCustomRoutingAcceleratorCommandInput
264
294
  | DeleteCustomRoutingEndpointGroupCommandInput
265
295
  | DeleteCustomRoutingListenerCommandInput
@@ -269,6 +299,7 @@ export type ServiceInputTypes =
269
299
  | DeprovisionByoipCidrCommandInput
270
300
  | DescribeAcceleratorAttributesCommandInput
271
301
  | DescribeAcceleratorCommandInput
302
+ | DescribeCrossAccountAttachmentCommandInput
272
303
  | DescribeCustomRoutingAcceleratorAttributesCommandInput
273
304
  | DescribeCustomRoutingAcceleratorCommandInput
274
305
  | DescribeCustomRoutingEndpointGroupCommandInput
@@ -277,6 +308,9 @@ export type ServiceInputTypes =
277
308
  | DescribeListenerCommandInput
278
309
  | ListAcceleratorsCommandInput
279
310
  | ListByoipCidrsCommandInput
311
+ | ListCrossAccountAttachmentsCommandInput
312
+ | ListCrossAccountResourceAccountsCommandInput
313
+ | ListCrossAccountResourcesCommandInput
280
314
  | ListCustomRoutingAcceleratorsCommandInput
281
315
  | ListCustomRoutingEndpointGroupsCommandInput
282
316
  | ListCustomRoutingListenersCommandInput
@@ -292,6 +326,7 @@ export type ServiceInputTypes =
292
326
  | UntagResourceCommandInput
293
327
  | UpdateAcceleratorAttributesCommandInput
294
328
  | UpdateAcceleratorCommandInput
329
+ | UpdateCrossAccountAttachmentCommandInput
295
330
  | UpdateCustomRoutingAcceleratorAttributesCommandInput
296
331
  | UpdateCustomRoutingAcceleratorCommandInput
297
332
  | UpdateCustomRoutingListenerCommandInput
@@ -304,12 +339,14 @@ export type ServiceOutputTypes =
304
339
  | AdvertiseByoipCidrCommandOutput
305
340
  | AllowCustomRoutingTrafficCommandOutput
306
341
  | CreateAcceleratorCommandOutput
342
+ | CreateCrossAccountAttachmentCommandOutput
307
343
  | CreateCustomRoutingAcceleratorCommandOutput
308
344
  | CreateCustomRoutingEndpointGroupCommandOutput
309
345
  | CreateCustomRoutingListenerCommandOutput
310
346
  | CreateEndpointGroupCommandOutput
311
347
  | CreateListenerCommandOutput
312
348
  | DeleteAcceleratorCommandOutput
349
+ | DeleteCrossAccountAttachmentCommandOutput
313
350
  | DeleteCustomRoutingAcceleratorCommandOutput
314
351
  | DeleteCustomRoutingEndpointGroupCommandOutput
315
352
  | DeleteCustomRoutingListenerCommandOutput
@@ -319,6 +356,7 @@ export type ServiceOutputTypes =
319
356
  | DeprovisionByoipCidrCommandOutput
320
357
  | DescribeAcceleratorAttributesCommandOutput
321
358
  | DescribeAcceleratorCommandOutput
359
+ | DescribeCrossAccountAttachmentCommandOutput
322
360
  | DescribeCustomRoutingAcceleratorAttributesCommandOutput
323
361
  | DescribeCustomRoutingAcceleratorCommandOutput
324
362
  | DescribeCustomRoutingEndpointGroupCommandOutput
@@ -327,6 +365,9 @@ export type ServiceOutputTypes =
327
365
  | DescribeListenerCommandOutput
328
366
  | ListAcceleratorsCommandOutput
329
367
  | ListByoipCidrsCommandOutput
368
+ | ListCrossAccountAttachmentsCommandOutput
369
+ | ListCrossAccountResourceAccountsCommandOutput
370
+ | ListCrossAccountResourcesCommandOutput
330
371
  | ListCustomRoutingAcceleratorsCommandOutput
331
372
  | ListCustomRoutingEndpointGroupsCommandOutput
332
373
  | ListCustomRoutingListenersCommandOutput
@@ -342,6 +383,7 @@ export type ServiceOutputTypes =
342
383
  | UntagResourceCommandOutput
343
384
  | UpdateAcceleratorAttributesCommandOutput
344
385
  | UpdateAcceleratorCommandOutput
386
+ | UpdateCrossAccountAttachmentCommandOutput
345
387
  | UpdateCustomRoutingAcceleratorAttributesCommandOutput
346
388
  | UpdateCustomRoutingAcceleratorCommandOutput
347
389
  | UpdateCustomRoutingListenerCommandOutput
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ GlobalAcceleratorClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../GlobalAcceleratorClient";
14
+ import {
15
+ CreateCrossAccountAttachmentRequest,
16
+ CreateCrossAccountAttachmentResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateCrossAccountAttachmentCommandInput
20
+ extends CreateCrossAccountAttachmentRequest {}
21
+ export interface CreateCrossAccountAttachmentCommandOutput
22
+ extends CreateCrossAccountAttachmentResponse,
23
+ __MetadataBearer {}
24
+ export declare class CreateCrossAccountAttachmentCommand extends $Command<
25
+ CreateCrossAccountAttachmentCommandInput,
26
+ CreateCrossAccountAttachmentCommandOutput,
27
+ GlobalAcceleratorClientResolvedConfig
28
+ > {
29
+ readonly input: CreateCrossAccountAttachmentCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: CreateCrossAccountAttachmentCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: GlobalAcceleratorClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ CreateCrossAccountAttachmentCommandInput,
38
+ CreateCrossAccountAttachmentCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ GlobalAcceleratorClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../GlobalAcceleratorClient";
14
+ import { DeleteCrossAccountAttachmentRequest } from "../models/models_0";
15
+ export { __MetadataBearer, $Command };
16
+ export interface DeleteCrossAccountAttachmentCommandInput
17
+ extends DeleteCrossAccountAttachmentRequest {}
18
+ export interface DeleteCrossAccountAttachmentCommandOutput
19
+ extends __MetadataBearer {}
20
+ export declare class DeleteCrossAccountAttachmentCommand extends $Command<
21
+ DeleteCrossAccountAttachmentCommandInput,
22
+ DeleteCrossAccountAttachmentCommandOutput,
23
+ GlobalAcceleratorClientResolvedConfig
24
+ > {
25
+ readonly input: DeleteCrossAccountAttachmentCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: DeleteCrossAccountAttachmentCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: GlobalAcceleratorClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<
33
+ DeleteCrossAccountAttachmentCommandInput,
34
+ DeleteCrossAccountAttachmentCommandOutput
35
+ >;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ GlobalAcceleratorClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../GlobalAcceleratorClient";
14
+ import {
15
+ DescribeCrossAccountAttachmentRequest,
16
+ DescribeCrossAccountAttachmentResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DescribeCrossAccountAttachmentCommandInput
20
+ extends DescribeCrossAccountAttachmentRequest {}
21
+ export interface DescribeCrossAccountAttachmentCommandOutput
22
+ extends DescribeCrossAccountAttachmentResponse,
23
+ __MetadataBearer {}
24
+ export declare class DescribeCrossAccountAttachmentCommand extends $Command<
25
+ DescribeCrossAccountAttachmentCommandInput,
26
+ DescribeCrossAccountAttachmentCommandOutput,
27
+ GlobalAcceleratorClientResolvedConfig
28
+ > {
29
+ readonly input: DescribeCrossAccountAttachmentCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DescribeCrossAccountAttachmentCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: GlobalAcceleratorClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ DescribeCrossAccountAttachmentCommandInput,
38
+ DescribeCrossAccountAttachmentCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ GlobalAcceleratorClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../GlobalAcceleratorClient";
14
+ import {
15
+ ListCrossAccountAttachmentsRequest,
16
+ ListCrossAccountAttachmentsResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListCrossAccountAttachmentsCommandInput
20
+ extends ListCrossAccountAttachmentsRequest {}
21
+ export interface ListCrossAccountAttachmentsCommandOutput
22
+ extends ListCrossAccountAttachmentsResponse,
23
+ __MetadataBearer {}
24
+ export declare class ListCrossAccountAttachmentsCommand extends $Command<
25
+ ListCrossAccountAttachmentsCommandInput,
26
+ ListCrossAccountAttachmentsCommandOutput,
27
+ GlobalAcceleratorClientResolvedConfig
28
+ > {
29
+ readonly input: ListCrossAccountAttachmentsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListCrossAccountAttachmentsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: GlobalAcceleratorClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListCrossAccountAttachmentsCommandInput,
38
+ ListCrossAccountAttachmentsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ GlobalAcceleratorClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../GlobalAcceleratorClient";
14
+ import {
15
+ ListCrossAccountResourceAccountsRequest,
16
+ ListCrossAccountResourceAccountsResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListCrossAccountResourceAccountsCommandInput
20
+ extends ListCrossAccountResourceAccountsRequest {}
21
+ export interface ListCrossAccountResourceAccountsCommandOutput
22
+ extends ListCrossAccountResourceAccountsResponse,
23
+ __MetadataBearer {}
24
+ export declare class ListCrossAccountResourceAccountsCommand extends $Command<
25
+ ListCrossAccountResourceAccountsCommandInput,
26
+ ListCrossAccountResourceAccountsCommandOutput,
27
+ GlobalAcceleratorClientResolvedConfig
28
+ > {
29
+ readonly input: ListCrossAccountResourceAccountsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListCrossAccountResourceAccountsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: GlobalAcceleratorClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListCrossAccountResourceAccountsCommandInput,
38
+ ListCrossAccountResourceAccountsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ GlobalAcceleratorClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../GlobalAcceleratorClient";
14
+ import {
15
+ ListCrossAccountResourcesRequest,
16
+ ListCrossAccountResourcesResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListCrossAccountResourcesCommandInput
20
+ extends ListCrossAccountResourcesRequest {}
21
+ export interface ListCrossAccountResourcesCommandOutput
22
+ extends ListCrossAccountResourcesResponse,
23
+ __MetadataBearer {}
24
+ export declare class ListCrossAccountResourcesCommand extends $Command<
25
+ ListCrossAccountResourcesCommandInput,
26
+ ListCrossAccountResourcesCommandOutput,
27
+ GlobalAcceleratorClientResolvedConfig
28
+ > {
29
+ readonly input: ListCrossAccountResourcesCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListCrossAccountResourcesCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: GlobalAcceleratorClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListCrossAccountResourcesCommandInput,
38
+ ListCrossAccountResourcesCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ GlobalAcceleratorClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../GlobalAcceleratorClient";
14
+ import {
15
+ UpdateCrossAccountAttachmentRequest,
16
+ UpdateCrossAccountAttachmentResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface UpdateCrossAccountAttachmentCommandInput
20
+ extends UpdateCrossAccountAttachmentRequest {}
21
+ export interface UpdateCrossAccountAttachmentCommandOutput
22
+ extends UpdateCrossAccountAttachmentResponse,
23
+ __MetadataBearer {}
24
+ export declare class UpdateCrossAccountAttachmentCommand extends $Command<
25
+ UpdateCrossAccountAttachmentCommandInput,
26
+ UpdateCrossAccountAttachmentCommandOutput,
27
+ GlobalAcceleratorClientResolvedConfig
28
+ > {
29
+ readonly input: UpdateCrossAccountAttachmentCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: UpdateCrossAccountAttachmentCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: GlobalAcceleratorClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ UpdateCrossAccountAttachmentCommandInput,
38
+ UpdateCrossAccountAttachmentCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -3,12 +3,14 @@ export * from "./AddEndpointsCommand";
3
3
  export * from "./AdvertiseByoipCidrCommand";
4
4
  export * from "./AllowCustomRoutingTrafficCommand";
5
5
  export * from "./CreateAcceleratorCommand";
6
+ export * from "./CreateCrossAccountAttachmentCommand";
6
7
  export * from "./CreateCustomRoutingAcceleratorCommand";
7
8
  export * from "./CreateCustomRoutingEndpointGroupCommand";
8
9
  export * from "./CreateCustomRoutingListenerCommand";
9
10
  export * from "./CreateEndpointGroupCommand";
10
11
  export * from "./CreateListenerCommand";
11
12
  export * from "./DeleteAcceleratorCommand";
13
+ export * from "./DeleteCrossAccountAttachmentCommand";
12
14
  export * from "./DeleteCustomRoutingAcceleratorCommand";
13
15
  export * from "./DeleteCustomRoutingEndpointGroupCommand";
14
16
  export * from "./DeleteCustomRoutingListenerCommand";
@@ -18,6 +20,7 @@ export * from "./DenyCustomRoutingTrafficCommand";
18
20
  export * from "./DeprovisionByoipCidrCommand";
19
21
  export * from "./DescribeAcceleratorAttributesCommand";
20
22
  export * from "./DescribeAcceleratorCommand";
23
+ export * from "./DescribeCrossAccountAttachmentCommand";
21
24
  export * from "./DescribeCustomRoutingAcceleratorAttributesCommand";
22
25
  export * from "./DescribeCustomRoutingAcceleratorCommand";
23
26
  export * from "./DescribeCustomRoutingEndpointGroupCommand";
@@ -26,6 +29,9 @@ export * from "./DescribeEndpointGroupCommand";
26
29
  export * from "./DescribeListenerCommand";
27
30
  export * from "./ListAcceleratorsCommand";
28
31
  export * from "./ListByoipCidrsCommand";
32
+ export * from "./ListCrossAccountAttachmentsCommand";
33
+ export * from "./ListCrossAccountResourceAccountsCommand";
34
+ export * from "./ListCrossAccountResourcesCommand";
29
35
  export * from "./ListCustomRoutingAcceleratorsCommand";
30
36
  export * from "./ListCustomRoutingEndpointGroupsCommand";
31
37
  export * from "./ListCustomRoutingListenersCommand";
@@ -41,6 +47,7 @@ export * from "./TagResourceCommand";
41
47
  export * from "./UntagResourceCommand";
42
48
  export * from "./UpdateAcceleratorAttributesCommand";
43
49
  export * from "./UpdateAcceleratorCommand";
50
+ export * from "./UpdateCrossAccountAttachmentCommand";
44
51
  export * from "./UpdateCustomRoutingAcceleratorAttributesCommand";
45
52
  export * from "./UpdateCustomRoutingAcceleratorCommand";
46
53
  export * from "./UpdateCustomRoutingListenerCommand";
@@ -4,4 +4,5 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export * from "./commands";
5
5
  export * from "./pagination";
6
6
  export * from "./models";
7
+ import "@aws-sdk/util-endpoints";
7
8
  export { GlobalAcceleratorServiceException } from "./models/GlobalAcceleratorServiceException";