@aws-sdk/client-global-accelerator 3.300.0 → 3.303.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/models/models_0.js +55 -66
- package/dist-es/models/models_0.js +55 -66
- package/dist-types/commands/AddCustomRoutingEndpointsCommand.d.ts +3 -3
- package/dist-types/commands/AddEndpointsCommand.d.ts +3 -3
- package/dist-types/commands/AdvertiseByoipCidrCommand.d.ts +1 -1
- package/dist-types/commands/AllowCustomRoutingTrafficCommand.d.ts +3 -3
- package/dist-types/commands/CreateAcceleratorCommand.d.ts +4 -4
- package/dist-types/commands/CreateCustomRoutingAcceleratorCommand.d.ts +4 -4
- package/dist-types/commands/CreateCustomRoutingEndpointGroupCommand.d.ts +4 -4
- package/dist-types/commands/CreateCustomRoutingListenerCommand.d.ts +3 -3
- package/dist-types/commands/CreateEndpointGroupCommand.d.ts +5 -5
- package/dist-types/commands/CreateListenerCommand.d.ts +3 -3
- package/dist-types/commands/DeleteAcceleratorCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCustomRoutingAcceleratorCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCustomRoutingEndpointGroupCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCustomRoutingListenerCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEndpointGroupCommand.d.ts +1 -1
- package/dist-types/commands/DeleteListenerCommand.d.ts +1 -1
- package/dist-types/commands/DenyCustomRoutingTrafficCommand.d.ts +3 -3
- package/dist-types/commands/DeprovisionByoipCidrCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAcceleratorAttributesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAcceleratorCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCustomRoutingAcceleratorAttributesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCustomRoutingAcceleratorCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCustomRoutingEndpointGroupCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCustomRoutingListenerCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointGroupCommand.d.ts +1 -1
- package/dist-types/commands/DescribeListenerCommand.d.ts +1 -1
- package/dist-types/commands/ListAcceleratorsCommand.d.ts +1 -1
- package/dist-types/commands/ListByoipCidrsCommand.d.ts +1 -1
- package/dist-types/commands/ListCustomRoutingAcceleratorsCommand.d.ts +1 -1
- package/dist-types/commands/ListCustomRoutingEndpointGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListCustomRoutingListenersCommand.d.ts +1 -1
- package/dist-types/commands/ListCustomRoutingPortMappingsByDestinationCommand.d.ts +1 -1
- package/dist-types/commands/ListCustomRoutingPortMappingsCommand.d.ts +1 -1
- package/dist-types/commands/ListEndpointGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListListenersCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ProvisionByoipCidrCommand.d.ts +2 -2
- package/dist-types/commands/RemoveCustomRoutingEndpointsCommand.d.ts +2 -2
- package/dist-types/commands/RemoveEndpointsCommand.d.ts +3 -3
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateAcceleratorAttributesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAcceleratorCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCustomRoutingAcceleratorAttributesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCustomRoutingAcceleratorCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCustomRoutingListenerCommand.d.ts +3 -3
- package/dist-types/commands/UpdateEndpointGroupCommand.d.ts +5 -5
- package/dist-types/commands/UpdateListenerCommand.d.ts +3 -3
- package/dist-types/commands/WithdrawByoipCidrCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +110 -55
- package/dist-types/ts3.4/models/models_0.d.ts +74 -55
- package/package.json +34 -34
|
@@ -26,7 +26,7 @@ export interface DescribeCustomRoutingEndpointGroupCommandOutput extends Describ
|
|
|
26
26
|
* import { GlobalAcceleratorClient, DescribeCustomRoutingEndpointGroupCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
27
27
|
* // const { GlobalAcceleratorClient, DescribeCustomRoutingEndpointGroupCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
28
28
|
* const client = new GlobalAcceleratorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeCustomRoutingEndpointGroupRequest
|
|
30
30
|
* EndpointGroupArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeCustomRoutingEndpointGroupCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeCustomRoutingListenerCommandOutput extends DescribeCust
|
|
|
26
26
|
* import { GlobalAcceleratorClient, DescribeCustomRoutingListenerCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
27
27
|
* // const { GlobalAcceleratorClient, DescribeCustomRoutingListenerCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
28
28
|
* const client = new GlobalAcceleratorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeCustomRoutingListenerRequest
|
|
30
30
|
* ListenerArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeCustomRoutingListenerCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeEndpointGroupCommandOutput extends DescribeEndpointGrou
|
|
|
26
26
|
* import { GlobalAcceleratorClient, DescribeEndpointGroupCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
27
27
|
* // const { GlobalAcceleratorClient, DescribeEndpointGroupCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
28
28
|
* const client = new GlobalAcceleratorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeEndpointGroupRequest
|
|
30
30
|
* EndpointGroupArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeEndpointGroupCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeListenerCommandOutput extends DescribeListenerResponse,
|
|
|
26
26
|
* import { GlobalAcceleratorClient, DescribeListenerCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
27
27
|
* // const { GlobalAcceleratorClient, DescribeListenerCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
28
28
|
* const client = new GlobalAcceleratorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeListenerRequest
|
|
30
30
|
* ListenerArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeListenerCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListAcceleratorsCommandOutput extends ListAcceleratorsResponse,
|
|
|
26
26
|
* import { GlobalAcceleratorClient, ListAcceleratorsCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
27
27
|
* // const { GlobalAcceleratorClient, ListAcceleratorsCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
28
28
|
* const client = new GlobalAcceleratorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListAcceleratorsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -27,7 +27,7 @@ export interface ListByoipCidrsCommandOutput extends ListByoipCidrsResponse, __M
|
|
|
27
27
|
* import { GlobalAcceleratorClient, ListByoipCidrsCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
28
28
|
* // const { GlobalAcceleratorClient, ListByoipCidrsCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
29
29
|
* const client = new GlobalAcceleratorClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListByoipCidrsRequest
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListCustomRoutingAcceleratorsCommandOutput extends ListCustomRo
|
|
|
26
26
|
* import { GlobalAcceleratorClient, ListCustomRoutingAcceleratorsCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
27
27
|
* // const { GlobalAcceleratorClient, ListCustomRoutingAcceleratorsCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
28
28
|
* const client = new GlobalAcceleratorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListCustomRoutingAcceleratorsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListCustomRoutingEndpointGroupsCommandOutput extends ListCustom
|
|
|
26
26
|
* import { GlobalAcceleratorClient, ListCustomRoutingEndpointGroupsCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
27
27
|
* // const { GlobalAcceleratorClient, ListCustomRoutingEndpointGroupsCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
28
28
|
* const client = new GlobalAcceleratorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListCustomRoutingEndpointGroupsRequest
|
|
30
30
|
* ListenerArn: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListCustomRoutingListenersCommandOutput extends ListCustomRouti
|
|
|
26
26
|
* import { GlobalAcceleratorClient, ListCustomRoutingListenersCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
27
27
|
* // const { GlobalAcceleratorClient, ListCustomRoutingListenersCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
28
28
|
* const client = new GlobalAcceleratorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListCustomRoutingListenersRequest
|
|
30
30
|
* AcceleratorArn: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -29,7 +29,7 @@ export interface ListCustomRoutingPortMappingsByDestinationCommandOutput extends
|
|
|
29
29
|
* import { GlobalAcceleratorClient, ListCustomRoutingPortMappingsByDestinationCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
30
30
|
* // const { GlobalAcceleratorClient, ListCustomRoutingPortMappingsByDestinationCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
31
31
|
* const client = new GlobalAcceleratorClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListCustomRoutingPortMappingsByDestinationRequest
|
|
33
33
|
* EndpointId: "STRING_VALUE", // required
|
|
34
34
|
* DestinationAddress: "STRING_VALUE", // required
|
|
35
35
|
* MaxResults: Number("int"),
|
|
@@ -34,7 +34,7 @@ export interface ListCustomRoutingPortMappingsCommandOutput extends ListCustomRo
|
|
|
34
34
|
* import { GlobalAcceleratorClient, ListCustomRoutingPortMappingsCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
35
35
|
* // const { GlobalAcceleratorClient, ListCustomRoutingPortMappingsCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
36
36
|
* const client = new GlobalAcceleratorClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // ListCustomRoutingPortMappingsRequest
|
|
38
38
|
* AcceleratorArn: "STRING_VALUE", // required
|
|
39
39
|
* EndpointGroupArn: "STRING_VALUE",
|
|
40
40
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListEndpointGroupsCommandOutput extends ListEndpointGroupsRespo
|
|
|
26
26
|
* import { GlobalAcceleratorClient, ListEndpointGroupsCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
27
27
|
* // const { GlobalAcceleratorClient, ListEndpointGroupsCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
28
28
|
* const client = new GlobalAcceleratorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListEndpointGroupsRequest
|
|
30
30
|
* ListenerArn: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListListenersCommandOutput extends ListListenersResponse, __Met
|
|
|
26
26
|
* import { GlobalAcceleratorClient, ListListenersCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
27
27
|
* // const { GlobalAcceleratorClient, ListListenersCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
28
28
|
* const client = new GlobalAcceleratorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListListenersRequest
|
|
30
30
|
* AcceleratorArn: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
28
28
|
* import { GlobalAcceleratorClient, ListTagsForResourceCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
29
29
|
* // const { GlobalAcceleratorClient, ListTagsForResourceCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
30
30
|
* const client = new GlobalAcceleratorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListTagsForResourceRequest
|
|
32
32
|
* ResourceArn: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -31,9 +31,9 @@ export interface ProvisionByoipCidrCommandOutput extends ProvisionByoipCidrRespo
|
|
|
31
31
|
* import { GlobalAcceleratorClient, ProvisionByoipCidrCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
32
32
|
* // const { GlobalAcceleratorClient, ProvisionByoipCidrCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
33
33
|
* const client = new GlobalAcceleratorClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // ProvisionByoipCidrRequest
|
|
35
35
|
* Cidr: "STRING_VALUE", // required
|
|
36
|
-
* CidrAuthorizationContext: {
|
|
36
|
+
* CidrAuthorizationContext: { // CidrAuthorizationContext
|
|
37
37
|
* Message: "STRING_VALUE", // required
|
|
38
38
|
* Signature: "STRING_VALUE", // required
|
|
39
39
|
* },
|
|
@@ -26,8 +26,8 @@ export interface RemoveCustomRoutingEndpointsCommandOutput extends __MetadataBea
|
|
|
26
26
|
* import { GlobalAcceleratorClient, RemoveCustomRoutingEndpointsCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
27
27
|
* // const { GlobalAcceleratorClient, RemoveCustomRoutingEndpointsCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
28
28
|
* const client = new GlobalAcceleratorClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* EndpointIds: [ // required
|
|
29
|
+
* const input = { // RemoveCustomRoutingEndpointsRequest
|
|
30
|
+
* EndpointIds: [ // EndpointIds // required
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* EndpointGroupArn: "STRING_VALUE", // required
|
|
@@ -42,9 +42,9 @@ export interface RemoveEndpointsCommandOutput extends __MetadataBearer {
|
|
|
42
42
|
* import { GlobalAcceleratorClient, RemoveEndpointsCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
43
43
|
* // const { GlobalAcceleratorClient, RemoveEndpointsCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
44
44
|
* const client = new GlobalAcceleratorClient(config);
|
|
45
|
-
* const input = {
|
|
46
|
-
* EndpointIdentifiers: [ // required
|
|
47
|
-
* {
|
|
45
|
+
* const input = { // RemoveEndpointsRequest
|
|
46
|
+
* EndpointIdentifiers: [ // EndpointIdentifiers // required
|
|
47
|
+
* { // EndpointIdentifier
|
|
48
48
|
* EndpointId: "STRING_VALUE", // required
|
|
49
49
|
* ClientIPPreservationEnabled: true || false,
|
|
50
50
|
* },
|
|
@@ -28,10 +28,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
28
28
|
* import { GlobalAcceleratorClient, TagResourceCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
29
29
|
* // const { GlobalAcceleratorClient, TagResourceCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
30
30
|
* const client = new GlobalAcceleratorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // TagResourceRequest
|
|
32
32
|
* ResourceArn: "STRING_VALUE", // required
|
|
33
|
-
* Tags: [ // required
|
|
34
|
-
* {
|
|
33
|
+
* Tags: [ // Tags // required
|
|
34
|
+
* { // Tag
|
|
35
35
|
* Key: "STRING_VALUE", // required
|
|
36
36
|
* Value: "STRING_VALUE", // required
|
|
37
37
|
* },
|
|
@@ -29,9 +29,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
29
29
|
* import { GlobalAcceleratorClient, UntagResourceCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
30
30
|
* // const { GlobalAcceleratorClient, UntagResourceCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
31
31
|
* const client = new GlobalAcceleratorClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // UntagResourceRequest
|
|
33
33
|
* ResourceArn: "STRING_VALUE", // required
|
|
34
|
-
* TagKeys: [ // required
|
|
34
|
+
* TagKeys: [ // TagKeys // required
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
37
|
* };
|
|
@@ -26,7 +26,7 @@ export interface UpdateAcceleratorAttributesCommandOutput extends UpdateAccelera
|
|
|
26
26
|
* import { GlobalAcceleratorClient, UpdateAcceleratorAttributesCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
27
27
|
* // const { GlobalAcceleratorClient, UpdateAcceleratorAttributesCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
28
28
|
* const client = new GlobalAcceleratorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateAcceleratorAttributesRequest
|
|
30
30
|
* AcceleratorArn: "STRING_VALUE", // required
|
|
31
31
|
* FlowLogsEnabled: true || false,
|
|
32
32
|
* FlowLogsS3Bucket: "STRING_VALUE",
|
|
@@ -32,7 +32,7 @@ export interface UpdateAcceleratorCommandOutput extends UpdateAcceleratorRespons
|
|
|
32
32
|
* import { GlobalAcceleratorClient, UpdateAcceleratorCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
33
33
|
* // const { GlobalAcceleratorClient, UpdateAcceleratorCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
34
34
|
* const client = new GlobalAcceleratorClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // UpdateAcceleratorRequest
|
|
36
36
|
* AcceleratorArn: "STRING_VALUE", // required
|
|
37
37
|
* Name: "STRING_VALUE",
|
|
38
38
|
* IpAddressType: "IPV4" || "DUAL_STACK",
|
|
@@ -26,7 +26,7 @@ export interface UpdateCustomRoutingAcceleratorAttributesCommandOutput extends U
|
|
|
26
26
|
* import { GlobalAcceleratorClient, UpdateCustomRoutingAcceleratorAttributesCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
27
27
|
* // const { GlobalAcceleratorClient, UpdateCustomRoutingAcceleratorAttributesCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
28
28
|
* const client = new GlobalAcceleratorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateCustomRoutingAcceleratorAttributesRequest
|
|
30
30
|
* AcceleratorArn: "STRING_VALUE", // required
|
|
31
31
|
* FlowLogsEnabled: true || false,
|
|
32
32
|
* FlowLogsS3Bucket: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface UpdateCustomRoutingAcceleratorCommandOutput extends UpdateCusto
|
|
|
26
26
|
* import { GlobalAcceleratorClient, UpdateCustomRoutingAcceleratorCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
27
27
|
* // const { GlobalAcceleratorClient, UpdateCustomRoutingAcceleratorCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
28
28
|
* const client = new GlobalAcceleratorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateCustomRoutingAcceleratorRequest
|
|
30
30
|
* AcceleratorArn: "STRING_VALUE", // required
|
|
31
31
|
* Name: "STRING_VALUE",
|
|
32
32
|
* IpAddressType: "IPV4" || "DUAL_STACK",
|
|
@@ -26,10 +26,10 @@ export interface UpdateCustomRoutingListenerCommandOutput extends UpdateCustomRo
|
|
|
26
26
|
* import { GlobalAcceleratorClient, UpdateCustomRoutingListenerCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
27
27
|
* // const { GlobalAcceleratorClient, UpdateCustomRoutingListenerCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
28
28
|
* const client = new GlobalAcceleratorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateCustomRoutingListenerRequest
|
|
30
30
|
* ListenerArn: "STRING_VALUE", // required
|
|
31
|
-
* PortRanges: [ // required
|
|
32
|
-
* {
|
|
31
|
+
* PortRanges: [ // PortRanges // required
|
|
32
|
+
* { // PortRange
|
|
33
33
|
* FromPort: Number("int"),
|
|
34
34
|
* ToPort: Number("int"),
|
|
35
35
|
* },
|
|
@@ -26,10 +26,10 @@ export interface UpdateEndpointGroupCommandOutput extends UpdateEndpointGroupRes
|
|
|
26
26
|
* import { GlobalAcceleratorClient, UpdateEndpointGroupCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
27
27
|
* // const { GlobalAcceleratorClient, UpdateEndpointGroupCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
28
28
|
* const client = new GlobalAcceleratorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateEndpointGroupRequest
|
|
30
30
|
* EndpointGroupArn: "STRING_VALUE", // required
|
|
31
|
-
* EndpointConfigurations: [
|
|
32
|
-
* {
|
|
31
|
+
* EndpointConfigurations: [ // EndpointConfigurations
|
|
32
|
+
* { // EndpointConfiguration
|
|
33
33
|
* EndpointId: "STRING_VALUE",
|
|
34
34
|
* Weight: Number("int"),
|
|
35
35
|
* ClientIPPreservationEnabled: true || false,
|
|
@@ -41,8 +41,8 @@ export interface UpdateEndpointGroupCommandOutput extends UpdateEndpointGroupRes
|
|
|
41
41
|
* HealthCheckPath: "STRING_VALUE",
|
|
42
42
|
* HealthCheckIntervalSeconds: Number("int"),
|
|
43
43
|
* ThresholdCount: Number("int"),
|
|
44
|
-
* PortOverrides: [
|
|
45
|
-
* {
|
|
44
|
+
* PortOverrides: [ // PortOverrides
|
|
45
|
+
* { // PortOverride
|
|
46
46
|
* ListenerPort: Number("int"),
|
|
47
47
|
* EndpointPort: Number("int"),
|
|
48
48
|
* },
|
|
@@ -26,10 +26,10 @@ export interface UpdateListenerCommandOutput extends UpdateListenerResponse, __M
|
|
|
26
26
|
* import { GlobalAcceleratorClient, UpdateListenerCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
27
27
|
* // const { GlobalAcceleratorClient, UpdateListenerCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
28
28
|
* const client = new GlobalAcceleratorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateListenerRequest
|
|
30
30
|
* ListenerArn: "STRING_VALUE", // required
|
|
31
|
-
* PortRanges: [
|
|
32
|
-
* {
|
|
31
|
+
* PortRanges: [ // PortRanges
|
|
32
|
+
* { // PortRange
|
|
33
33
|
* FromPort: Number("int"),
|
|
34
34
|
* ToPort: Number("int"),
|
|
35
35
|
* },
|
|
@@ -32,7 +32,7 @@ export interface WithdrawByoipCidrCommandOutput extends WithdrawByoipCidrRespons
|
|
|
32
32
|
* import { GlobalAcceleratorClient, WithdrawByoipCidrCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
|
|
33
33
|
* // const { GlobalAcceleratorClient, WithdrawByoipCidrCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
|
|
34
34
|
* const client = new GlobalAcceleratorClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // WithdrawByoipCidrRequest
|
|
36
36
|
* Cidr: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
38
38
|
* const command = new WithdrawByoipCidrCommand(input);
|
|
@@ -20,18 +20,28 @@ export interface AcceleratorEvent {
|
|
|
20
20
|
}
|
|
21
21
|
/**
|
|
22
22
|
* @public
|
|
23
|
+
* @enum
|
|
23
24
|
*/
|
|
24
|
-
export declare
|
|
25
|
-
DUAL_STACK
|
|
26
|
-
IPV4
|
|
27
|
-
}
|
|
25
|
+
export declare const IpAddressType: {
|
|
26
|
+
readonly DUAL_STACK: "DUAL_STACK";
|
|
27
|
+
readonly IPV4: "IPV4";
|
|
28
|
+
};
|
|
28
29
|
/**
|
|
29
30
|
* @public
|
|
30
31
|
*/
|
|
31
|
-
export
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
* @enum
|
|
36
|
+
*/
|
|
37
|
+
export declare const IpAddressFamily: {
|
|
38
|
+
readonly IPv4: "IPv4";
|
|
39
|
+
readonly IPv6: "IPv6";
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export type IpAddressFamily = (typeof IpAddressFamily)[keyof typeof IpAddressFamily];
|
|
35
45
|
/**
|
|
36
46
|
* @public
|
|
37
47
|
* <p>A complex type for the set of IP addresses for an accelerator.</p>
|
|
@@ -54,11 +64,16 @@ export interface IpSet {
|
|
|
54
64
|
}
|
|
55
65
|
/**
|
|
56
66
|
* @public
|
|
67
|
+
* @enum
|
|
57
68
|
*/
|
|
58
|
-
export declare
|
|
59
|
-
DEPLOYED
|
|
60
|
-
IN_PROGRESS
|
|
61
|
-
}
|
|
69
|
+
export declare const AcceleratorStatus: {
|
|
70
|
+
readonly DEPLOYED: "DEPLOYED";
|
|
71
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
export type AcceleratorStatus = (typeof AcceleratorStatus)[keyof typeof AcceleratorStatus];
|
|
62
77
|
/**
|
|
63
78
|
* @public
|
|
64
79
|
* <p>An accelerator is a complex type that includes one or more listeners that process inbound connections and then direct
|
|
@@ -369,12 +384,17 @@ export interface AddEndpointsRequest {
|
|
|
369
384
|
}
|
|
370
385
|
/**
|
|
371
386
|
* @public
|
|
387
|
+
* @enum
|
|
372
388
|
*/
|
|
373
|
-
export declare
|
|
374
|
-
HEALTHY
|
|
375
|
-
INITIAL
|
|
376
|
-
UNHEALTHY
|
|
377
|
-
}
|
|
389
|
+
export declare const HealthState: {
|
|
390
|
+
readonly HEALTHY: "HEALTHY";
|
|
391
|
+
readonly INITIAL: "INITIAL";
|
|
392
|
+
readonly UNHEALTHY: "UNHEALTHY";
|
|
393
|
+
};
|
|
394
|
+
/**
|
|
395
|
+
* @public
|
|
396
|
+
*/
|
|
397
|
+
export type HealthState = (typeof HealthState)[keyof typeof HealthState];
|
|
378
398
|
/**
|
|
379
399
|
* @public
|
|
380
400
|
* <p>A complex type for an endpoint. Each endpoint group can include one or more endpoints, such as load
|
|
@@ -474,20 +494,25 @@ export interface ByoipCidrEvent {
|
|
|
474
494
|
}
|
|
475
495
|
/**
|
|
476
496
|
* @public
|
|
497
|
+
* @enum
|
|
477
498
|
*/
|
|
478
|
-
export declare
|
|
479
|
-
ADVERTISING
|
|
480
|
-
DEPROVISIONED
|
|
481
|
-
FAILED_ADVERTISING
|
|
482
|
-
FAILED_DEPROVISION
|
|
483
|
-
FAILED_PROVISION
|
|
484
|
-
FAILED_WITHDRAW
|
|
485
|
-
PENDING_ADVERTISING
|
|
486
|
-
PENDING_DEPROVISIONING
|
|
487
|
-
PENDING_PROVISIONING
|
|
488
|
-
PENDING_WITHDRAWING
|
|
489
|
-
READY
|
|
490
|
-
}
|
|
499
|
+
export declare const ByoipCidrState: {
|
|
500
|
+
readonly ADVERTISING: "ADVERTISING";
|
|
501
|
+
readonly DEPROVISIONED: "DEPROVISIONED";
|
|
502
|
+
readonly FAILED_ADVERTISING: "FAILED_ADVERTISING";
|
|
503
|
+
readonly FAILED_DEPROVISION: "FAILED_DEPROVISION";
|
|
504
|
+
readonly FAILED_PROVISION: "FAILED_PROVISION";
|
|
505
|
+
readonly FAILED_WITHDRAW: "FAILED_WITHDRAW";
|
|
506
|
+
readonly PENDING_ADVERTISING: "PENDING_ADVERTISING";
|
|
507
|
+
readonly PENDING_DEPROVISIONING: "PENDING_DEPROVISIONING";
|
|
508
|
+
readonly PENDING_PROVISIONING: "PENDING_PROVISIONING";
|
|
509
|
+
readonly PENDING_WITHDRAWING: "PENDING_WITHDRAWING";
|
|
510
|
+
readonly READY: "READY";
|
|
511
|
+
};
|
|
512
|
+
/**
|
|
513
|
+
* @public
|
|
514
|
+
*/
|
|
515
|
+
export type ByoipCidrState = (typeof ByoipCidrState)[keyof typeof ByoipCidrState];
|
|
491
516
|
/**
|
|
492
517
|
* @public
|
|
493
518
|
* <p>Information about an IP address range that is provisioned for use with your Amazon Web Services resources through
|
|
@@ -695,11 +720,16 @@ export interface CidrAuthorizationContext {
|
|
|
695
720
|
}
|
|
696
721
|
/**
|
|
697
722
|
* @public
|
|
723
|
+
* @enum
|
|
698
724
|
*/
|
|
699
|
-
export declare
|
|
700
|
-
NONE
|
|
701
|
-
SOURCE_IP
|
|
702
|
-
}
|
|
725
|
+
export declare const ClientAffinity: {
|
|
726
|
+
readonly NONE: "NONE";
|
|
727
|
+
readonly SOURCE_IP: "SOURCE_IP";
|
|
728
|
+
};
|
|
729
|
+
/**
|
|
730
|
+
* @public
|
|
731
|
+
*/
|
|
732
|
+
export type ClientAffinity = (typeof ClientAffinity)[keyof typeof ClientAffinity];
|
|
703
733
|
/**
|
|
704
734
|
* @public
|
|
705
735
|
* <p>A complex type that contains a <code>Tag</code> key and <code>Tag</code> value.</p>
|
|
@@ -815,11 +845,16 @@ export interface CreateCustomRoutingAcceleratorRequest {
|
|
|
815
845
|
}
|
|
816
846
|
/**
|
|
817
847
|
* @public
|
|
848
|
+
* @enum
|
|
818
849
|
*/
|
|
819
|
-
export declare
|
|
820
|
-
DEPLOYED
|
|
821
|
-
IN_PROGRESS
|
|
822
|
-
}
|
|
850
|
+
export declare const CustomRoutingAcceleratorStatus: {
|
|
851
|
+
readonly DEPLOYED: "DEPLOYED";
|
|
852
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
853
|
+
};
|
|
854
|
+
/**
|
|
855
|
+
* @public
|
|
856
|
+
*/
|
|
857
|
+
export type CustomRoutingAcceleratorStatus = (typeof CustomRoutingAcceleratorStatus)[keyof typeof CustomRoutingAcceleratorStatus];
|
|
823
858
|
/**
|
|
824
859
|
* @public
|
|
825
860
|
* <p>Attributes of a custom routing accelerator.</p>
|
|
@@ -883,11 +918,16 @@ export interface CreateCustomRoutingAcceleratorResponse {
|
|
|
883
918
|
}
|
|
884
919
|
/**
|
|
885
920
|
* @public
|
|
921
|
+
* @enum
|
|
886
922
|
*/
|
|
887
|
-
export declare
|
|
888
|
-
TCP
|
|
889
|
-
UDP
|
|
890
|
-
}
|
|
923
|
+
export declare const CustomRoutingProtocol: {
|
|
924
|
+
readonly TCP: "TCP";
|
|
925
|
+
readonly UDP: "UDP";
|
|
926
|
+
};
|
|
927
|
+
/**
|
|
928
|
+
* @public
|
|
929
|
+
*/
|
|
930
|
+
export type CustomRoutingProtocol = (typeof CustomRoutingProtocol)[keyof typeof CustomRoutingProtocol];
|
|
891
931
|
/**
|
|
892
932
|
* @public
|
|
893
933
|
* <p>For a custom routing accelerator, sets the port range and protocol for all endpoints (virtual
|
|
@@ -933,11 +973,16 @@ export interface CreateCustomRoutingEndpointGroupRequest {
|
|
|
933
973
|
}
|
|
934
974
|
/**
|
|
935
975
|
* @public
|
|
976
|
+
* @enum
|
|
936
977
|
*/
|
|
937
|
-
export declare
|
|
938
|
-
TCP
|
|
939
|
-
UDP
|
|
940
|
-
}
|
|
978
|
+
export declare const Protocol: {
|
|
979
|
+
readonly TCP: "TCP";
|
|
980
|
+
readonly UDP: "UDP";
|
|
981
|
+
};
|
|
982
|
+
/**
|
|
983
|
+
* @public
|
|
984
|
+
*/
|
|
985
|
+
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
941
986
|
/**
|
|
942
987
|
* @public
|
|
943
988
|
* <p>For a custom routing accelerator, describes the port range and protocol for all endpoints
|
|
@@ -1091,12 +1136,17 @@ export interface CreateCustomRoutingListenerResponse {
|
|
|
1091
1136
|
}
|
|
1092
1137
|
/**
|
|
1093
1138
|
* @public
|
|
1139
|
+
* @enum
|
|
1094
1140
|
*/
|
|
1095
|
-
export declare
|
|
1096
|
-
HTTP
|
|
1097
|
-
HTTPS
|
|
1098
|
-
TCP
|
|
1099
|
-
}
|
|
1141
|
+
export declare const HealthCheckProtocol: {
|
|
1142
|
+
readonly HTTP: "HTTP";
|
|
1143
|
+
readonly HTTPS: "HTTPS";
|
|
1144
|
+
readonly TCP: "TCP";
|
|
1145
|
+
};
|
|
1146
|
+
/**
|
|
1147
|
+
* @public
|
|
1148
|
+
*/
|
|
1149
|
+
export type HealthCheckProtocol = (typeof HealthCheckProtocol)[keyof typeof HealthCheckProtocol];
|
|
1100
1150
|
/**
|
|
1101
1151
|
* @public
|
|
1102
1152
|
* <p>Override specific listener ports used to route traffic to endpoints that are part of an endpoint group.
|
|
@@ -1360,11 +1410,16 @@ export interface CustomRoutingAcceleratorAttributes {
|
|
|
1360
1410
|
}
|
|
1361
1411
|
/**
|
|
1362
1412
|
* @public
|
|
1413
|
+
* @enum
|
|
1363
1414
|
*/
|
|
1364
|
-
export declare
|
|
1365
|
-
ALLOW
|
|
1366
|
-
DENY
|
|
1367
|
-
}
|
|
1415
|
+
export declare const CustomRoutingDestinationTrafficState: {
|
|
1416
|
+
readonly ALLOW: "ALLOW";
|
|
1417
|
+
readonly DENY: "DENY";
|
|
1418
|
+
};
|
|
1419
|
+
/**
|
|
1420
|
+
* @public
|
|
1421
|
+
*/
|
|
1422
|
+
export type CustomRoutingDestinationTrafficState = (typeof CustomRoutingDestinationTrafficState)[keyof typeof CustomRoutingDestinationTrafficState];
|
|
1368
1423
|
/**
|
|
1369
1424
|
* @public
|
|
1370
1425
|
*/
|