@aws-sdk/client-global-accelerator 3.299.0 → 3.300.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 +8 -0
  2. package/dist-types/commands/AddEndpointsCommand.d.ts +10 -0
  3. package/dist-types/commands/AdvertiseByoipCidrCommand.d.ts +3 -0
  4. package/dist-types/commands/AllowCustomRoutingTrafficCommand.d.ts +11 -0
  5. package/dist-types/commands/CreateAcceleratorCommand.d.ts +15 -0
  6. package/dist-types/commands/CreateCustomRoutingAcceleratorCommand.d.ts +15 -0
  7. package/dist-types/commands/CreateCustomRoutingEndpointGroupCommand.d.ts +14 -0
  8. package/dist-types/commands/CreateCustomRoutingListenerCommand.d.ts +10 -0
  9. package/dist-types/commands/CreateEndpointGroupCommand.d.ts +24 -0
  10. package/dist-types/commands/CreateListenerCommand.d.ts +12 -0
  11. package/dist-types/commands/DeleteAcceleratorCommand.d.ts +3 -0
  12. package/dist-types/commands/DeleteCustomRoutingAcceleratorCommand.d.ts +3 -0
  13. package/dist-types/commands/DeleteCustomRoutingEndpointGroupCommand.d.ts +3 -0
  14. package/dist-types/commands/DeleteCustomRoutingListenerCommand.d.ts +3 -0
  15. package/dist-types/commands/DeleteEndpointGroupCommand.d.ts +3 -0
  16. package/dist-types/commands/DeleteListenerCommand.d.ts +3 -0
  17. package/dist-types/commands/DenyCustomRoutingTrafficCommand.d.ts +11 -0
  18. package/dist-types/commands/DeprovisionByoipCidrCommand.d.ts +3 -0
  19. package/dist-types/commands/DescribeAcceleratorAttributesCommand.d.ts +3 -0
  20. package/dist-types/commands/DescribeAcceleratorCommand.d.ts +3 -0
  21. package/dist-types/commands/DescribeCustomRoutingAcceleratorAttributesCommand.d.ts +3 -0
  22. package/dist-types/commands/DescribeCustomRoutingAcceleratorCommand.d.ts +3 -0
  23. package/dist-types/commands/DescribeCustomRoutingEndpointGroupCommand.d.ts +3 -0
  24. package/dist-types/commands/DescribeCustomRoutingListenerCommand.d.ts +3 -0
  25. package/dist-types/commands/DescribeEndpointGroupCommand.d.ts +3 -0
  26. package/dist-types/commands/DescribeListenerCommand.d.ts +3 -0
  27. package/dist-types/commands/ListAcceleratorsCommand.d.ts +4 -0
  28. package/dist-types/commands/ListByoipCidrsCommand.d.ts +4 -0
  29. package/dist-types/commands/ListCustomRoutingAcceleratorsCommand.d.ts +4 -0
  30. package/dist-types/commands/ListCustomRoutingEndpointGroupsCommand.d.ts +5 -0
  31. package/dist-types/commands/ListCustomRoutingListenersCommand.d.ts +5 -0
  32. package/dist-types/commands/ListCustomRoutingPortMappingsByDestinationCommand.d.ts +6 -0
  33. package/dist-types/commands/ListCustomRoutingPortMappingsCommand.d.ts +6 -0
  34. package/dist-types/commands/ListEndpointGroupsCommand.d.ts +5 -0
  35. package/dist-types/commands/ListListenersCommand.d.ts +5 -0
  36. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  37. package/dist-types/commands/ProvisionByoipCidrCommand.d.ts +7 -0
  38. package/dist-types/commands/RemoveCustomRoutingEndpointsCommand.d.ts +6 -0
  39. package/dist-types/commands/RemoveEndpointsCommand.d.ts +9 -0
  40. package/dist-types/commands/TagResourceCommand.d.ts +9 -0
  41. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  42. package/dist-types/commands/UpdateAcceleratorAttributesCommand.d.ts +6 -0
  43. package/dist-types/commands/UpdateAcceleratorCommand.d.ts +6 -0
  44. package/dist-types/commands/UpdateCustomRoutingAcceleratorAttributesCommand.d.ts +6 -0
  45. package/dist-types/commands/UpdateCustomRoutingAcceleratorCommand.d.ts +6 -0
  46. package/dist-types/commands/UpdateCustomRoutingListenerCommand.d.ts +9 -0
  47. package/dist-types/commands/UpdateEndpointGroupCommand.d.ts +22 -0
  48. package/dist-types/commands/UpdateListenerCommand.d.ts +11 -0
  49. package/dist-types/commands/WithdrawByoipCidrCommand.d.ts +3 -0
  50. package/package.json +8 -8
@@ -36,6 +36,14 @@ 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
+ * {
42
+ * EndpointId: "STRING_VALUE",
43
+ * },
44
+ * ],
45
+ * EndpointGroupArn: "STRING_VALUE", // required
46
+ * };
39
47
  * const command = new AddCustomRoutingEndpointsCommand(input);
40
48
  * const response = await client.send(command);
41
49
  * ```
@@ -41,6 +41,16 @@ 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
+ * {
47
+ * EndpointId: "STRING_VALUE",
48
+ * Weight: Number("int"),
49
+ * ClientIPPreservationEnabled: true || false,
50
+ * },
51
+ * ],
52
+ * EndpointGroupArn: "STRING_VALUE", // required
53
+ * };
44
54
  * const command = new AddEndpointsCommand(input);
45
55
  * const response = await client.send(command);
46
56
  * ```
@@ -32,6 +32,9 @@ 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 = {
36
+ * Cidr: "STRING_VALUE", // required
37
+ * };
35
38
  * const command = new AdvertiseByoipCidrCommand(input);
36
39
  * const response = await client.send(command);
37
40
  * ```
@@ -31,6 +31,17 @@ 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 = {
35
+ * EndpointGroupArn: "STRING_VALUE", // required
36
+ * EndpointId: "STRING_VALUE", // required
37
+ * DestinationAddresses: [
38
+ * "STRING_VALUE",
39
+ * ],
40
+ * DestinationPorts: [
41
+ * Number("int"),
42
+ * ],
43
+ * AllowAllTrafficToEndpoint: true || false,
44
+ * };
34
45
  * const command = new AllowCustomRoutingTrafficCommand(input);
35
46
  * const response = await client.send(command);
36
47
  * ```
@@ -32,6 +32,21 @@ 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 = {
36
+ * Name: "STRING_VALUE", // required
37
+ * IpAddressType: "IPV4" || "DUAL_STACK",
38
+ * IpAddresses: [
39
+ * "STRING_VALUE",
40
+ * ],
41
+ * Enabled: true || false,
42
+ * IdempotencyToken: "STRING_VALUE", // required
43
+ * Tags: [
44
+ * {
45
+ * Key: "STRING_VALUE", // required
46
+ * Value: "STRING_VALUE", // required
47
+ * },
48
+ * ],
49
+ * };
35
50
  * const command = new CreateAcceleratorCommand(input);
36
51
  * const response = await client.send(command);
37
52
  * ```
@@ -36,6 +36,21 @@ 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 = {
40
+ * Name: "STRING_VALUE", // required
41
+ * IpAddressType: "IPV4" || "DUAL_STACK",
42
+ * IpAddresses: [
43
+ * "STRING_VALUE",
44
+ * ],
45
+ * Enabled: true || false,
46
+ * IdempotencyToken: "STRING_VALUE", // required
47
+ * Tags: [
48
+ * {
49
+ * Key: "STRING_VALUE", // required
50
+ * Value: "STRING_VALUE", // required
51
+ * },
52
+ * ],
53
+ * };
39
54
  * const command = new CreateCustomRoutingAcceleratorCommand(input);
40
55
  * const response = await client.send(command);
41
56
  * ```
@@ -28,6 +28,20 @@ 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 = {
32
+ * ListenerArn: "STRING_VALUE", // required
33
+ * EndpointGroupRegion: "STRING_VALUE", // required
34
+ * DestinationConfigurations: [ // required
35
+ * {
36
+ * FromPort: Number("int"), // required
37
+ * ToPort: Number("int"), // required
38
+ * Protocols: [ // required
39
+ * "TCP" || "UDP",
40
+ * ],
41
+ * },
42
+ * ],
43
+ * IdempotencyToken: "STRING_VALUE", // required
44
+ * };
31
45
  * const command = new CreateCustomRoutingEndpointGroupCommand(input);
32
46
  * const response = await client.send(command);
33
47
  * ```
@@ -27,6 +27,16 @@ 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 = {
31
+ * AcceleratorArn: "STRING_VALUE", // required
32
+ * PortRanges: [ // required
33
+ * {
34
+ * FromPort: Number("int"),
35
+ * ToPort: Number("int"),
36
+ * },
37
+ * ],
38
+ * IdempotencyToken: "STRING_VALUE", // required
39
+ * };
30
40
  * const command = new CreateCustomRoutingListenerCommand(input);
31
41
  * const response = await client.send(command);
32
42
  * ```
@@ -27,6 +27,30 @@ 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 = {
31
+ * ListenerArn: "STRING_VALUE", // required
32
+ * EndpointGroupRegion: "STRING_VALUE", // required
33
+ * EndpointConfigurations: [
34
+ * {
35
+ * EndpointId: "STRING_VALUE",
36
+ * Weight: Number("int"),
37
+ * ClientIPPreservationEnabled: true || false,
38
+ * },
39
+ * ],
40
+ * TrafficDialPercentage: Number("float"),
41
+ * HealthCheckPort: Number("int"),
42
+ * HealthCheckProtocol: "TCP" || "HTTP" || "HTTPS",
43
+ * HealthCheckPath: "STRING_VALUE",
44
+ * HealthCheckIntervalSeconds: Number("int"),
45
+ * ThresholdCount: Number("int"),
46
+ * IdempotencyToken: "STRING_VALUE", // required
47
+ * PortOverrides: [
48
+ * {
49
+ * ListenerPort: Number("int"),
50
+ * EndpointPort: Number("int"),
51
+ * },
52
+ * ],
53
+ * };
30
54
  * const command = new CreateEndpointGroupCommand(input);
31
55
  * const response = await client.send(command);
32
56
  * ```
@@ -27,6 +27,18 @@ 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 = {
31
+ * AcceleratorArn: "STRING_VALUE", // required
32
+ * PortRanges: [ // required
33
+ * {
34
+ * FromPort: Number("int"),
35
+ * ToPort: Number("int"),
36
+ * },
37
+ * ],
38
+ * Protocol: "TCP" || "UDP", // required
39
+ * ClientAffinity: "NONE" || "SOURCE_IP",
40
+ * IdempotencyToken: "STRING_VALUE", // required
41
+ * };
30
42
  * const command = new CreateListenerCommand(input);
31
43
  * const response = await client.send(command);
32
44
  * ```
@@ -39,6 +39,9 @@ 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 = {
43
+ * AcceleratorArn: "STRING_VALUE", // required
44
+ * };
42
45
  * const command = new DeleteAcceleratorCommand(input);
43
46
  * const response = await client.send(command);
44
47
  * ```
@@ -39,6 +39,9 @@ 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 = {
43
+ * AcceleratorArn: "STRING_VALUE", // required
44
+ * };
42
45
  * const command = new DeleteCustomRoutingAcceleratorCommand(input);
43
46
  * const response = await client.send(command);
44
47
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * EndpointGroupArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteCustomRoutingEndpointGroupCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * ListenerArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteCustomRoutingListenerCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * EndpointGroupArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteEndpointGroupCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * ListenerArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteListenerCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -31,6 +31,17 @@ 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 = {
35
+ * EndpointGroupArn: "STRING_VALUE", // required
36
+ * EndpointId: "STRING_VALUE", // required
37
+ * DestinationAddresses: [
38
+ * "STRING_VALUE",
39
+ * ],
40
+ * DestinationPorts: [
41
+ * Number("int"),
42
+ * ],
43
+ * DenyAllTrafficToEndpoint: true || false,
44
+ * };
34
45
  * const command = new DenyCustomRoutingTrafficCommand(input);
35
46
  * const response = await client.send(command);
36
47
  * ```
@@ -32,6 +32,9 @@ 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 = {
36
+ * Cidr: "STRING_VALUE", // required
37
+ * };
35
38
  * const command = new DeprovisionByoipCidrCommand(input);
36
39
  * const response = await client.send(command);
37
40
  * ```
@@ -27,6 +27,9 @@ 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 = {
31
+ * AcceleratorArn: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DescribeAcceleratorAttributesCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * AcceleratorArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeAcceleratorCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * AcceleratorArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeCustomRoutingAcceleratorAttributesCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * AcceleratorArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeCustomRoutingAcceleratorCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * EndpointGroupArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeCustomRoutingEndpointGroupCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * ListenerArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeCustomRoutingListenerCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * EndpointGroupArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeEndpointGroupCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * ListenerArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeListenerCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ 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 = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListAcceleratorsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -27,6 +27,10 @@ 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 = {
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
30
34
  * const command = new ListByoipCidrsCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -26,6 +26,10 @@ 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 = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListCustomRoutingAcceleratorsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ 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 = {
30
+ * ListenerArn: "STRING_VALUE", // required
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListCustomRoutingEndpointGroupsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ 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 = {
30
+ * AcceleratorArn: "STRING_VALUE", // required
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListCustomRoutingListenersCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -29,6 +29,12 @@ 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 = {
33
+ * EndpointId: "STRING_VALUE", // required
34
+ * DestinationAddress: "STRING_VALUE", // required
35
+ * MaxResults: Number("int"),
36
+ * NextToken: "STRING_VALUE",
37
+ * };
32
38
  * const command = new ListCustomRoutingPortMappingsByDestinationCommand(input);
33
39
  * const response = await client.send(command);
34
40
  * ```
@@ -34,6 +34,12 @@ 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 = {
38
+ * AcceleratorArn: "STRING_VALUE", // required
39
+ * EndpointGroupArn: "STRING_VALUE",
40
+ * MaxResults: Number("int"),
41
+ * NextToken: "STRING_VALUE",
42
+ * };
37
43
  * const command = new ListCustomRoutingPortMappingsCommand(input);
38
44
  * const response = await client.send(command);
39
45
  * ```
@@ -26,6 +26,11 @@ 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 = {
30
+ * ListenerArn: "STRING_VALUE", // required
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListEndpointGroupsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ 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 = {
30
+ * AcceleratorArn: "STRING_VALUE", // required
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListListenersCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -28,6 +28,9 @@ 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 = {
32
+ * ResourceArn: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new ListTagsForResourceCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -31,6 +31,13 @@ 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 = {
35
+ * Cidr: "STRING_VALUE", // required
36
+ * CidrAuthorizationContext: {
37
+ * Message: "STRING_VALUE", // required
38
+ * Signature: "STRING_VALUE", // required
39
+ * },
40
+ * };
34
41
  * const command = new ProvisionByoipCidrCommand(input);
35
42
  * const response = await client.send(command);
36
43
  * ```
@@ -26,6 +26,12 @@ 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
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * EndpointGroupArn: "STRING_VALUE", // required
34
+ * };
29
35
  * const command = new RemoveCustomRoutingEndpointsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -42,6 +42,15 @@ 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
+ * {
48
+ * EndpointId: "STRING_VALUE", // required
49
+ * ClientIPPreservationEnabled: true || false,
50
+ * },
51
+ * ],
52
+ * EndpointGroupArn: "STRING_VALUE", // required
53
+ * };
45
54
  * const command = new RemoveEndpointsCommand(input);
46
55
  * const response = await client.send(command);
47
56
  * ```
@@ -28,6 +28,15 @@ 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 = {
32
+ * ResourceArn: "STRING_VALUE", // required
33
+ * Tags: [ // required
34
+ * {
35
+ * Key: "STRING_VALUE", // required
36
+ * Value: "STRING_VALUE", // required
37
+ * },
38
+ * ],
39
+ * };
31
40
  * const command = new TagResourceCommand(input);
32
41
  * const response = await client.send(command);
33
42
  * ```
@@ -29,6 +29,12 @@ 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 = {
33
+ * ResourceArn: "STRING_VALUE", // required
34
+ * TagKeys: [ // required
35
+ * "STRING_VALUE",
36
+ * ],
37
+ * };
32
38
  * const command = new UntagResourceCommand(input);
33
39
  * const response = await client.send(command);
34
40
  * ```
@@ -26,6 +26,12 @@ 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 = {
30
+ * AcceleratorArn: "STRING_VALUE", // required
31
+ * FlowLogsEnabled: true || false,
32
+ * FlowLogsS3Bucket: "STRING_VALUE",
33
+ * FlowLogsS3Prefix: "STRING_VALUE",
34
+ * };
29
35
  * const command = new UpdateAcceleratorAttributesCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -32,6 +32,12 @@ 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 = {
36
+ * AcceleratorArn: "STRING_VALUE", // required
37
+ * Name: "STRING_VALUE",
38
+ * IpAddressType: "IPV4" || "DUAL_STACK",
39
+ * Enabled: true || false,
40
+ * };
35
41
  * const command = new UpdateAcceleratorCommand(input);
36
42
  * const response = await client.send(command);
37
43
  * ```
@@ -26,6 +26,12 @@ 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 = {
30
+ * AcceleratorArn: "STRING_VALUE", // required
31
+ * FlowLogsEnabled: true || false,
32
+ * FlowLogsS3Bucket: "STRING_VALUE",
33
+ * FlowLogsS3Prefix: "STRING_VALUE",
34
+ * };
29
35
  * const command = new UpdateCustomRoutingAcceleratorAttributesCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ 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 = {
30
+ * AcceleratorArn: "STRING_VALUE", // required
31
+ * Name: "STRING_VALUE",
32
+ * IpAddressType: "IPV4" || "DUAL_STACK",
33
+ * Enabled: true || false,
34
+ * };
29
35
  * const command = new UpdateCustomRoutingAcceleratorCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,15 @@ 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 = {
30
+ * ListenerArn: "STRING_VALUE", // required
31
+ * PortRanges: [ // required
32
+ * {
33
+ * FromPort: Number("int"),
34
+ * ToPort: Number("int"),
35
+ * },
36
+ * ],
37
+ * };
29
38
  * const command = new UpdateCustomRoutingListenerCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
@@ -26,6 +26,28 @@ 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 = {
30
+ * EndpointGroupArn: "STRING_VALUE", // required
31
+ * EndpointConfigurations: [
32
+ * {
33
+ * EndpointId: "STRING_VALUE",
34
+ * Weight: Number("int"),
35
+ * ClientIPPreservationEnabled: true || false,
36
+ * },
37
+ * ],
38
+ * TrafficDialPercentage: Number("float"),
39
+ * HealthCheckPort: Number("int"),
40
+ * HealthCheckProtocol: "TCP" || "HTTP" || "HTTPS",
41
+ * HealthCheckPath: "STRING_VALUE",
42
+ * HealthCheckIntervalSeconds: Number("int"),
43
+ * ThresholdCount: Number("int"),
44
+ * PortOverrides: [
45
+ * {
46
+ * ListenerPort: Number("int"),
47
+ * EndpointPort: Number("int"),
48
+ * },
49
+ * ],
50
+ * };
29
51
  * const command = new UpdateEndpointGroupCommand(input);
30
52
  * const response = await client.send(command);
31
53
  * ```
@@ -26,6 +26,17 @@ 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 = {
30
+ * ListenerArn: "STRING_VALUE", // required
31
+ * PortRanges: [
32
+ * {
33
+ * FromPort: Number("int"),
34
+ * ToPort: Number("int"),
35
+ * },
36
+ * ],
37
+ * Protocol: "TCP" || "UDP",
38
+ * ClientAffinity: "NONE" || "SOURCE_IP",
39
+ * };
29
40
  * const command = new UpdateListenerCommand(input);
30
41
  * const response = await client.send(command);
31
42
  * ```
@@ -32,6 +32,9 @@ 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 = {
36
+ * Cidr: "STRING_VALUE", // required
37
+ * };
35
38
  * const command = new WithdrawByoipCidrCommand(input);
36
39
  * const response = await client.send(command);
37
40
  * ```
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.299.0",
4
+ "version": "3.300.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.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.300.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.300.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",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"