@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.
- package/README.md +57 -1
- package/dist-cjs/GlobalAccelerator.js +14 -0
- package/dist-cjs/commands/CreateCrossAccountAttachmentCommand.js +51 -0
- package/dist-cjs/commands/DeleteCrossAccountAttachmentCommand.js +51 -0
- package/dist-cjs/commands/DescribeCrossAccountAttachmentCommand.js +51 -0
- package/dist-cjs/commands/ListCrossAccountAttachmentsCommand.js +51 -0
- package/dist-cjs/commands/ListCrossAccountResourceAccountsCommand.js +51 -0
- package/dist-cjs/commands/ListCrossAccountResourcesCommand.js +51 -0
- package/dist-cjs/commands/UpdateCrossAccountAttachmentCommand.js +51 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/endpoint/endpointResolver.js +1 -1
- package/dist-cjs/index.js +1 -0
- package/dist-cjs/models/models_0.js +15 -1
- package/dist-cjs/pagination/ListCrossAccountAttachmentsPaginator.js +29 -0
- package/dist-cjs/pagination/ListCrossAccountResourcesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +409 -2
- package/dist-es/GlobalAccelerator.js +14 -0
- package/dist-es/commands/CreateCrossAccountAttachmentCommand.js +47 -0
- package/dist-es/commands/DeleteCrossAccountAttachmentCommand.js +47 -0
- package/dist-es/commands/DescribeCrossAccountAttachmentCommand.js +47 -0
- package/dist-es/commands/ListCrossAccountAttachmentsCommand.js +47 -0
- package/dist-es/commands/ListCrossAccountResourceAccountsCommand.js +47 -0
- package/dist-es/commands/ListCrossAccountResourcesCommand.js +47 -0
- package/dist-es/commands/UpdateCrossAccountAttachmentCommand.js +47 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/index.js +1 -0
- package/dist-es/models/models_0.js +13 -0
- package/dist-es/pagination/ListCrossAccountAttachmentsPaginator.js +25 -0
- package/dist-es/pagination/ListCrossAccountResourcesPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +393 -1
- package/dist-types/GlobalAccelerator.d.ts +50 -1
- package/dist-types/GlobalAcceleratorClient.d.ts +10 -3
- package/dist-types/commands/AddCustomRoutingEndpointsCommand.d.ts +1 -0
- package/dist-types/commands/AddEndpointsCommand.d.ts +1 -0
- package/dist-types/commands/CreateCrossAccountAttachmentCommand.d.ts +126 -0
- package/dist-types/commands/CreateEndpointGroupCommand.d.ts +1 -0
- package/dist-types/commands/DeleteCrossAccountAttachmentCommand.d.ts +103 -0
- package/dist-types/commands/DescribeCrossAccountAttachmentCommand.d.ts +99 -0
- package/dist-types/commands/ListCrossAccountAttachmentsCommand.d.ts +103 -0
- package/dist-types/commands/ListCrossAccountResourceAccountsCommand.d.ts +79 -0
- package/dist-types/commands/ListCrossAccountResourcesCommand.d.ts +97 -0
- package/dist-types/commands/UpdateCrossAccountAttachmentCommand.d.ts +141 -0
- package/dist-types/commands/UpdateEndpointGroupCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/index.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +316 -4
- package/dist-types/pagination/ListCrossAccountAttachmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCrossAccountResourcesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +63 -0
- package/dist-types/ts3.4/GlobalAccelerator.d.ts +119 -0
- package/dist-types/ts3.4/GlobalAcceleratorClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateCrossAccountAttachmentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteCrossAccountAttachmentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeCrossAccountAttachmentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCrossAccountAttachmentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCrossAccountResourceAccountsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCrossAccountResourcesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateCrossAccountAttachmentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +78 -0
- package/dist-types/ts3.4/pagination/ListCrossAccountAttachmentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCrossAccountResourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +84 -0
- package/package.json +7 -6
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
|
|
5
|
+
import { ListCrossAccountResourcesRequest, ListCrossAccountResourcesResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListCrossAccountResourcesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListCrossAccountResourcesCommandInput extends ListCrossAccountResourcesRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListCrossAccountResourcesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListCrossAccountResourcesCommandOutput extends ListCrossAccountResourcesResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>List the cross-account endpoints available to add to an accelerator.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { GlobalAcceleratorClient, ListCrossAccountResourcesCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
31
|
+
* // const { GlobalAcceleratorClient, ListCrossAccountResourcesCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
32
|
+
* const client = new GlobalAcceleratorClient(config);
|
|
33
|
+
* const input = { // ListCrossAccountResourcesRequest
|
|
34
|
+
* AcceleratorArn: "STRING_VALUE",
|
|
35
|
+
* ResourceOwnerAwsAccountId: "STRING_VALUE", // required
|
|
36
|
+
* MaxResults: Number("int"),
|
|
37
|
+
* NextToken: "STRING_VALUE",
|
|
38
|
+
* };
|
|
39
|
+
* const command = new ListCrossAccountResourcesCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // { // ListCrossAccountResourcesResponse
|
|
42
|
+
* // CrossAccountResources: [ // CrossAccountResources
|
|
43
|
+
* // { // CrossAccountResource
|
|
44
|
+
* // EndpointId: "STRING_VALUE",
|
|
45
|
+
* // AttachmentArn: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // NextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
51
|
+
* ```
|
|
52
|
+
*
|
|
53
|
+
* @param ListCrossAccountResourcesCommandInput - {@link ListCrossAccountResourcesCommandInput}
|
|
54
|
+
* @returns {@link ListCrossAccountResourcesCommandOutput}
|
|
55
|
+
* @see {@link ListCrossAccountResourcesCommandInput} for command's `input` shape.
|
|
56
|
+
* @see {@link ListCrossAccountResourcesCommandOutput} for command's `response` shape.
|
|
57
|
+
* @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link AcceleratorNotFoundException} (client fault)
|
|
60
|
+
* <p>The accelerator that you specified doesn't exist.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
63
|
+
* <p>You don't have access permission.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link InternalServiceErrorException} (server fault)
|
|
66
|
+
* <p>There was an internal error for Global Accelerator.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link InvalidArgumentException} (client fault)
|
|
69
|
+
* <p>An argument that you specified is invalid.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
72
|
+
* <p>There isn't another item to return.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
76
|
+
*
|
|
77
|
+
*/
|
|
78
|
+
export declare class ListCrossAccountResourcesCommand extends $Command<ListCrossAccountResourcesCommandInput, ListCrossAccountResourcesCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
79
|
+
readonly input: ListCrossAccountResourcesCommandInput;
|
|
80
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
constructor(input: ListCrossAccountResourcesCommandInput);
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
88
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCrossAccountResourcesCommandInput, ListCrossAccountResourcesCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
92
|
+
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
96
|
+
private deserialize;
|
|
97
|
+
}
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
|
|
5
|
+
import { UpdateCrossAccountAttachmentRequest, UpdateCrossAccountAttachmentResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateCrossAccountAttachmentCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateCrossAccountAttachmentCommandInput extends UpdateCrossAccountAttachmentRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateCrossAccountAttachmentCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateCrossAccountAttachmentCommandOutput extends UpdateCrossAccountAttachmentResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Update a cross-account attachment to add or remove principals or resources. When you update
|
|
27
|
+
* an attachment to remove a principal (account ID or accelerator) or a resource, Global Accelerator
|
|
28
|
+
* revokes the permission for specific resources by doing the following:</p>
|
|
29
|
+
* <ul>
|
|
30
|
+
* <li>
|
|
31
|
+
* <p>If the principal is an account ID, Global Accelerator reviews every accelerator in the account
|
|
32
|
+
* and removes cross-account endpoints from all accelerators.</p>
|
|
33
|
+
* </li>
|
|
34
|
+
* <li>
|
|
35
|
+
* <p>If the principal is an accelerator, Global Accelerator reviews just that accelerator
|
|
36
|
+
* and removes cross-account endpoints from it.</p>
|
|
37
|
+
* </li>
|
|
38
|
+
* </ul>
|
|
39
|
+
* <p>If there are overlapping permissions provided by multiple cross-account attachments,
|
|
40
|
+
* Global Accelerator only removes endpoints if there are no current cross-account attachments that provide
|
|
41
|
+
* access permission. For example, if you delete a cross-account attachment that lists an
|
|
42
|
+
* accelerator as a principal, but another cross-account attachment includes the account ID
|
|
43
|
+
* that owns that accelerator, endpoints will not be removed from the accelerator.</p>
|
|
44
|
+
* @example
|
|
45
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
46
|
+
* ```javascript
|
|
47
|
+
* import { GlobalAcceleratorClient, UpdateCrossAccountAttachmentCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
48
|
+
* // const { GlobalAcceleratorClient, UpdateCrossAccountAttachmentCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
49
|
+
* const client = new GlobalAcceleratorClient(config);
|
|
50
|
+
* const input = { // UpdateCrossAccountAttachmentRequest
|
|
51
|
+
* AttachmentArn: "STRING_VALUE", // required
|
|
52
|
+
* Name: "STRING_VALUE",
|
|
53
|
+
* AddPrincipals: [ // Principals
|
|
54
|
+
* "STRING_VALUE",
|
|
55
|
+
* ],
|
|
56
|
+
* RemovePrincipals: [
|
|
57
|
+
* "STRING_VALUE",
|
|
58
|
+
* ],
|
|
59
|
+
* AddResources: [ // Resources
|
|
60
|
+
* { // Resource
|
|
61
|
+
* EndpointId: "STRING_VALUE", // required
|
|
62
|
+
* Region: "STRING_VALUE",
|
|
63
|
+
* },
|
|
64
|
+
* ],
|
|
65
|
+
* RemoveResources: [
|
|
66
|
+
* {
|
|
67
|
+
* EndpointId: "STRING_VALUE", // required
|
|
68
|
+
* Region: "STRING_VALUE",
|
|
69
|
+
* },
|
|
70
|
+
* ],
|
|
71
|
+
* };
|
|
72
|
+
* const command = new UpdateCrossAccountAttachmentCommand(input);
|
|
73
|
+
* const response = await client.send(command);
|
|
74
|
+
* // { // UpdateCrossAccountAttachmentResponse
|
|
75
|
+
* // CrossAccountAttachment: { // Attachment
|
|
76
|
+
* // AttachmentArn: "STRING_VALUE",
|
|
77
|
+
* // Name: "STRING_VALUE",
|
|
78
|
+
* // Principals: [ // Principals
|
|
79
|
+
* // "STRING_VALUE",
|
|
80
|
+
* // ],
|
|
81
|
+
* // Resources: [ // Resources
|
|
82
|
+
* // { // Resource
|
|
83
|
+
* // EndpointId: "STRING_VALUE", // required
|
|
84
|
+
* // Region: "STRING_VALUE",
|
|
85
|
+
* // },
|
|
86
|
+
* // ],
|
|
87
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
88
|
+
* // CreatedTime: new Date("TIMESTAMP"),
|
|
89
|
+
* // },
|
|
90
|
+
* // };
|
|
91
|
+
*
|
|
92
|
+
* ```
|
|
93
|
+
*
|
|
94
|
+
* @param UpdateCrossAccountAttachmentCommandInput - {@link UpdateCrossAccountAttachmentCommandInput}
|
|
95
|
+
* @returns {@link UpdateCrossAccountAttachmentCommandOutput}
|
|
96
|
+
* @see {@link UpdateCrossAccountAttachmentCommandInput} for command's `input` shape.
|
|
97
|
+
* @see {@link UpdateCrossAccountAttachmentCommandOutput} for command's `response` shape.
|
|
98
|
+
* @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
101
|
+
* <p>You don't have access permission.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link AttachmentNotFoundException} (client fault)
|
|
104
|
+
* <p>No cross-account attachment was found.</p>
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link InternalServiceErrorException} (server fault)
|
|
107
|
+
* <p>There was an internal error for Global Accelerator.</p>
|
|
108
|
+
*
|
|
109
|
+
* @throws {@link InvalidArgumentException} (client fault)
|
|
110
|
+
* <p>An argument that you specified is invalid.</p>
|
|
111
|
+
*
|
|
112
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
113
|
+
* <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
|
|
114
|
+
*
|
|
115
|
+
* @throws {@link TransactionInProgressException} (client fault)
|
|
116
|
+
* <p>There's already a transaction in progress. Another transaction can't be processed.</p>
|
|
117
|
+
*
|
|
118
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
119
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
120
|
+
*
|
|
121
|
+
*/
|
|
122
|
+
export declare class UpdateCrossAccountAttachmentCommand extends $Command<UpdateCrossAccountAttachmentCommandInput, UpdateCrossAccountAttachmentCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
123
|
+
readonly input: UpdateCrossAccountAttachmentCommandInput;
|
|
124
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
125
|
+
/**
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
constructor(input: UpdateCrossAccountAttachmentCommandInput);
|
|
129
|
+
/**
|
|
130
|
+
* @internal
|
|
131
|
+
*/
|
|
132
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCrossAccountAttachmentCommandInput, UpdateCrossAccountAttachmentCommandOutput>;
|
|
133
|
+
/**
|
|
134
|
+
* @internal
|
|
135
|
+
*/
|
|
136
|
+
private serialize;
|
|
137
|
+
/**
|
|
138
|
+
* @internal
|
|
139
|
+
*/
|
|
140
|
+
private deserialize;
|
|
141
|
+
}
|
|
@@ -37,6 +37,7 @@ export interface UpdateEndpointGroupCommandOutput extends UpdateEndpointGroupRes
|
|
|
37
37
|
* EndpointId: "STRING_VALUE",
|
|
38
38
|
* Weight: Number("int"),
|
|
39
39
|
* ClientIPPreservationEnabled: true || false,
|
|
40
|
+
* AttachmentArn: "STRING_VALUE",
|
|
40
41
|
* },
|
|
41
42
|
* ],
|
|
42
43
|
* TrafficDialPercentage: Number("float"),
|
|
@@ -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";
|
package/dist-types/index.d.ts
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
* are anycast from the Amazon Web Services edge network. For IPv4, Global Accelerator provides two static IPv4 addresses. For dual-stack,
|
|
27
27
|
* Global Accelerator provides a total of four addresses: two static IPv4 addresses and two static IPv6 addresses.
|
|
28
28
|
* With a standard accelerator for IPv4, instead of using the addresses that Global Accelerator provides, you can configure
|
|
29
|
-
* these entry points to be IPv4 addresses from your own IP address ranges that you bring
|
|
29
|
+
* these entry points to be IPv4 addresses from your own IP address ranges that you bring to Global Accelerator (BYOIP). </p>
|
|
30
30
|
* <p>For a standard accelerator,
|
|
31
31
|
* they distribute incoming application traffic across multiple endpoint resources in multiple Amazon Web Services Regions , which increases
|
|
32
32
|
* the availability of your applications. Endpoints for standard accelerators can be Network Load Balancers, Application Load Balancers,
|
|
@@ -56,4 +56,5 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
56
56
|
export * from "./commands";
|
|
57
57
|
export * from "./pagination";
|
|
58
58
|
export * from "./models";
|
|
59
|
+
import "@aws-sdk/util-endpoints";
|
|
59
60
|
export { GlobalAcceleratorServiceException } from "./models/GlobalAcceleratorServiceException";
|