@aws-sdk/client-elastic-beanstalk 3.288.0 → 3.290.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 (48) hide show
  1. package/dist-types/commands/AbortEnvironmentUpdateCommand.d.ts +16 -0
  2. package/dist-types/commands/ApplyEnvironmentManagedActionCommand.d.ts +7 -0
  3. package/dist-types/commands/AssociateEnvironmentOperationsRoleCommand.d.ts +5 -0
  4. package/dist-types/commands/CheckDNSAvailabilityCommand.d.ts +18 -0
  5. package/dist-types/commands/ComposeEnvironmentsCommand.d.ts +8 -0
  6. package/dist-types/commands/CreateApplicationCommand.d.ts +27 -0
  7. package/dist-types/commands/CreateApplicationVersionCommand.d.ts +63 -0
  8. package/dist-types/commands/CreateConfigurationTemplateCommand.d.ts +33 -0
  9. package/dist-types/commands/CreateEnvironmentCommand.d.ts +42 -0
  10. package/dist-types/commands/CreatePlatformVersionCommand.d.ts +11 -0
  11. package/dist-types/commands/CreateStorageLocationCommand.d.ts +25 -0
  12. package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteApplicationVersionCommand.d.ts +41 -0
  14. package/dist-types/commands/DeleteConfigurationTemplateCommand.d.ts +17 -0
  15. package/dist-types/commands/DeleteEnvironmentConfigurationCommand.d.ts +13 -0
  16. package/dist-types/commands/DeletePlatformVersionCommand.d.ts +15 -0
  17. package/dist-types/commands/DescribeAccountAttributesCommand.d.ts +5 -0
  18. package/dist-types/commands/DescribeApplicationVersionsCommand.d.ts +43 -0
  19. package/dist-types/commands/DescribeApplicationsCommand.d.ts +45 -0
  20. package/dist-types/commands/DescribeConfigurationOptionsCommand.d.ts +41 -0
  21. package/dist-types/commands/DescribeConfigurationSettingsCommand.d.ts +57 -0
  22. package/dist-types/commands/DescribeEnvironmentHealthCommand.d.ts +61 -0
  23. package/dist-types/commands/DescribeEnvironmentManagedActionHistoryCommand.d.ts +4 -0
  24. package/dist-types/commands/DescribeEnvironmentManagedActionsCommand.d.ts +4 -0
  25. package/dist-types/commands/DescribeEnvironmentResourcesCommand.d.ts +45 -0
  26. package/dist-types/commands/DescribeEnvironmentsCommand.d.ts +39 -0
  27. package/dist-types/commands/DescribeEventsCommand.d.ts +49 -0
  28. package/dist-types/commands/DescribeInstancesHealthCommand.d.ts +72 -0
  29. package/dist-types/commands/DescribePlatformVersionCommand.d.ts +8 -0
  30. package/dist-types/commands/DisassociateEnvironmentOperationsRoleCommand.d.ts +5 -0
  31. package/dist-types/commands/ListAvailableSolutionStacksCommand.d.ts +52 -0
  32. package/dist-types/commands/ListPlatformBranchesCommand.d.ts +1 -0
  33. package/dist-types/commands/ListPlatformVersionsCommand.d.ts +8 -0
  34. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  35. package/dist-types/commands/RebuildEnvironmentCommand.d.ts +16 -0
  36. package/dist-types/commands/RequestEnvironmentInfoCommand.d.ts +13 -0
  37. package/dist-types/commands/RestartAppServerCommand.d.ts +12 -0
  38. package/dist-types/commands/RetrieveEnvironmentInfoCommand.d.ts +25 -0
  39. package/dist-types/commands/SwapEnvironmentCNAMEsCommand.d.ts +13 -0
  40. package/dist-types/commands/TerminateEnvironmentCommand.d.ts +36 -0
  41. package/dist-types/commands/UpdateApplicationCommand.d.ts +31 -0
  42. package/dist-types/commands/UpdateApplicationResourceLifecycleCommand.d.ts +5 -0
  43. package/dist-types/commands/UpdateApplicationVersionCommand.d.ts +29 -0
  44. package/dist-types/commands/UpdateConfigurationTemplateCommand.d.ts +35 -0
  45. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +94 -0
  46. package/dist-types/commands/UpdateTagsForResourceCommand.d.ts +21 -0
  47. package/dist-types/commands/ValidateConfigurationSettingsCommand.d.ts +32 -0
  48. package/package.json +30 -30
@@ -29,6 +29,42 @@ export interface TerminateEnvironmentCommandOutput extends EnvironmentDescriptio
29
29
  * @see {@link TerminateEnvironmentCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
31
31
  *
32
+ * @throws {@link InsufficientPrivilegesException} (client fault)
33
+ * <p>The specified account does not have sufficient privileges for one or more AWS
34
+ * services.</p>
35
+ *
36
+ *
37
+ * @example To terminate an environment
38
+ * ```javascript
39
+ * // The following operation terminates an Elastic Beanstalk environment named my-env:
40
+ * const input = {
41
+ * "EnvironmentName": "my-env"
42
+ * };
43
+ * const command = new TerminateEnvironmentCommand(input);
44
+ * const response = await client.send(command);
45
+ * /* response ==
46
+ * {
47
+ * "AbortableOperationInProgress": false,
48
+ * "ApplicationName": "my-app",
49
+ * "CNAME": "my-env.elasticbeanstalk.com",
50
+ * "DateCreated": "2015-08-12T18:52:53.622Z",
51
+ * "DateUpdated": "2015-08-12T19:05:54.744Z",
52
+ * "EndpointURL": "awseb-e-f-AWSEBLoa-1I9XUMP4-8492WNUP202574.us-west-2.elb.amazonaws.com",
53
+ * "EnvironmentId": "e-fh2eravpns",
54
+ * "EnvironmentName": "my-env",
55
+ * "Health": "Grey",
56
+ * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8",
57
+ * "Status": "Terminating",
58
+ * "Tier": {
59
+ * "Name": "WebServer",
60
+ * "Type": "Standard",
61
+ * "Version": " "
62
+ * }
63
+ * }
64
+ * *\/
65
+ * // example id: to-terminate-an-environment-1456277888556
66
+ * ```
67
+ *
32
68
  */
33
69
  export declare class TerminateEnvironmentCommand extends $Command<TerminateEnvironmentCommandInput, TerminateEnvironmentCommandOutput, ElasticBeanstalkClientResolvedConfig> {
34
70
  readonly input: TerminateEnvironmentCommandInput;
@@ -33,6 +33,37 @@ export interface UpdateApplicationCommandOutput extends ApplicationDescriptionMe
33
33
  * @see {@link UpdateApplicationCommandOutput} for command's `response` shape.
34
34
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
35
35
  *
36
+ *
37
+ * @example To change an application's description
38
+ * ```javascript
39
+ * // The following operation updates the description of an application named my-app:
40
+ * const input = {
41
+ * "ApplicationName": "my-app",
42
+ * "Description": "my Elastic Beanstalk application"
43
+ * };
44
+ * const command = new UpdateApplicationCommand(input);
45
+ * const response = await client.send(command);
46
+ * /* response ==
47
+ * {
48
+ * "Application": {
49
+ * "ApplicationName": "my-app",
50
+ * "ConfigurationTemplates": [],
51
+ * "DateCreated": "2015-08-13T19:15:50.449Z",
52
+ * "DateUpdated": "2015-08-20T22:34:56.195Z",
53
+ * "Description": "my Elastic Beanstalk application",
54
+ * "Versions": [
55
+ * "2fba-stage-150819_234450",
56
+ * "bf07-stage-150820_214945",
57
+ * "93f8",
58
+ * "fd7c-stage-150820_000431",
59
+ * "22a0-stage-150819_185942"
60
+ * ]
61
+ * }
62
+ * }
63
+ * *\/
64
+ * // example id: to-change-an-applications-description-1456277957075
65
+ * ```
66
+ *
36
67
  */
37
68
  export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ElasticBeanstalkClientResolvedConfig> {
38
69
  readonly input: UpdateApplicationCommandInput;
@@ -29,6 +29,11 @@ export interface UpdateApplicationResourceLifecycleCommandOutput extends Applica
29
29
  * @see {@link UpdateApplicationResourceLifecycleCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
31
31
  *
32
+ * @throws {@link InsufficientPrivilegesException} (client fault)
33
+ * <p>The specified account does not have sufficient privileges for one or more AWS
34
+ * services.</p>
35
+ *
36
+ *
32
37
  */
33
38
  export declare class UpdateApplicationResourceLifecycleCommand extends $Command<UpdateApplicationResourceLifecycleCommandInput, UpdateApplicationResourceLifecycleCommandOutput, ElasticBeanstalkClientResolvedConfig> {
34
39
  readonly input: UpdateApplicationResourceLifecycleCommandInput;
@@ -33,6 +33,35 @@ export interface UpdateApplicationVersionCommandOutput extends ApplicationVersio
33
33
  * @see {@link UpdateApplicationVersionCommandOutput} for command's `response` shape.
34
34
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
35
35
  *
36
+ *
37
+ * @example To change an application version's description
38
+ * ```javascript
39
+ * // The following operation updates the description of an application version named 22a0-stage-150819_185942:
40
+ * const input = {
41
+ * "ApplicationName": "my-app",
42
+ * "Description": "new description",
43
+ * "VersionLabel": "22a0-stage-150819_185942"
44
+ * };
45
+ * const command = new UpdateApplicationVersionCommand(input);
46
+ * const response = await client.send(command);
47
+ * /* response ==
48
+ * {
49
+ * "ApplicationVersion": {
50
+ * "ApplicationName": "my-app",
51
+ * "DateCreated": "2015-08-19T18:59:17.646Z",
52
+ * "DateUpdated": "2015-08-20T22:53:28.871Z",
53
+ * "Description": "new description",
54
+ * "SourceBundle": {
55
+ * "S3Bucket": "elasticbeanstalk-us-west-2-0123456789012",
56
+ * "S3Key": "my-app/22a0-stage-150819_185942.war"
57
+ * },
58
+ * "VersionLabel": "22a0-stage-150819_185942"
59
+ * }
60
+ * }
61
+ * *\/
62
+ * // example id: to-change-an-application-versions-description-1456278019237
63
+ * ```
64
+ *
36
65
  */
37
66
  export declare class UpdateApplicationVersionCommand extends $Command<UpdateApplicationVersionCommandInput, UpdateApplicationVersionCommandOutput, ElasticBeanstalkClientResolvedConfig> {
38
67
  readonly input: UpdateApplicationVersionCommandInput;
@@ -42,6 +42,41 @@ export interface UpdateConfigurationTemplateCommandOutput extends ConfigurationS
42
42
  * @see {@link UpdateConfigurationTemplateCommandOutput} for command's `response` shape.
43
43
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
44
44
  *
45
+ * @throws {@link InsufficientPrivilegesException} (client fault)
46
+ * <p>The specified account does not have sufficient privileges for one or more AWS
47
+ * services.</p>
48
+ *
49
+ * @throws {@link TooManyBucketsException} (client fault)
50
+ * <p>The specified account has reached its limit of Amazon S3 buckets.</p>
51
+ *
52
+ *
53
+ * @example To update a configuration template
54
+ * ```javascript
55
+ * // The following operation removes the configured CloudWatch custom health metrics configuration ConfigDocument from a saved configuration template named my-template:
56
+ * const input = {
57
+ * "ApplicationName": "my-app",
58
+ * "OptionsToRemove": [
59
+ * {
60
+ * "Namespace": "aws:elasticbeanstalk:healthreporting:system",
61
+ * "OptionName": "ConfigDocument"
62
+ * }
63
+ * ],
64
+ * "TemplateName": "my-template"
65
+ * };
66
+ * const command = new UpdateConfigurationTemplateCommand(input);
67
+ * const response = await client.send(command);
68
+ * /* response ==
69
+ * {
70
+ * "ApplicationName": "my-app",
71
+ * "DateCreated": "2015-08-20T22:39:31Z",
72
+ * "DateUpdated": "2015-08-20T22:43:11Z",
73
+ * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8",
74
+ * "TemplateName": "my-template"
75
+ * }
76
+ * *\/
77
+ * // example id: to-update-a-configuration-template-1456278075300
78
+ * ```
79
+ *
45
80
  */
46
81
  export declare class UpdateConfigurationTemplateCommand extends $Command<UpdateConfigurationTemplateCommandInput, UpdateConfigurationTemplateCommandOutput, ElasticBeanstalkClientResolvedConfig> {
47
82
  readonly input: UpdateConfigurationTemplateCommandInput;
@@ -37,6 +37,100 @@ export interface UpdateEnvironmentCommandOutput extends EnvironmentDescription,
37
37
  * @see {@link UpdateEnvironmentCommandOutput} for command's `response` shape.
38
38
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
39
39
  *
40
+ * @throws {@link InsufficientPrivilegesException} (client fault)
41
+ * <p>The specified account does not have sufficient privileges for one or more AWS
42
+ * services.</p>
43
+ *
44
+ * @throws {@link TooManyBucketsException} (client fault)
45
+ * <p>The specified account has reached its limit of Amazon S3 buckets.</p>
46
+ *
47
+ *
48
+ * @example To update an environment to a new version
49
+ * ```javascript
50
+ * // The following operation updates an environment named "my-env" to version "v2" of the application to which it belongs:
51
+ * const input = {
52
+ * "EnvironmentName": "my-env",
53
+ * "VersionLabel": "v2"
54
+ * };
55
+ * const command = new UpdateEnvironmentCommand(input);
56
+ * const response = await client.send(command);
57
+ * /* response ==
58
+ * {
59
+ * "ApplicationName": "my-app",
60
+ * "CNAME": "my-env.elasticbeanstalk.com",
61
+ * "DateCreated": "2015-02-03T23:04:54.453Z",
62
+ * "DateUpdated": "2015-02-03T23:12:29.119Z",
63
+ * "EndpointURL": "awseb-e-i-AWSEBLoa-1RDLX6TC9VUAO-0123456789.us-west-2.elb.amazonaws.com",
64
+ * "EnvironmentId": "e-szqipays4h",
65
+ * "EnvironmentName": "my-env",
66
+ * "Health": "Grey",
67
+ * "SolutionStackName": "64bit Amazon Linux running Tomcat 7",
68
+ * "Status": "Updating",
69
+ * "Tier": {
70
+ * "Name": "WebServer",
71
+ * "Type": "Standard",
72
+ * "Version": " "
73
+ * },
74
+ * "VersionLabel": "v2"
75
+ * }
76
+ * *\/
77
+ * // example id: to-update-an-environment-to-a-new-version-1456278210718
78
+ * ```
79
+ *
80
+ * @example To configure option settings
81
+ * ```javascript
82
+ * // The following operation configures several options in the aws:elb:loadbalancer namespace:
83
+ * const input = {
84
+ * "EnvironmentName": "my-env",
85
+ * "OptionSettings": [
86
+ * {
87
+ * "Namespace": "aws:elb:healthcheck",
88
+ * "OptionName": "Interval",
89
+ * "Value": "15"
90
+ * },
91
+ * {
92
+ * "Namespace": "aws:elb:healthcheck",
93
+ * "OptionName": "Timeout",
94
+ * "Value": "8"
95
+ * },
96
+ * {
97
+ * "Namespace": "aws:elb:healthcheck",
98
+ * "OptionName": "HealthyThreshold",
99
+ * "Value": "2"
100
+ * },
101
+ * {
102
+ * "Namespace": "aws:elb:healthcheck",
103
+ * "OptionName": "UnhealthyThreshold",
104
+ * "Value": "3"
105
+ * }
106
+ * ]
107
+ * };
108
+ * const command = new UpdateEnvironmentCommand(input);
109
+ * const response = await client.send(command);
110
+ * /* response ==
111
+ * {
112
+ * "AbortableOperationInProgress": true,
113
+ * "ApplicationName": "my-app",
114
+ * "CNAME": "my-env.elasticbeanstalk.com",
115
+ * "DateCreated": "2015-08-07T20:48:49.599Z",
116
+ * "DateUpdated": "2015-08-12T18:15:23.804Z",
117
+ * "EndpointURL": "awseb-e-w-AWSEBLoa-14XB83101Q4L-104QXY80921.sa-east-1.elb.amazonaws.com",
118
+ * "EnvironmentId": "e-wtp2rpqsej",
119
+ * "EnvironmentName": "my-env",
120
+ * "Health": "Grey",
121
+ * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8",
122
+ * "Status": "Updating",
123
+ * "Tier": {
124
+ * "Name": "WebServer",
125
+ * "Type": "Standard",
126
+ * "Version": " "
127
+ * },
128
+ * "VersionLabel": "7f58-stage-150812_025409"
129
+ * }
130
+ * *\/
131
+ * // example id: to-configure-option-settings-1456278286349
132
+ * ```
133
+ *
40
134
  */
41
135
  export declare class UpdateEnvironmentCommand extends $Command<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput, ElasticBeanstalkClientResolvedConfig> {
42
136
  readonly input: UpdateEnvironmentCommandInput;
@@ -48,6 +48,27 @@ export interface UpdateTagsForResourceCommandOutput extends __MetadataBearer {
48
48
  * @see {@link UpdateTagsForResourceCommandOutput} for command's `response` shape.
49
49
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
50
50
  *
51
+ * @throws {@link InsufficientPrivilegesException} (client fault)
52
+ * <p>The specified account does not have sufficient privileges for one or more AWS
53
+ * services.</p>
54
+ *
55
+ * @throws {@link OperationInProgressException} (client fault)
56
+ * <p>Unable to perform the specified operation because another operation that effects an
57
+ * element in this activity is already in progress.</p>
58
+ *
59
+ * @throws {@link ResourceNotFoundException} (client fault)
60
+ * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN).</p>
61
+ *
62
+ * @throws {@link ResourceTypeNotSupportedException} (client fault)
63
+ * <p>The type of the specified Amazon Resource Name (ARN) isn't supported for this operation.</p>
64
+ *
65
+ * @throws {@link TooManyTagsException} (client fault)
66
+ * <p>The number of tags in the resource would exceed the number of tags that each resource
67
+ * can have.</p>
68
+ * <p>To calculate this, the operation considers both the number of tags the resource already has
69
+ * and the tags this operation would add if it succeeded.</p>
70
+ *
71
+ *
51
72
  */
52
73
  export declare class UpdateTagsForResourceCommand extends $Command<UpdateTagsForResourceCommandInput, UpdateTagsForResourceCommandOutput, ElasticBeanstalkClientResolvedConfig> {
53
74
  readonly input: UpdateTagsForResourceCommandInput;
@@ -32,6 +32,38 @@ export interface ValidateConfigurationSettingsCommandOutput extends Configuratio
32
32
  * @see {@link ValidateConfigurationSettingsCommandOutput} for command's `response` shape.
33
33
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
34
34
  *
35
+ * @throws {@link InsufficientPrivilegesException} (client fault)
36
+ * <p>The specified account does not have sufficient privileges for one or more AWS
37
+ * services.</p>
38
+ *
39
+ * @throws {@link TooManyBucketsException} (client fault)
40
+ * <p>The specified account has reached its limit of Amazon S3 buckets.</p>
41
+ *
42
+ *
43
+ * @example To validate configuration settings
44
+ * ```javascript
45
+ * // The following operation validates a CloudWatch custom metrics config document:
46
+ * const input = {
47
+ * "ApplicationName": "my-app",
48
+ * "EnvironmentName": "my-env",
49
+ * "OptionSettings": [
50
+ * {
51
+ * "Namespace": "aws:elasticbeanstalk:healthreporting:system",
52
+ * "OptionName": "ConfigDocument",
53
+ * "Value": "{\"CloudWatchMetrics\": {\"Environment\": {\"ApplicationLatencyP99.9\": null,\"InstancesSevere\": 60,\"ApplicationLatencyP90\": 60,\"ApplicationLatencyP99\": null,\"ApplicationLatencyP95\": 60,\"InstancesUnknown\": 60,\"ApplicationLatencyP85\": 60,\"InstancesInfo\": null,\"ApplicationRequests2xx\": null,\"InstancesDegraded\": null,\"InstancesWarning\": 60,\"ApplicationLatencyP50\": 60,\"ApplicationRequestsTotal\": null,\"InstancesNoData\": null,\"InstancesPending\": 60,\"ApplicationLatencyP10\": null,\"ApplicationRequests5xx\": null,\"ApplicationLatencyP75\": null,\"InstancesOk\": 60,\"ApplicationRequests3xx\": null,\"ApplicationRequests4xx\": null},\"Instance\": {\"ApplicationLatencyP99.9\": null,\"ApplicationLatencyP90\": 60,\"ApplicationLatencyP99\": null,\"ApplicationLatencyP95\": null,\"ApplicationLatencyP85\": null,\"CPUUser\": 60,\"ApplicationRequests2xx\": null,\"CPUIdle\": null,\"ApplicationLatencyP50\": null,\"ApplicationRequestsTotal\": 60,\"RootFilesystemUtil\": null,\"LoadAverage1min\": null,\"CPUIrq\": null,\"CPUNice\": 60,\"CPUIowait\": 60,\"ApplicationLatencyP10\": null,\"LoadAverage5min\": null,\"ApplicationRequests5xx\": null,\"ApplicationLatencyP75\": 60,\"CPUSystem\": 60,\"ApplicationRequests3xx\": 60,\"ApplicationRequests4xx\": null,\"InstanceHealth\": null,\"CPUSoftirq\": 60}},\"Version\": 1}"
54
+ * }
55
+ * ]
56
+ * };
57
+ * const command = new ValidateConfigurationSettingsCommand(input);
58
+ * const response = await client.send(command);
59
+ * /* response ==
60
+ * {
61
+ * "Messages": []
62
+ * }
63
+ * *\/
64
+ * // example id: to-validate-configuration-settings-1456278393654
65
+ * ```
66
+ *
35
67
  */
36
68
  export declare class ValidateConfigurationSettingsCommand extends $Command<ValidateConfigurationSettingsCommandInput, ValidateConfigurationSettingsCommandOutput, ElasticBeanstalkClientResolvedConfig> {
37
69
  readonly input: ValidateConfigurationSettingsCommandInput;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-elastic-beanstalk",
3
3
  "description": "AWS SDK for JavaScript Elastic Beanstalk Client for Node.js, Browser and React Native",
4
- "version": "3.288.0",
4
+ "version": "3.290.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",
@@ -20,39 +20,39 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.288.0",
24
- "@aws-sdk/config-resolver": "3.287.0",
25
- "@aws-sdk/credential-provider-node": "3.288.0",
26
- "@aws-sdk/fetch-http-handler": "3.282.0",
27
- "@aws-sdk/hash-node": "3.272.0",
28
- "@aws-sdk/invalid-dependency": "3.272.0",
29
- "@aws-sdk/middleware-content-length": "3.282.0",
30
- "@aws-sdk/middleware-endpoint": "3.282.0",
31
- "@aws-sdk/middleware-host-header": "3.282.0",
32
- "@aws-sdk/middleware-logger": "3.288.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.282.0",
34
- "@aws-sdk/middleware-retry": "3.287.0",
35
- "@aws-sdk/middleware-serde": "3.272.0",
36
- "@aws-sdk/middleware-signing": "3.282.0",
37
- "@aws-sdk/middleware-stack": "3.272.0",
38
- "@aws-sdk/middleware-user-agent": "3.282.0",
39
- "@aws-sdk/node-config-provider": "3.287.0",
40
- "@aws-sdk/node-http-handler": "3.282.0",
41
- "@aws-sdk/protocol-http": "3.282.0",
42
- "@aws-sdk/smithy-client": "3.279.0",
43
- "@aws-sdk/types": "3.272.0",
44
- "@aws-sdk/url-parser": "3.272.0",
23
+ "@aws-sdk/client-sts": "3.290.0",
24
+ "@aws-sdk/config-resolver": "3.290.0",
25
+ "@aws-sdk/credential-provider-node": "3.290.0",
26
+ "@aws-sdk/fetch-http-handler": "3.290.0",
27
+ "@aws-sdk/hash-node": "3.290.0",
28
+ "@aws-sdk/invalid-dependency": "3.290.0",
29
+ "@aws-sdk/middleware-content-length": "3.290.0",
30
+ "@aws-sdk/middleware-endpoint": "3.290.0",
31
+ "@aws-sdk/middleware-host-header": "3.290.0",
32
+ "@aws-sdk/middleware-logger": "3.290.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.290.0",
34
+ "@aws-sdk/middleware-retry": "3.290.0",
35
+ "@aws-sdk/middleware-serde": "3.290.0",
36
+ "@aws-sdk/middleware-signing": "3.290.0",
37
+ "@aws-sdk/middleware-stack": "3.290.0",
38
+ "@aws-sdk/middleware-user-agent": "3.290.0",
39
+ "@aws-sdk/node-config-provider": "3.290.0",
40
+ "@aws-sdk/node-http-handler": "3.290.0",
41
+ "@aws-sdk/protocol-http": "3.290.0",
42
+ "@aws-sdk/smithy-client": "3.290.0",
43
+ "@aws-sdk/types": "3.290.0",
44
+ "@aws-sdk/url-parser": "3.290.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.279.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.287.0",
50
- "@aws-sdk/util-endpoints": "3.272.0",
51
- "@aws-sdk/util-retry": "3.272.0",
52
- "@aws-sdk/util-user-agent-browser": "3.282.0",
53
- "@aws-sdk/util-user-agent-node": "3.287.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.290.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.290.0",
50
+ "@aws-sdk/util-endpoints": "3.290.0",
51
+ "@aws-sdk/util-retry": "3.290.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.290.0",
53
+ "@aws-sdk/util-user-agent-node": "3.290.0",
54
54
  "@aws-sdk/util-utf8": "3.254.0",
55
- "@aws-sdk/util-waiter": "3.272.0",
55
+ "@aws-sdk/util-waiter": "3.290.0",
56
56
  "fast-xml-parser": "4.1.2",
57
57
  "tslib": "^2.3.1"
58
58
  },