@aws-sdk/client-global-accelerator 3.300.0 → 3.301.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 (50) hide show
  1. package/dist-types/commands/AddCustomRoutingEndpointsCommand.d.ts +3 -3
  2. package/dist-types/commands/AddEndpointsCommand.d.ts +3 -3
  3. package/dist-types/commands/AdvertiseByoipCidrCommand.d.ts +1 -1
  4. package/dist-types/commands/AllowCustomRoutingTrafficCommand.d.ts +3 -3
  5. package/dist-types/commands/CreateAcceleratorCommand.d.ts +4 -4
  6. package/dist-types/commands/CreateCustomRoutingAcceleratorCommand.d.ts +4 -4
  7. package/dist-types/commands/CreateCustomRoutingEndpointGroupCommand.d.ts +4 -4
  8. package/dist-types/commands/CreateCustomRoutingListenerCommand.d.ts +3 -3
  9. package/dist-types/commands/CreateEndpointGroupCommand.d.ts +5 -5
  10. package/dist-types/commands/CreateListenerCommand.d.ts +3 -3
  11. package/dist-types/commands/DeleteAcceleratorCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteCustomRoutingAcceleratorCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteCustomRoutingEndpointGroupCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteCustomRoutingListenerCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteEndpointGroupCommand.d.ts +1 -1
  16. package/dist-types/commands/DeleteListenerCommand.d.ts +1 -1
  17. package/dist-types/commands/DenyCustomRoutingTrafficCommand.d.ts +3 -3
  18. package/dist-types/commands/DeprovisionByoipCidrCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeAcceleratorAttributesCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeAcceleratorCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeCustomRoutingAcceleratorAttributesCommand.d.ts +1 -1
  22. package/dist-types/commands/DescribeCustomRoutingAcceleratorCommand.d.ts +1 -1
  23. package/dist-types/commands/DescribeCustomRoutingEndpointGroupCommand.d.ts +1 -1
  24. package/dist-types/commands/DescribeCustomRoutingListenerCommand.d.ts +1 -1
  25. package/dist-types/commands/DescribeEndpointGroupCommand.d.ts +1 -1
  26. package/dist-types/commands/DescribeListenerCommand.d.ts +1 -1
  27. package/dist-types/commands/ListAcceleratorsCommand.d.ts +1 -1
  28. package/dist-types/commands/ListByoipCidrsCommand.d.ts +1 -1
  29. package/dist-types/commands/ListCustomRoutingAcceleratorsCommand.d.ts +1 -1
  30. package/dist-types/commands/ListCustomRoutingEndpointGroupsCommand.d.ts +1 -1
  31. package/dist-types/commands/ListCustomRoutingListenersCommand.d.ts +1 -1
  32. package/dist-types/commands/ListCustomRoutingPortMappingsByDestinationCommand.d.ts +1 -1
  33. package/dist-types/commands/ListCustomRoutingPortMappingsCommand.d.ts +1 -1
  34. package/dist-types/commands/ListEndpointGroupsCommand.d.ts +1 -1
  35. package/dist-types/commands/ListListenersCommand.d.ts +1 -1
  36. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  37. package/dist-types/commands/ProvisionByoipCidrCommand.d.ts +2 -2
  38. package/dist-types/commands/RemoveCustomRoutingEndpointsCommand.d.ts +2 -2
  39. package/dist-types/commands/RemoveEndpointsCommand.d.ts +3 -3
  40. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  41. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  42. package/dist-types/commands/UpdateAcceleratorAttributesCommand.d.ts +1 -1
  43. package/dist-types/commands/UpdateAcceleratorCommand.d.ts +1 -1
  44. package/dist-types/commands/UpdateCustomRoutingAcceleratorAttributesCommand.d.ts +1 -1
  45. package/dist-types/commands/UpdateCustomRoutingAcceleratorCommand.d.ts +1 -1
  46. package/dist-types/commands/UpdateCustomRoutingListenerCommand.d.ts +3 -3
  47. package/dist-types/commands/UpdateEndpointGroupCommand.d.ts +5 -5
  48. package/dist-types/commands/UpdateListenerCommand.d.ts +3 -3
  49. package/dist-types/commands/WithdrawByoipCidrCommand.d.ts +1 -1
  50. package/package.json +3 -3
@@ -36,9 +36,9 @@ export interface AddCustomRoutingEndpointsCommandOutput extends AddCustomRouting
36
36
  * import { GlobalAcceleratorClient, AddCustomRoutingEndpointsCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
37
37
  * // const { GlobalAcceleratorClient, AddCustomRoutingEndpointsCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
38
38
  * const client = new GlobalAcceleratorClient(config);
39
- * const input = {
40
- * EndpointConfigurations: [ // required
41
- * {
39
+ * const input = { // AddCustomRoutingEndpointsRequest
40
+ * EndpointConfigurations: [ // CustomRoutingEndpointConfigurations // required
41
+ * { // CustomRoutingEndpointConfiguration
42
42
  * EndpointId: "STRING_VALUE",
43
43
  * },
44
44
  * ],
@@ -41,9 +41,9 @@ export interface AddEndpointsCommandOutput extends AddEndpointsResponse, __Metad
41
41
  * import { GlobalAcceleratorClient, AddEndpointsCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
42
42
  * // const { GlobalAcceleratorClient, AddEndpointsCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
43
43
  * const client = new GlobalAcceleratorClient(config);
44
- * const input = {
45
- * EndpointConfigurations: [ // required
46
- * {
44
+ * const input = { // AddEndpointsRequest
45
+ * EndpointConfigurations: [ // EndpointConfigurations // required
46
+ * { // EndpointConfiguration
47
47
  * EndpointId: "STRING_VALUE",
48
48
  * Weight: Number("int"),
49
49
  * ClientIPPreservationEnabled: true || false,
@@ -32,7 +32,7 @@ export interface AdvertiseByoipCidrCommandOutput extends AdvertiseByoipCidrRespo
32
32
  * import { GlobalAcceleratorClient, AdvertiseByoipCidrCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
33
33
  * // const { GlobalAcceleratorClient, AdvertiseByoipCidrCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
34
34
  * const client = new GlobalAcceleratorClient(config);
35
- * const input = {
35
+ * const input = { // AdvertiseByoipCidrRequest
36
36
  * Cidr: "STRING_VALUE", // required
37
37
  * };
38
38
  * const command = new AdvertiseByoipCidrCommand(input);
@@ -31,13 +31,13 @@ export interface AllowCustomRoutingTrafficCommandOutput extends __MetadataBearer
31
31
  * import { GlobalAcceleratorClient, AllowCustomRoutingTrafficCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
32
32
  * // const { GlobalAcceleratorClient, AllowCustomRoutingTrafficCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
33
33
  * const client = new GlobalAcceleratorClient(config);
34
- * const input = {
34
+ * const input = { // AllowCustomRoutingTrafficRequest
35
35
  * EndpointGroupArn: "STRING_VALUE", // required
36
36
  * EndpointId: "STRING_VALUE", // required
37
- * DestinationAddresses: [
37
+ * DestinationAddresses: [ // DestinationAddresses
38
38
  * "STRING_VALUE",
39
39
  * ],
40
- * DestinationPorts: [
40
+ * DestinationPorts: [ // DestinationPorts
41
41
  * Number("int"),
42
42
  * ],
43
43
  * AllowAllTrafficToEndpoint: true || false,
@@ -32,16 +32,16 @@ export interface CreateAcceleratorCommandOutput extends CreateAcceleratorRespons
32
32
  * import { GlobalAcceleratorClient, CreateAcceleratorCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
33
33
  * // const { GlobalAcceleratorClient, CreateAcceleratorCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
34
34
  * const client = new GlobalAcceleratorClient(config);
35
- * const input = {
35
+ * const input = { // CreateAcceleratorRequest
36
36
  * Name: "STRING_VALUE", // required
37
37
  * IpAddressType: "IPV4" || "DUAL_STACK",
38
- * IpAddresses: [
38
+ * IpAddresses: [ // IpAddresses
39
39
  * "STRING_VALUE",
40
40
  * ],
41
41
  * Enabled: true || false,
42
42
  * IdempotencyToken: "STRING_VALUE", // required
43
- * Tags: [
44
- * {
43
+ * Tags: [ // Tags
44
+ * { // Tag
45
45
  * Key: "STRING_VALUE", // required
46
46
  * Value: "STRING_VALUE", // required
47
47
  * },
@@ -36,16 +36,16 @@ export interface CreateCustomRoutingAcceleratorCommandOutput extends CreateCusto
36
36
  * import { GlobalAcceleratorClient, CreateCustomRoutingAcceleratorCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
37
37
  * // const { GlobalAcceleratorClient, CreateCustomRoutingAcceleratorCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
38
38
  * const client = new GlobalAcceleratorClient(config);
39
- * const input = {
39
+ * const input = { // CreateCustomRoutingAcceleratorRequest
40
40
  * Name: "STRING_VALUE", // required
41
41
  * IpAddressType: "IPV4" || "DUAL_STACK",
42
- * IpAddresses: [
42
+ * IpAddresses: [ // IpAddresses
43
43
  * "STRING_VALUE",
44
44
  * ],
45
45
  * Enabled: true || false,
46
46
  * IdempotencyToken: "STRING_VALUE", // required
47
- * Tags: [
48
- * {
47
+ * Tags: [ // Tags
48
+ * { // Tag
49
49
  * Key: "STRING_VALUE", // required
50
50
  * Value: "STRING_VALUE", // required
51
51
  * },
@@ -28,14 +28,14 @@ export interface CreateCustomRoutingEndpointGroupCommandOutput extends CreateCus
28
28
  * import { GlobalAcceleratorClient, CreateCustomRoutingEndpointGroupCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
29
29
  * // const { GlobalAcceleratorClient, CreateCustomRoutingEndpointGroupCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
30
30
  * const client = new GlobalAcceleratorClient(config);
31
- * const input = {
31
+ * const input = { // CreateCustomRoutingEndpointGroupRequest
32
32
  * ListenerArn: "STRING_VALUE", // required
33
33
  * EndpointGroupRegion: "STRING_VALUE", // required
34
- * DestinationConfigurations: [ // required
35
- * {
34
+ * DestinationConfigurations: [ // CustomRoutingDestinationConfigurations // required
35
+ * { // CustomRoutingDestinationConfiguration
36
36
  * FromPort: Number("int"), // required
37
37
  * ToPort: Number("int"), // required
38
- * Protocols: [ // required
38
+ * Protocols: [ // CustomRoutingProtocols // required
39
39
  * "TCP" || "UDP",
40
40
  * ],
41
41
  * },
@@ -27,10 +27,10 @@ export interface CreateCustomRoutingListenerCommandOutput extends CreateCustomRo
27
27
  * import { GlobalAcceleratorClient, CreateCustomRoutingListenerCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
28
28
  * // const { GlobalAcceleratorClient, CreateCustomRoutingListenerCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
29
29
  * const client = new GlobalAcceleratorClient(config);
30
- * const input = {
30
+ * const input = { // CreateCustomRoutingListenerRequest
31
31
  * AcceleratorArn: "STRING_VALUE", // required
32
- * PortRanges: [ // required
33
- * {
32
+ * PortRanges: [ // PortRanges // required
33
+ * { // PortRange
34
34
  * FromPort: Number("int"),
35
35
  * ToPort: Number("int"),
36
36
  * },
@@ -27,11 +27,11 @@ export interface CreateEndpointGroupCommandOutput extends CreateEndpointGroupRes
27
27
  * import { GlobalAcceleratorClient, CreateEndpointGroupCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
28
28
  * // const { GlobalAcceleratorClient, CreateEndpointGroupCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
29
29
  * const client = new GlobalAcceleratorClient(config);
30
- * const input = {
30
+ * const input = { // CreateEndpointGroupRequest
31
31
  * ListenerArn: "STRING_VALUE", // required
32
32
  * EndpointGroupRegion: "STRING_VALUE", // required
33
- * EndpointConfigurations: [
34
- * {
33
+ * EndpointConfigurations: [ // EndpointConfigurations
34
+ * { // EndpointConfiguration
35
35
  * EndpointId: "STRING_VALUE",
36
36
  * Weight: Number("int"),
37
37
  * ClientIPPreservationEnabled: true || false,
@@ -44,8 +44,8 @@ export interface CreateEndpointGroupCommandOutput extends CreateEndpointGroupRes
44
44
  * HealthCheckIntervalSeconds: Number("int"),
45
45
  * ThresholdCount: Number("int"),
46
46
  * IdempotencyToken: "STRING_VALUE", // required
47
- * PortOverrides: [
48
- * {
47
+ * PortOverrides: [ // PortOverrides
48
+ * { // PortOverride
49
49
  * ListenerPort: Number("int"),
50
50
  * EndpointPort: Number("int"),
51
51
  * },
@@ -27,10 +27,10 @@ export interface CreateListenerCommandOutput extends CreateListenerResponse, __M
27
27
  * import { GlobalAcceleratorClient, CreateListenerCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
28
28
  * // const { GlobalAcceleratorClient, CreateListenerCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
29
29
  * const client = new GlobalAcceleratorClient(config);
30
- * const input = {
30
+ * const input = { // CreateListenerRequest
31
31
  * AcceleratorArn: "STRING_VALUE", // required
32
- * PortRanges: [ // required
33
- * {
32
+ * PortRanges: [ // PortRanges // required
33
+ * { // PortRange
34
34
  * FromPort: Number("int"),
35
35
  * ToPort: Number("int"),
36
36
  * },
@@ -39,7 +39,7 @@ export interface DeleteAcceleratorCommandOutput extends __MetadataBearer {
39
39
  * import { GlobalAcceleratorClient, DeleteAcceleratorCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
40
40
  * // const { GlobalAcceleratorClient, DeleteAcceleratorCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
41
41
  * const client = new GlobalAcceleratorClient(config);
42
- * const input = {
42
+ * const input = { // DeleteAcceleratorRequest
43
43
  * AcceleratorArn: "STRING_VALUE", // required
44
44
  * };
45
45
  * const command = new DeleteAcceleratorCommand(input);
@@ -39,7 +39,7 @@ export interface DeleteCustomRoutingAcceleratorCommandOutput extends __MetadataB
39
39
  * import { GlobalAcceleratorClient, DeleteCustomRoutingAcceleratorCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
40
40
  * // const { GlobalAcceleratorClient, DeleteCustomRoutingAcceleratorCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
41
41
  * const client = new GlobalAcceleratorClient(config);
42
- * const input = {
42
+ * const input = { // DeleteCustomRoutingAcceleratorRequest
43
43
  * AcceleratorArn: "STRING_VALUE", // required
44
44
  * };
45
45
  * const command = new DeleteCustomRoutingAcceleratorCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteCustomRoutingEndpointGroupCommandOutput extends __Metadat
26
26
  * import { GlobalAcceleratorClient, DeleteCustomRoutingEndpointGroupCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
27
27
  * // const { GlobalAcceleratorClient, DeleteCustomRoutingEndpointGroupCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
28
28
  * const client = new GlobalAcceleratorClient(config);
29
- * const input = {
29
+ * const input = { // DeleteCustomRoutingEndpointGroupRequest
30
30
  * EndpointGroupArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteCustomRoutingEndpointGroupCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteCustomRoutingListenerCommandOutput extends __MetadataBear
26
26
  * import { GlobalAcceleratorClient, DeleteCustomRoutingListenerCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
27
27
  * // const { GlobalAcceleratorClient, DeleteCustomRoutingListenerCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
28
28
  * const client = new GlobalAcceleratorClient(config);
29
- * const input = {
29
+ * const input = { // DeleteCustomRoutingListenerRequest
30
30
  * ListenerArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteCustomRoutingListenerCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteEndpointGroupCommandOutput extends __MetadataBearer {
26
26
  * import { GlobalAcceleratorClient, DeleteEndpointGroupCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
27
27
  * // const { GlobalAcceleratorClient, DeleteEndpointGroupCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
28
28
  * const client = new GlobalAcceleratorClient(config);
29
- * const input = {
29
+ * const input = { // DeleteEndpointGroupRequest
30
30
  * EndpointGroupArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteEndpointGroupCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteListenerCommandOutput extends __MetadataBearer {
26
26
  * import { GlobalAcceleratorClient, DeleteListenerCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
27
27
  * // const { GlobalAcceleratorClient, DeleteListenerCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
28
28
  * const client = new GlobalAcceleratorClient(config);
29
- * const input = {
29
+ * const input = { // DeleteListenerRequest
30
30
  * ListenerArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteListenerCommand(input);
@@ -31,13 +31,13 @@ export interface DenyCustomRoutingTrafficCommandOutput extends __MetadataBearer
31
31
  * import { GlobalAcceleratorClient, DenyCustomRoutingTrafficCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
32
32
  * // const { GlobalAcceleratorClient, DenyCustomRoutingTrafficCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
33
33
  * const client = new GlobalAcceleratorClient(config);
34
- * const input = {
34
+ * const input = { // DenyCustomRoutingTrafficRequest
35
35
  * EndpointGroupArn: "STRING_VALUE", // required
36
36
  * EndpointId: "STRING_VALUE", // required
37
- * DestinationAddresses: [
37
+ * DestinationAddresses: [ // DestinationAddresses
38
38
  * "STRING_VALUE",
39
39
  * ],
40
- * DestinationPorts: [
40
+ * DestinationPorts: [ // DestinationPorts
41
41
  * Number("int"),
42
42
  * ],
43
43
  * DenyAllTrafficToEndpoint: true || false,
@@ -32,7 +32,7 @@ export interface DeprovisionByoipCidrCommandOutput extends DeprovisionByoipCidrR
32
32
  * import { GlobalAcceleratorClient, DeprovisionByoipCidrCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
33
33
  * // const { GlobalAcceleratorClient, DeprovisionByoipCidrCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
34
34
  * const client = new GlobalAcceleratorClient(config);
35
- * const input = {
35
+ * const input = { // DeprovisionByoipCidrRequest
36
36
  * Cidr: "STRING_VALUE", // required
37
37
  * };
38
38
  * const command = new DeprovisionByoipCidrCommand(input);
@@ -27,7 +27,7 @@ export interface DescribeAcceleratorAttributesCommandOutput extends DescribeAcce
27
27
  * import { GlobalAcceleratorClient, DescribeAcceleratorAttributesCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
28
28
  * // const { GlobalAcceleratorClient, DescribeAcceleratorAttributesCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
29
29
  * const client = new GlobalAcceleratorClient(config);
30
- * const input = {
30
+ * const input = { // DescribeAcceleratorAttributesRequest
31
31
  * AcceleratorArn: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new DescribeAcceleratorAttributesCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeAcceleratorCommandOutput extends DescribeAcceleratorRes
26
26
  * import { GlobalAcceleratorClient, DescribeAcceleratorCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
27
27
  * // const { GlobalAcceleratorClient, DescribeAcceleratorCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
28
28
  * const client = new GlobalAcceleratorClient(config);
29
- * const input = {
29
+ * const input = { // DescribeAcceleratorRequest
30
30
  * AcceleratorArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeAcceleratorCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeCustomRoutingAcceleratorAttributesCommandOutput extends
26
26
  * import { GlobalAcceleratorClient, DescribeCustomRoutingAcceleratorAttributesCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
27
27
  * // const { GlobalAcceleratorClient, DescribeCustomRoutingAcceleratorAttributesCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
28
28
  * const client = new GlobalAcceleratorClient(config);
29
- * const input = {
29
+ * const input = { // DescribeCustomRoutingAcceleratorAttributesRequest
30
30
  * AcceleratorArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeCustomRoutingAcceleratorAttributesCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeCustomRoutingAcceleratorCommandOutput extends DescribeC
26
26
  * import { GlobalAcceleratorClient, DescribeCustomRoutingAcceleratorCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
27
27
  * // const { GlobalAcceleratorClient, DescribeCustomRoutingAcceleratorCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
28
28
  * const client = new GlobalAcceleratorClient(config);
29
- * const input = {
29
+ * const input = { // DescribeCustomRoutingAcceleratorRequest
30
30
  * AcceleratorArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeCustomRoutingAcceleratorCommand(input);
@@ -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);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-global-accelerator",
3
3
  "description": "AWS SDK for JavaScript Global Accelerator Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",