@aws-sdk/client-ssm 3.99.0 → 3.109.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/dist-cjs/SSMClient.js +2 -0
- package/dist-es/SSMClient.js +2 -0
- package/dist-types/models/models_0.d.ts +20 -60
- package/dist-types/models/models_1.d.ts +32 -96
- package/dist-types/models/models_2.d.ts +5 -15
- package/dist-types/ts3.4/models/models_0.d.ts +20 -60
- package/dist-types/ts3.4/models/models_1.d.ts +32 -96
- package/dist-types/ts3.4/models/models_2.d.ts +5 -15
- package/package.json +30 -29
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-ssm
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-ssm
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-ssm
|
package/dist-cjs/SSMClient.js
CHANGED
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class SSMClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
package/dist-es/SSMClient.js
CHANGED
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var SSMClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -868,9 +868,7 @@ export interface CreateAssociationRequest {
|
|
|
868
868
|
/**
|
|
869
869
|
* <p>The parameters for the runtime configuration of the document.</p>
|
|
870
870
|
*/
|
|
871
|
-
Parameters?:
|
|
872
|
-
[key: string]: string[];
|
|
873
|
-
};
|
|
871
|
+
Parameters?: Record<string, string[]>;
|
|
874
872
|
/**
|
|
875
873
|
* <p>The targets for the association. You can target managed nodes by using tags, Amazon Web Services resource
|
|
876
874
|
* groups, all managed nodes in an Amazon Web Services account, or individual managed node IDs. You can target all
|
|
@@ -974,9 +972,7 @@ export interface CreateAssociationRequest {
|
|
|
974
972
|
* <p>A key-value mapping of document parameters to target resources. Both Targets and TargetMaps
|
|
975
973
|
* can't be specified together.</p>
|
|
976
974
|
*/
|
|
977
|
-
TargetMaps?:
|
|
978
|
-
[key: string]: string[];
|
|
979
|
-
}[];
|
|
975
|
+
TargetMaps?: Record<string, string[]>[];
|
|
980
976
|
}
|
|
981
977
|
export declare namespace CreateAssociationRequest {
|
|
982
978
|
/**
|
|
@@ -1001,9 +997,7 @@ export interface AssociationOverview {
|
|
|
1001
997
|
* association with two managed nodes, and one of them was successful, this would return the count
|
|
1002
998
|
* of managed nodes by status.</p>
|
|
1003
999
|
*/
|
|
1004
|
-
AssociationStatusAggregatedCount?:
|
|
1005
|
-
[key: string]: number;
|
|
1006
|
-
};
|
|
1000
|
+
AssociationStatusAggregatedCount?: Record<string, number>;
|
|
1007
1001
|
}
|
|
1008
1002
|
export declare namespace AssociationOverview {
|
|
1009
1003
|
/**
|
|
@@ -1088,9 +1082,7 @@ export interface AssociationDescription {
|
|
|
1088
1082
|
/**
|
|
1089
1083
|
* <p>A description of the parameters for a document. </p>
|
|
1090
1084
|
*/
|
|
1091
|
-
Parameters?:
|
|
1092
|
-
[key: string]: string[];
|
|
1093
|
-
};
|
|
1085
|
+
Parameters?: Record<string, string[]>;
|
|
1094
1086
|
/**
|
|
1095
1087
|
* <p>The association ID.</p>
|
|
1096
1088
|
*/
|
|
@@ -1187,9 +1179,7 @@ export interface AssociationDescription {
|
|
|
1187
1179
|
* <p>A key-value mapping of document parameters to target resources. Both Targets and TargetMaps
|
|
1188
1180
|
* can't be specified together.</p>
|
|
1189
1181
|
*/
|
|
1190
|
-
TargetMaps?:
|
|
1191
|
-
[key: string]: string[];
|
|
1192
|
-
}[];
|
|
1182
|
+
TargetMaps?: Record<string, string[]>[];
|
|
1193
1183
|
}
|
|
1194
1184
|
export declare namespace AssociationDescription {
|
|
1195
1185
|
/**
|
|
@@ -1340,9 +1330,7 @@ export interface CreateAssociationBatchRequestEntry {
|
|
|
1340
1330
|
/**
|
|
1341
1331
|
* <p>A description of the parameters for a document. </p>
|
|
1342
1332
|
*/
|
|
1343
|
-
Parameters?:
|
|
1344
|
-
[key: string]: string[];
|
|
1345
|
-
};
|
|
1333
|
+
Parameters?: Record<string, string[]>;
|
|
1346
1334
|
/**
|
|
1347
1335
|
* <p>Specify the target for the association. This target is required for associations that use an
|
|
1348
1336
|
* Automation runbook and target resources by using rate controls. Automation is a capability of
|
|
@@ -1436,9 +1424,7 @@ export interface CreateAssociationBatchRequestEntry {
|
|
|
1436
1424
|
* <p>A key-value mapping of document parameters to target resources. Both Targets and TargetMaps
|
|
1437
1425
|
* can't be specified together.</p>
|
|
1438
1426
|
*/
|
|
1439
|
-
TargetMaps?:
|
|
1440
|
-
[key: string]: string[];
|
|
1441
|
-
}[];
|
|
1427
|
+
TargetMaps?: Record<string, string[]>[];
|
|
1442
1428
|
}
|
|
1443
1429
|
export declare namespace CreateAssociationBatchRequestEntry {
|
|
1444
1430
|
/**
|
|
@@ -2266,9 +2252,7 @@ export interface CreateOpsItemRequest {
|
|
|
2266
2252
|
* Automation runbook with the OpsItem. To view Amazon Web Services CLI example commands that use these keys, see
|
|
2267
2253
|
* <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-creating-OpsItems.html#OpsCenter-manually-create-OpsItems">Creating OpsItems manually</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
|
|
2268
2254
|
*/
|
|
2269
|
-
OperationalData?:
|
|
2270
|
-
[key: string]: OpsItemDataValue;
|
|
2271
|
-
};
|
|
2255
|
+
OperationalData?: Record<string, OpsItemDataValue>;
|
|
2272
2256
|
/**
|
|
2273
2257
|
* <p>The Amazon Resource Name (ARN) of an SNS topic where notifications are sent when this
|
|
2274
2258
|
* OpsItem is edited or changed.</p>
|
|
@@ -2394,9 +2378,7 @@ export interface CreateOpsMetadataRequest {
|
|
|
2394
2378
|
/**
|
|
2395
2379
|
* <p>Metadata for a new Application Manager application. </p>
|
|
2396
2380
|
*/
|
|
2397
|
-
Metadata?:
|
|
2398
|
-
[key: string]: MetadataValue;
|
|
2399
|
-
};
|
|
2381
|
+
Metadata?: Record<string, MetadataValue>;
|
|
2400
2382
|
/**
|
|
2401
2383
|
* <p>Optional metadata that you assign to a resource. You can specify a maximum of five tags for
|
|
2402
2384
|
* an OpsMetadata object. Tags enable you to categorize a resource in different ways, such as by
|
|
@@ -4187,9 +4169,7 @@ export interface Runbook {
|
|
|
4187
4169
|
* <p>The key-value map of execution parameters, which were supplied when calling
|
|
4188
4170
|
* <code>StartChangeRequestExecution</code>.</p>
|
|
4189
4171
|
*/
|
|
4190
|
-
Parameters?:
|
|
4191
|
-
[key: string]: string[];
|
|
4192
|
-
};
|
|
4172
|
+
Parameters?: Record<string, string[]>;
|
|
4193
4173
|
/**
|
|
4194
4174
|
* <p>The name of the parameter used as the target resource for the rate-controlled
|
|
4195
4175
|
* runbook workflow. Required if you specify <code>Targets</code>. </p>
|
|
@@ -4204,9 +4184,7 @@ export interface Runbook {
|
|
|
4204
4184
|
* <p>A key-value mapping of runbook parameters to target resources. Both Targets and TargetMaps
|
|
4205
4185
|
* can't be specified together.</p>
|
|
4206
4186
|
*/
|
|
4207
|
-
TargetMaps?:
|
|
4208
|
-
[key: string]: string[];
|
|
4209
|
-
}[];
|
|
4187
|
+
TargetMaps?: Record<string, string[]>[];
|
|
4210
4188
|
/**
|
|
4211
4189
|
* <p>The <code>MaxConcurrency</code> value specified by the user when the operation started,
|
|
4212
4190
|
* indicating the maximum number of resources that the runbook operation can run on at the same
|
|
@@ -4271,9 +4249,7 @@ export interface AutomationExecutionMetadata {
|
|
|
4271
4249
|
/**
|
|
4272
4250
|
* <p>The list of execution outputs as defined in the Automation runbook.</p>
|
|
4273
4251
|
*/
|
|
4274
|
-
Outputs?:
|
|
4275
|
-
[key: string]: string[];
|
|
4276
|
-
};
|
|
4252
|
+
Outputs?: Record<string, string[]>;
|
|
4277
4253
|
/**
|
|
4278
4254
|
* <p>The Automation execution mode.</p>
|
|
4279
4255
|
*/
|
|
@@ -4305,9 +4281,7 @@ export interface AutomationExecutionMetadata {
|
|
|
4305
4281
|
/**
|
|
4306
4282
|
* <p>The specified key-value mapping of document parameters to target resources.</p>
|
|
4307
4283
|
*/
|
|
4308
|
-
TargetMaps?:
|
|
4309
|
-
[key: string]: string[];
|
|
4310
|
-
}[];
|
|
4284
|
+
TargetMaps?: Record<string, string[]>[];
|
|
4311
4285
|
/**
|
|
4312
4286
|
* <p>A list of targets that resolved during the execution.</p>
|
|
4313
4287
|
*/
|
|
@@ -4499,9 +4473,7 @@ export interface FailureDetails {
|
|
|
4499
4473
|
/**
|
|
4500
4474
|
* <p>Detailed information about the Automation step failure.</p>
|
|
4501
4475
|
*/
|
|
4502
|
-
Details?:
|
|
4503
|
-
[key: string]: string[];
|
|
4504
|
-
};
|
|
4476
|
+
Details?: Record<string, string[]>;
|
|
4505
4477
|
}
|
|
4506
4478
|
export declare namespace FailureDetails {
|
|
4507
4479
|
/**
|
|
@@ -4555,15 +4527,11 @@ export interface StepExecution {
|
|
|
4555
4527
|
/**
|
|
4556
4528
|
* <p>Fully-resolved values passed into the step before execution.</p>
|
|
4557
4529
|
*/
|
|
4558
|
-
Inputs?:
|
|
4559
|
-
[key: string]: string;
|
|
4560
|
-
};
|
|
4530
|
+
Inputs?: Record<string, string>;
|
|
4561
4531
|
/**
|
|
4562
4532
|
* <p>Returned values from the execution of the step.</p>
|
|
4563
4533
|
*/
|
|
4564
|
-
Outputs?:
|
|
4565
|
-
[key: string]: string[];
|
|
4566
|
-
};
|
|
4534
|
+
Outputs?: Record<string, string[]>;
|
|
4567
4535
|
/**
|
|
4568
4536
|
* <p>A message associated with the response code for an execution.</p>
|
|
4569
4537
|
*/
|
|
@@ -4583,9 +4551,7 @@ export interface StepExecution {
|
|
|
4583
4551
|
/**
|
|
4584
4552
|
* <p>A user-specified list of parameters to override when running a step.</p>
|
|
4585
4553
|
*/
|
|
4586
|
-
OverriddenParameters?:
|
|
4587
|
-
[key: string]: string[];
|
|
4588
|
-
};
|
|
4554
|
+
OverriddenParameters?: Record<string, string[]>;
|
|
4589
4555
|
/**
|
|
4590
4556
|
* <p>The flag which can be used to end automation no matter whether the step succeeds or
|
|
4591
4557
|
* fails.</p>
|
|
@@ -5537,9 +5503,7 @@ export interface InstanceAggregatedAssociationOverview {
|
|
|
5537
5503
|
/**
|
|
5538
5504
|
* <p>The number of associations for the managed node(s).</p>
|
|
5539
5505
|
*/
|
|
5540
|
-
InstanceAssociationStatusAggregatedCount?:
|
|
5541
|
-
[key: string]: number;
|
|
5542
|
-
};
|
|
5506
|
+
InstanceAssociationStatusAggregatedCount?: Record<string, number>;
|
|
5543
5507
|
}
|
|
5544
5508
|
export declare namespace InstanceAggregatedAssociationOverview {
|
|
5545
5509
|
/**
|
|
@@ -7139,9 +7103,7 @@ export interface MaintenanceWindowTask {
|
|
|
7139
7103
|
* types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>
|
|
7140
7104
|
* </note>
|
|
7141
7105
|
*/
|
|
7142
|
-
TaskParameters?:
|
|
7143
|
-
[key: string]: MaintenanceWindowTaskParameterValueExpression;
|
|
7144
|
-
};
|
|
7106
|
+
TaskParameters?: Record<string, MaintenanceWindowTaskParameterValueExpression>;
|
|
7145
7107
|
/**
|
|
7146
7108
|
* <p>The priority of the task in the maintenance window. The lower the number, the higher the
|
|
7147
7109
|
* priority. Tasks that have the same priority are scheduled in parallel.</p>
|
|
@@ -7430,9 +7392,7 @@ export interface OpsItemSummary {
|
|
|
7430
7392
|
* <p>Operational data is custom data that provides useful reference details about the OpsItem.
|
|
7431
7393
|
* </p>
|
|
7432
7394
|
*/
|
|
7433
|
-
OperationalData?:
|
|
7434
|
-
[key: string]: OpsItemDataValue;
|
|
7435
|
-
};
|
|
7395
|
+
OperationalData?: Record<string, OpsItemDataValue>;
|
|
7436
7396
|
/**
|
|
7437
7397
|
* <p>A list of OpsItems by category.</p>
|
|
7438
7398
|
*/
|
|
@@ -424,9 +424,7 @@ export interface DescribePatchPropertiesResult {
|
|
|
424
424
|
/**
|
|
425
425
|
* <p>A list of the properties for patches matching the filter request parameters.</p>
|
|
426
426
|
*/
|
|
427
|
-
Properties?:
|
|
428
|
-
[key: string]: string;
|
|
429
|
-
}[];
|
|
427
|
+
Properties?: Record<string, string>[];
|
|
430
428
|
/**
|
|
431
429
|
* <p>The token for the next set of items to return. (You use this token in the next call.)</p>
|
|
432
430
|
*/
|
|
@@ -771,15 +769,11 @@ export interface AutomationExecution {
|
|
|
771
769
|
/**
|
|
772
770
|
* <p>The key-value map of execution parameters, which were supplied when calling <a>StartAutomationExecution</a>.</p>
|
|
773
771
|
*/
|
|
774
|
-
Parameters?:
|
|
775
|
-
[key: string]: string[];
|
|
776
|
-
};
|
|
772
|
+
Parameters?: Record<string, string[]>;
|
|
777
773
|
/**
|
|
778
774
|
* <p>The list of execution outputs as defined in the Automation runbook.</p>
|
|
779
775
|
*/
|
|
780
|
-
Outputs?:
|
|
781
|
-
[key: string]: string[];
|
|
782
|
-
};
|
|
776
|
+
Outputs?: Record<string, string[]>;
|
|
783
777
|
/**
|
|
784
778
|
* <p>A message describing why an execution has failed, if the status is set to Failed.</p>
|
|
785
779
|
*/
|
|
@@ -815,9 +809,7 @@ export interface AutomationExecution {
|
|
|
815
809
|
/**
|
|
816
810
|
* <p>The specified key-value mapping of document parameters to target resources.</p>
|
|
817
811
|
*/
|
|
818
|
-
TargetMaps?:
|
|
819
|
-
[key: string]: string[];
|
|
820
|
-
}[];
|
|
812
|
+
TargetMaps?: Record<string, string[]>[];
|
|
821
813
|
/**
|
|
822
814
|
* <p>A list of resolved targets in the rate control execution.</p>
|
|
823
815
|
*/
|
|
@@ -1625,9 +1617,7 @@ export interface InventoryResultItem {
|
|
|
1625
1617
|
* <p>Contains all the inventory data of the item type. Results include attribute names and
|
|
1626
1618
|
* values. </p>
|
|
1627
1619
|
*/
|
|
1628
|
-
Content:
|
|
1629
|
-
[key: string]: string;
|
|
1630
|
-
}[] | undefined;
|
|
1620
|
+
Content: Record<string, string>[] | undefined;
|
|
1631
1621
|
}
|
|
1632
1622
|
export declare namespace InventoryResultItem {
|
|
1633
1623
|
/**
|
|
@@ -1647,9 +1637,7 @@ export interface InventoryResultEntity {
|
|
|
1647
1637
|
/**
|
|
1648
1638
|
* <p>The data section in the inventory result entity JSON.</p>
|
|
1649
1639
|
*/
|
|
1650
|
-
Data?:
|
|
1651
|
-
[key: string]: InventoryResultItem;
|
|
1652
|
-
};
|
|
1640
|
+
Data?: Record<string, InventoryResultItem>;
|
|
1653
1641
|
}
|
|
1654
1642
|
export declare namespace InventoryResultEntity {
|
|
1655
1643
|
/**
|
|
@@ -2011,9 +1999,7 @@ export interface GetMaintenanceWindowExecutionTaskResult {
|
|
|
2011
1999
|
* </li>
|
|
2012
2000
|
* </ul>
|
|
2013
2001
|
*/
|
|
2014
|
-
TaskParameters?:
|
|
2015
|
-
[key: string]: MaintenanceWindowTaskParameterValueExpression;
|
|
2016
|
-
}[];
|
|
2002
|
+
TaskParameters?: Record<string, MaintenanceWindowTaskParameterValueExpression>[];
|
|
2017
2003
|
/**
|
|
2018
2004
|
* <p>The priority of the task.</p>
|
|
2019
2005
|
*/
|
|
@@ -2171,9 +2157,7 @@ export interface MaintenanceWindowAutomationParameters {
|
|
|
2171
2157
|
* parameters.</p>
|
|
2172
2158
|
* </note>
|
|
2173
2159
|
*/
|
|
2174
|
-
Parameters?:
|
|
2175
|
-
[key: string]: string[];
|
|
2176
|
-
};
|
|
2160
|
+
Parameters?: Record<string, string[]>;
|
|
2177
2161
|
}
|
|
2178
2162
|
export declare namespace MaintenanceWindowAutomationParameters {
|
|
2179
2163
|
/**
|
|
@@ -2345,9 +2329,7 @@ export interface MaintenanceWindowRunCommandParameters {
|
|
|
2345
2329
|
/**
|
|
2346
2330
|
* <p>The parameters for the <code>RUN_COMMAND</code> task execution.</p>
|
|
2347
2331
|
*/
|
|
2348
|
-
Parameters?:
|
|
2349
|
-
[key: string]: string[];
|
|
2350
|
-
};
|
|
2332
|
+
Parameters?: Record<string, string[]>;
|
|
2351
2333
|
/**
|
|
2352
2334
|
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) service role to use to publish Amazon Simple Notification Service
|
|
2353
2335
|
* (Amazon SNS) notifications for maintenance window Run Command tasks.</p>
|
|
@@ -2466,9 +2448,7 @@ export interface GetMaintenanceWindowTaskResult {
|
|
|
2466
2448
|
* types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>
|
|
2467
2449
|
* </note>
|
|
2468
2450
|
*/
|
|
2469
|
-
TaskParameters?:
|
|
2470
|
-
[key: string]: MaintenanceWindowTaskParameterValueExpression;
|
|
2471
|
-
};
|
|
2451
|
+
TaskParameters?: Record<string, MaintenanceWindowTaskParameterValueExpression>;
|
|
2472
2452
|
/**
|
|
2473
2453
|
* <p>The parameters to pass to the task when it runs.</p>
|
|
2474
2454
|
*/
|
|
@@ -2644,9 +2624,7 @@ export interface OpsItem {
|
|
|
2644
2624
|
* Automation runbook with the OpsItem. To view Amazon Web Services CLI example commands that use these keys, see
|
|
2645
2625
|
* <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-creating-OpsItems.html#OpsCenter-manually-create-OpsItems">Creating OpsItems manually</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
|
|
2646
2626
|
*/
|
|
2647
|
-
OperationalData?:
|
|
2648
|
-
[key: string]: OpsItemDataValue;
|
|
2649
|
-
};
|
|
2627
|
+
OperationalData?: Record<string, OpsItemDataValue>;
|
|
2650
2628
|
/**
|
|
2651
2629
|
* <p>An OpsItem category. Category options include: Availability, Cost, Performance, Recovery,
|
|
2652
2630
|
* Security.</p>
|
|
@@ -2724,9 +2702,7 @@ export interface GetOpsMetadataResult {
|
|
|
2724
2702
|
/**
|
|
2725
2703
|
* <p>OpsMetadata for an Application Manager application.</p>
|
|
2726
2704
|
*/
|
|
2727
|
-
Metadata?:
|
|
2728
|
-
[key: string]: MetadataValue;
|
|
2729
|
-
};
|
|
2705
|
+
Metadata?: Record<string, MetadataValue>;
|
|
2730
2706
|
/**
|
|
2731
2707
|
* <p>The token for the next set of items to return. Use this token to get the next set of
|
|
2732
2708
|
* results.</p>
|
|
@@ -2798,9 +2774,7 @@ export interface OpsEntityItem {
|
|
|
2798
2774
|
/**
|
|
2799
2775
|
* <p>The details of an OpsData summary.</p>
|
|
2800
2776
|
*/
|
|
2801
|
-
Content?:
|
|
2802
|
-
[key: string]: string;
|
|
2803
|
-
}[];
|
|
2777
|
+
Content?: Record<string, string>[];
|
|
2804
2778
|
}
|
|
2805
2779
|
export declare namespace OpsEntityItem {
|
|
2806
2780
|
/**
|
|
@@ -2819,9 +2793,7 @@ export interface OpsEntity {
|
|
|
2819
2793
|
/**
|
|
2820
2794
|
* <p>The data returned by the query.</p>
|
|
2821
2795
|
*/
|
|
2822
|
-
Data?:
|
|
2823
|
-
[key: string]: OpsEntityItem;
|
|
2824
|
-
};
|
|
2796
|
+
Data?: Record<string, OpsEntityItem>;
|
|
2825
2797
|
}
|
|
2826
2798
|
export declare namespace OpsEntity {
|
|
2827
2799
|
/**
|
|
@@ -3623,9 +3595,7 @@ export interface Association {
|
|
|
3623
3595
|
* <p>A key-value mapping of document parameters to target resources. Both Targets and TargetMaps
|
|
3624
3596
|
* can't be specified together.</p>
|
|
3625
3597
|
*/
|
|
3626
|
-
TargetMaps?:
|
|
3627
|
-
[key: string]: string[];
|
|
3628
|
-
}[];
|
|
3598
|
+
TargetMaps?: Record<string, string[]>[];
|
|
3629
3599
|
}
|
|
3630
3600
|
export declare namespace Association {
|
|
3631
3601
|
/**
|
|
@@ -3699,9 +3669,7 @@ export interface AssociationVersionInfo {
|
|
|
3699
3669
|
/**
|
|
3700
3670
|
* <p>Parameters specified when the association version was created.</p>
|
|
3701
3671
|
*/
|
|
3702
|
-
Parameters?:
|
|
3703
|
-
[key: string]: string[];
|
|
3704
|
-
};
|
|
3672
|
+
Parameters?: Record<string, string[]>;
|
|
3705
3673
|
/**
|
|
3706
3674
|
* <p>The targets specified for the association when the association version was created. </p>
|
|
3707
3675
|
*/
|
|
@@ -3789,9 +3757,7 @@ export interface AssociationVersionInfo {
|
|
|
3789
3757
|
* <p>A key-value mapping of document parameters to target resources. Both Targets and TargetMaps
|
|
3790
3758
|
* can't be specified together.</p>
|
|
3791
3759
|
*/
|
|
3792
|
-
TargetMaps?:
|
|
3793
|
-
[key: string]: string[];
|
|
3794
|
-
}[];
|
|
3760
|
+
TargetMaps?: Record<string, string[]>[];
|
|
3795
3761
|
}
|
|
3796
3762
|
export declare namespace AssociationVersionInfo {
|
|
3797
3763
|
/**
|
|
@@ -4437,9 +4403,7 @@ export interface Command {
|
|
|
4437
4403
|
/**
|
|
4438
4404
|
* <p>The parameter values to be inserted in the document when running the command.</p>
|
|
4439
4405
|
*/
|
|
4440
|
-
Parameters?:
|
|
4441
|
-
[key: string]: string[];
|
|
4442
|
-
};
|
|
4406
|
+
Parameters?: Record<string, string[]>;
|
|
4443
4407
|
/**
|
|
4444
4408
|
* <p>The managed node IDs against which this command was requested.</p>
|
|
4445
4409
|
*/
|
|
@@ -4748,9 +4712,7 @@ export interface ComplianceItem {
|
|
|
4748
4712
|
/**
|
|
4749
4713
|
* <p>A "Key": "Value" tag combination for the compliance item.</p>
|
|
4750
4714
|
*/
|
|
4751
|
-
Details?:
|
|
4752
|
-
[key: string]: string;
|
|
4753
|
-
};
|
|
4715
|
+
Details?: Record<string, string>;
|
|
4754
4716
|
}
|
|
4755
4717
|
export declare namespace ComplianceItem {
|
|
4756
4718
|
/**
|
|
@@ -5502,9 +5464,7 @@ export interface ListInventoryEntriesResult {
|
|
|
5502
5464
|
/**
|
|
5503
5465
|
* <p>A list of inventory items on the managed node(s).</p>
|
|
5504
5466
|
*/
|
|
5505
|
-
Entries?:
|
|
5506
|
-
[key: string]: string;
|
|
5507
|
-
}[];
|
|
5467
|
+
Entries?: Record<string, string>[];
|
|
5508
5468
|
/**
|
|
5509
5469
|
* <p>The token to use when requesting the next set of items. If there are no additional items to
|
|
5510
5470
|
* return, the string is empty.</p>
|
|
@@ -6254,9 +6214,7 @@ export interface ComplianceItemEntry {
|
|
|
6254
6214
|
/**
|
|
6255
6215
|
* <p>A "Key": "Value" tag combination for the compliance item.</p>
|
|
6256
6216
|
*/
|
|
6257
|
-
Details?:
|
|
6258
|
-
[key: string]: string;
|
|
6259
|
-
};
|
|
6217
|
+
Details?: Record<string, string>;
|
|
6260
6218
|
}
|
|
6261
6219
|
export declare namespace ComplianceItemEntry {
|
|
6262
6220
|
/**
|
|
@@ -6409,17 +6367,13 @@ export interface InventoryItem {
|
|
|
6409
6367
|
/**
|
|
6410
6368
|
* <p>The inventory data of the inventory type.</p>
|
|
6411
6369
|
*/
|
|
6412
|
-
Content?:
|
|
6413
|
-
[key: string]: string;
|
|
6414
|
-
}[];
|
|
6370
|
+
Content?: Record<string, string>[];
|
|
6415
6371
|
/**
|
|
6416
6372
|
* <p>A map of associated properties for a specified inventory type. For example, with this
|
|
6417
6373
|
* attribute, you can specify the <code>ExecutionId</code>, <code>ExecutionType</code>,
|
|
6418
6374
|
* <code>ComplianceType</code> properties of the <code>AWS:ComplianceItem</code> type.</p>
|
|
6419
6375
|
*/
|
|
6420
|
-
Context?:
|
|
6421
|
-
[key: string]: string;
|
|
6422
|
-
};
|
|
6376
|
+
Context?: Record<string, string>;
|
|
6423
6377
|
}
|
|
6424
6378
|
export declare namespace InventoryItem {
|
|
6425
6379
|
/**
|
|
@@ -7148,9 +7102,7 @@ export interface RegisterTaskWithMaintenanceWindowRequest {
|
|
|
7148
7102
|
* types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>
|
|
7149
7103
|
* </note>
|
|
7150
7104
|
*/
|
|
7151
|
-
TaskParameters?:
|
|
7152
|
-
[key: string]: MaintenanceWindowTaskParameterValueExpression;
|
|
7153
|
-
};
|
|
7105
|
+
TaskParameters?: Record<string, MaintenanceWindowTaskParameterValueExpression>;
|
|
7154
7106
|
/**
|
|
7155
7107
|
* <p>The parameters that the task should use during execution. Populate only the fields that
|
|
7156
7108
|
* match the task type. All other fields should be empty. </p>
|
|
@@ -7478,9 +7430,7 @@ export interface SendAutomationSignalRequest {
|
|
|
7478
7430
|
* <code>StepExecutionId="97fff367-fc5a-4299-aed8-0123456789ab"</code>
|
|
7479
7431
|
* </p>
|
|
7480
7432
|
*/
|
|
7481
|
-
Payload?:
|
|
7482
|
-
[key: string]: string[];
|
|
7483
|
-
};
|
|
7433
|
+
Payload?: Record<string, string[]>;
|
|
7484
7434
|
}
|
|
7485
7435
|
export declare namespace SendAutomationSignalRequest {
|
|
7486
7436
|
/**
|
|
@@ -7607,9 +7557,7 @@ export interface SendCommandRequest {
|
|
|
7607
7557
|
/**
|
|
7608
7558
|
* <p>The required and optional parameters specified in the document being run.</p>
|
|
7609
7559
|
*/
|
|
7610
|
-
Parameters?:
|
|
7611
|
-
[key: string]: string[];
|
|
7612
|
-
};
|
|
7560
|
+
Parameters?: Record<string, string[]>;
|
|
7613
7561
|
/**
|
|
7614
7562
|
* <p>(Deprecated) You can no longer specify this parameter. The system ignores it. Instead, Systems Manager
|
|
7615
7563
|
* automatically determines the Amazon Web Services Region of the S3 bucket.</p>
|
|
@@ -7771,9 +7719,7 @@ export interface StartAutomationExecutionRequest {
|
|
|
7771
7719
|
* <p>A key-value map of execution parameters, which match the declared parameters in the
|
|
7772
7720
|
* Automation runbook.</p>
|
|
7773
7721
|
*/
|
|
7774
|
-
Parameters?:
|
|
7775
|
-
[key: string]: string[];
|
|
7776
|
-
};
|
|
7722
|
+
Parameters?: Record<string, string[]>;
|
|
7777
7723
|
/**
|
|
7778
7724
|
* <p>User-provided idempotency token. The token must be unique, is case insensitive, enforces the
|
|
7779
7725
|
* UUID format, and can't be reused.</p>
|
|
@@ -7797,9 +7743,7 @@ export interface StartAutomationExecutionRequest {
|
|
|
7797
7743
|
* <p>A key-value mapping of document parameters to target resources. Both Targets and TargetMaps
|
|
7798
7744
|
* can't be specified together.</p>
|
|
7799
7745
|
*/
|
|
7800
|
-
TargetMaps?:
|
|
7801
|
-
[key: string]: string[];
|
|
7802
|
-
}[];
|
|
7746
|
+
TargetMaps?: Record<string, string[]>[];
|
|
7803
7747
|
/**
|
|
7804
7748
|
* <p>The maximum number of targets allowed to run this task in parallel. You can specify a
|
|
7805
7749
|
* number, such as 10, or a percentage, such as 10%. The default value is <code>10</code>.</p>
|
|
@@ -7903,9 +7847,7 @@ export interface StartChangeRequestExecutionRequest {
|
|
|
7903
7847
|
* <p>A key-value map of parameters that match the declared parameters in the change template
|
|
7904
7848
|
* document.</p>
|
|
7905
7849
|
*/
|
|
7906
|
-
Parameters?:
|
|
7907
|
-
[key: string]: string[];
|
|
7908
|
-
};
|
|
7850
|
+
Parameters?: Record<string, string[]>;
|
|
7909
7851
|
/**
|
|
7910
7852
|
* <p>The name of the change request associated with the runbook workflow to be run.</p>
|
|
7911
7853
|
*/
|
|
@@ -8008,9 +7950,7 @@ export interface StartSessionRequest {
|
|
|
8008
7950
|
* <p>The values you want to specify for the parameters defined in the Session
|
|
8009
7951
|
* document.</p>
|
|
8010
7952
|
*/
|
|
8011
|
-
Parameters?:
|
|
8012
|
-
[key: string]: string[];
|
|
8013
|
-
};
|
|
7953
|
+
Parameters?: Record<string, string[]>;
|
|
8014
7954
|
}
|
|
8015
7955
|
export declare namespace StartSessionRequest {
|
|
8016
7956
|
/**
|
|
@@ -8202,9 +8142,7 @@ export interface UpdateAssociationRequest {
|
|
|
8202
8142
|
* Parameter Store, a capability of Amazon Web Services Systems Manager, you can reference the parameter using
|
|
8203
8143
|
* <code>{{ssm:parameter-name}}</code>.</p>
|
|
8204
8144
|
*/
|
|
8205
|
-
Parameters?:
|
|
8206
|
-
[key: string]: string[];
|
|
8207
|
-
};
|
|
8145
|
+
Parameters?: Record<string, string[]>;
|
|
8208
8146
|
/**
|
|
8209
8147
|
* <p>The document version you want update for the association. </p>
|
|
8210
8148
|
* <important>
|
|
@@ -8353,9 +8291,7 @@ export interface UpdateAssociationRequest {
|
|
|
8353
8291
|
* <p>A key-value mapping of document parameters to target resources. Both Targets and TargetMaps
|
|
8354
8292
|
* can't be specified together.</p>
|
|
8355
8293
|
*/
|
|
8356
|
-
TargetMaps?:
|
|
8357
|
-
[key: string]: string[];
|
|
8358
|
-
}[];
|
|
8294
|
+
TargetMaps?: Record<string, string[]>[];
|
|
8359
8295
|
}
|
|
8360
8296
|
export declare namespace UpdateAssociationRequest {
|
|
8361
8297
|
/**
|
|
@@ -304,9 +304,7 @@ export interface UpdateMaintenanceWindowTaskRequest {
|
|
|
304
304
|
* <p>Key: string, between 1 and 255 characters</p>
|
|
305
305
|
* <p>Value: an array of strings, each string is between 1 and 255 characters</p>
|
|
306
306
|
*/
|
|
307
|
-
TaskParameters?:
|
|
308
|
-
[key: string]: MaintenanceWindowTaskParameterValueExpression;
|
|
309
|
-
};
|
|
307
|
+
TaskParameters?: Record<string, MaintenanceWindowTaskParameterValueExpression>;
|
|
310
308
|
/**
|
|
311
309
|
* <p>The parameters that the task should use during execution. Populate only the fields that
|
|
312
310
|
* match the task type. All other fields should be empty.</p>
|
|
@@ -445,9 +443,7 @@ export interface UpdateMaintenanceWindowTaskResult {
|
|
|
445
443
|
* types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>
|
|
446
444
|
* </note>
|
|
447
445
|
*/
|
|
448
|
-
TaskParameters?:
|
|
449
|
-
[key: string]: MaintenanceWindowTaskParameterValueExpression;
|
|
450
|
-
};
|
|
446
|
+
TaskParameters?: Record<string, MaintenanceWindowTaskParameterValueExpression>;
|
|
451
447
|
/**
|
|
452
448
|
* <p>The updated parameter values.</p>
|
|
453
449
|
*/
|
|
@@ -547,9 +543,7 @@ export interface UpdateOpsItemRequest {
|
|
|
547
543
|
* Automation runbook with the OpsItem. To view Amazon Web Services CLI example commands that use these keys, see
|
|
548
544
|
* <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-creating-OpsItems.html#OpsCenter-manually-create-OpsItems">Creating OpsItems manually</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
|
|
549
545
|
*/
|
|
550
|
-
OperationalData?:
|
|
551
|
-
[key: string]: OpsItemDataValue;
|
|
552
|
-
};
|
|
546
|
+
OperationalData?: Record<string, OpsItemDataValue>;
|
|
553
547
|
/**
|
|
554
548
|
* <p>Keys that you want to remove from the OperationalData map.</p>
|
|
555
549
|
*/
|
|
@@ -645,9 +639,7 @@ export interface UpdateOpsMetadataRequest {
|
|
|
645
639
|
/**
|
|
646
640
|
* <p>Metadata to add to an OpsMetadata object.</p>
|
|
647
641
|
*/
|
|
648
|
-
MetadataToUpdate?:
|
|
649
|
-
[key: string]: MetadataValue;
|
|
650
|
-
};
|
|
642
|
+
MetadataToUpdate?: Record<string, MetadataValue>;
|
|
651
643
|
/**
|
|
652
644
|
* <p>The metadata keys to delete from the OpsMetadata object. </p>
|
|
653
645
|
*/
|
|
@@ -1024,9 +1016,7 @@ export interface OpsAggregator {
|
|
|
1024
1016
|
/**
|
|
1025
1017
|
* <p>The aggregator value.</p>
|
|
1026
1018
|
*/
|
|
1027
|
-
Values?:
|
|
1028
|
-
[key: string]: string;
|
|
1029
|
-
};
|
|
1019
|
+
Values?: Record<string, string>;
|
|
1030
1020
|
/**
|
|
1031
1021
|
* <p>The aggregator filters.</p>
|
|
1032
1022
|
*/
|
|
@@ -378,9 +378,7 @@ export interface CreateAssociationRequest {
|
|
|
378
378
|
|
|
379
379
|
InstanceId?: string;
|
|
380
380
|
|
|
381
|
-
Parameters?:
|
|
382
|
-
[key: string]: string[];
|
|
383
|
-
};
|
|
381
|
+
Parameters?: Record<string, string[]>;
|
|
384
382
|
|
|
385
383
|
Targets?: Target[];
|
|
386
384
|
|
|
@@ -408,9 +406,7 @@ export interface CreateAssociationRequest {
|
|
|
408
406
|
|
|
409
407
|
ScheduleOffset?: number;
|
|
410
408
|
|
|
411
|
-
TargetMaps?:
|
|
412
|
-
[key: string]: string[];
|
|
413
|
-
}[];
|
|
409
|
+
TargetMaps?: Record<string, string[]>[];
|
|
414
410
|
}
|
|
415
411
|
export declare namespace CreateAssociationRequest {
|
|
416
412
|
|
|
@@ -423,9 +419,7 @@ export interface AssociationOverview {
|
|
|
423
419
|
|
|
424
420
|
DetailedStatus?: string;
|
|
425
421
|
|
|
426
|
-
AssociationStatusAggregatedCount?:
|
|
427
|
-
[key: string]: number;
|
|
428
|
-
};
|
|
422
|
+
AssociationStatusAggregatedCount?: Record<string, number>;
|
|
429
423
|
}
|
|
430
424
|
export declare namespace AssociationOverview {
|
|
431
425
|
|
|
@@ -472,9 +466,7 @@ export interface AssociationDescription {
|
|
|
472
466
|
|
|
473
467
|
AutomationTargetParameterName?: string;
|
|
474
468
|
|
|
475
|
-
Parameters?:
|
|
476
|
-
[key: string]: string[];
|
|
477
|
-
};
|
|
469
|
+
Parameters?: Record<string, string[]>;
|
|
478
470
|
|
|
479
471
|
AssociationId?: string;
|
|
480
472
|
|
|
@@ -506,9 +498,7 @@ export interface AssociationDescription {
|
|
|
506
498
|
|
|
507
499
|
ScheduleOffset?: number;
|
|
508
500
|
|
|
509
|
-
TargetMaps?:
|
|
510
|
-
[key: string]: string[];
|
|
511
|
-
}[];
|
|
501
|
+
TargetMaps?: Record<string, string[]>[];
|
|
512
502
|
}
|
|
513
503
|
export declare namespace AssociationDescription {
|
|
514
504
|
|
|
@@ -585,9 +575,7 @@ export interface CreateAssociationBatchRequestEntry {
|
|
|
585
575
|
|
|
586
576
|
InstanceId?: string;
|
|
587
577
|
|
|
588
|
-
Parameters?:
|
|
589
|
-
[key: string]: string[];
|
|
590
|
-
};
|
|
578
|
+
Parameters?: Record<string, string[]>;
|
|
591
579
|
|
|
592
580
|
AutomationTargetParameterName?: string;
|
|
593
581
|
|
|
@@ -617,9 +605,7 @@ export interface CreateAssociationBatchRequestEntry {
|
|
|
617
605
|
|
|
618
606
|
ScheduleOffset?: number;
|
|
619
607
|
|
|
620
|
-
TargetMaps?:
|
|
621
|
-
[key: string]: string[];
|
|
622
|
-
}[];
|
|
608
|
+
TargetMaps?: Record<string, string[]>[];
|
|
623
609
|
}
|
|
624
610
|
export declare namespace CreateAssociationBatchRequestEntry {
|
|
625
611
|
|
|
@@ -1000,9 +986,7 @@ export interface CreateOpsItemRequest {
|
|
|
1000
986
|
|
|
1001
987
|
OpsItemType?: string;
|
|
1002
988
|
|
|
1003
|
-
OperationalData?:
|
|
1004
|
-
[key: string]: OpsItemDataValue;
|
|
1005
|
-
};
|
|
989
|
+
OperationalData?: Record<string, OpsItemDataValue>;
|
|
1006
990
|
|
|
1007
991
|
Notifications?: OpsItemNotification[];
|
|
1008
992
|
|
|
@@ -1062,9 +1046,7 @@ export interface CreateOpsMetadataRequest {
|
|
|
1062
1046
|
|
|
1063
1047
|
ResourceId: string | undefined;
|
|
1064
1048
|
|
|
1065
|
-
Metadata?:
|
|
1066
|
-
[key: string]: MetadataValue;
|
|
1067
|
-
};
|
|
1049
|
+
Metadata?: Record<string, MetadataValue>;
|
|
1068
1050
|
|
|
1069
1051
|
Tags?: Tag[];
|
|
1070
1052
|
}
|
|
@@ -2081,17 +2063,13 @@ export interface Runbook {
|
|
|
2081
2063
|
|
|
2082
2064
|
DocumentVersion?: string;
|
|
2083
2065
|
|
|
2084
|
-
Parameters?:
|
|
2085
|
-
[key: string]: string[];
|
|
2086
|
-
};
|
|
2066
|
+
Parameters?: Record<string, string[]>;
|
|
2087
2067
|
|
|
2088
2068
|
TargetParameterName?: string;
|
|
2089
2069
|
|
|
2090
2070
|
Targets?: Target[];
|
|
2091
2071
|
|
|
2092
|
-
TargetMaps?:
|
|
2093
|
-
[key: string]: string[];
|
|
2094
|
-
}[];
|
|
2072
|
+
TargetMaps?: Record<string, string[]>[];
|
|
2095
2073
|
|
|
2096
2074
|
MaxConcurrency?: string;
|
|
2097
2075
|
|
|
@@ -2122,9 +2100,7 @@ export interface AutomationExecutionMetadata {
|
|
|
2122
2100
|
|
|
2123
2101
|
LogFile?: string;
|
|
2124
2102
|
|
|
2125
|
-
Outputs?:
|
|
2126
|
-
[key: string]: string[];
|
|
2127
|
-
};
|
|
2103
|
+
Outputs?: Record<string, string[]>;
|
|
2128
2104
|
|
|
2129
2105
|
Mode?: ExecutionMode | string;
|
|
2130
2106
|
|
|
@@ -2140,9 +2116,7 @@ export interface AutomationExecutionMetadata {
|
|
|
2140
2116
|
|
|
2141
2117
|
Targets?: Target[];
|
|
2142
2118
|
|
|
2143
|
-
TargetMaps?:
|
|
2144
|
-
[key: string]: string[];
|
|
2145
|
-
}[];
|
|
2119
|
+
TargetMaps?: Record<string, string[]>[];
|
|
2146
2120
|
|
|
2147
2121
|
ResolvedTargets?: ResolvedTargets;
|
|
2148
2122
|
|
|
@@ -2245,9 +2219,7 @@ export interface FailureDetails {
|
|
|
2245
2219
|
|
|
2246
2220
|
FailureType?: string;
|
|
2247
2221
|
|
|
2248
|
-
Details?:
|
|
2249
|
-
[key: string]: string[];
|
|
2250
|
-
};
|
|
2222
|
+
Details?: Record<string, string[]>;
|
|
2251
2223
|
}
|
|
2252
2224
|
export declare namespace FailureDetails {
|
|
2253
2225
|
|
|
@@ -2274,13 +2246,9 @@ export interface StepExecution {
|
|
|
2274
2246
|
|
|
2275
2247
|
ResponseCode?: string;
|
|
2276
2248
|
|
|
2277
|
-
Inputs?:
|
|
2278
|
-
[key: string]: string;
|
|
2279
|
-
};
|
|
2249
|
+
Inputs?: Record<string, string>;
|
|
2280
2250
|
|
|
2281
|
-
Outputs?:
|
|
2282
|
-
[key: string]: string[];
|
|
2283
|
-
};
|
|
2251
|
+
Outputs?: Record<string, string[]>;
|
|
2284
2252
|
|
|
2285
2253
|
Response?: string;
|
|
2286
2254
|
|
|
@@ -2290,9 +2258,7 @@ export interface StepExecution {
|
|
|
2290
2258
|
|
|
2291
2259
|
StepExecutionId?: string;
|
|
2292
2260
|
|
|
2293
|
-
OverriddenParameters?:
|
|
2294
|
-
[key: string]: string[];
|
|
2295
|
-
};
|
|
2261
|
+
OverriddenParameters?: Record<string, string[]>;
|
|
2296
2262
|
|
|
2297
2263
|
IsEnd?: boolean;
|
|
2298
2264
|
|
|
@@ -2682,9 +2648,7 @@ export interface InstanceAggregatedAssociationOverview {
|
|
|
2682
2648
|
|
|
2683
2649
|
DetailedStatus?: string;
|
|
2684
2650
|
|
|
2685
|
-
InstanceAssociationStatusAggregatedCount?:
|
|
2686
|
-
[key: string]: number;
|
|
2687
|
-
};
|
|
2651
|
+
InstanceAssociationStatusAggregatedCount?: Record<string, number>;
|
|
2688
2652
|
}
|
|
2689
2653
|
export declare namespace InstanceAggregatedAssociationOverview {
|
|
2690
2654
|
|
|
@@ -3409,9 +3373,7 @@ export interface MaintenanceWindowTask {
|
|
|
3409
3373
|
|
|
3410
3374
|
Targets?: Target[];
|
|
3411
3375
|
|
|
3412
|
-
TaskParameters?:
|
|
3413
|
-
[key: string]: MaintenanceWindowTaskParameterValueExpression;
|
|
3414
|
-
};
|
|
3376
|
+
TaskParameters?: Record<string, MaintenanceWindowTaskParameterValueExpression>;
|
|
3415
3377
|
|
|
3416
3378
|
Priority?: number;
|
|
3417
3379
|
|
|
@@ -3545,9 +3507,7 @@ export interface OpsItemSummary {
|
|
|
3545
3507
|
|
|
3546
3508
|
Title?: string;
|
|
3547
3509
|
|
|
3548
|
-
OperationalData?:
|
|
3549
|
-
[key: string]: OpsItemDataValue;
|
|
3550
|
-
};
|
|
3510
|
+
OperationalData?: Record<string, OpsItemDataValue>;
|
|
3551
3511
|
|
|
3552
3512
|
Category?: string;
|
|
3553
3513
|
|
|
@@ -197,9 +197,7 @@ export declare namespace DescribePatchPropertiesRequest {
|
|
|
197
197
|
}
|
|
198
198
|
export interface DescribePatchPropertiesResult {
|
|
199
199
|
|
|
200
|
-
Properties?:
|
|
201
|
-
[key: string]: string;
|
|
202
|
-
}[];
|
|
200
|
+
Properties?: Record<string, string>[];
|
|
203
201
|
|
|
204
202
|
NextToken?: string;
|
|
205
203
|
}
|
|
@@ -370,13 +368,9 @@ export interface AutomationExecution {
|
|
|
370
368
|
|
|
371
369
|
StepExecutionsTruncated?: boolean;
|
|
372
370
|
|
|
373
|
-
Parameters?:
|
|
374
|
-
[key: string]: string[];
|
|
375
|
-
};
|
|
371
|
+
Parameters?: Record<string, string[]>;
|
|
376
372
|
|
|
377
|
-
Outputs?:
|
|
378
|
-
[key: string]: string[];
|
|
379
|
-
};
|
|
373
|
+
Outputs?: Record<string, string[]>;
|
|
380
374
|
|
|
381
375
|
FailureMessage?: string;
|
|
382
376
|
|
|
@@ -394,9 +388,7 @@ export interface AutomationExecution {
|
|
|
394
388
|
|
|
395
389
|
Targets?: Target[];
|
|
396
390
|
|
|
397
|
-
TargetMaps?:
|
|
398
|
-
[key: string]: string[];
|
|
399
|
-
}[];
|
|
391
|
+
TargetMaps?: Record<string, string[]>[];
|
|
400
392
|
|
|
401
393
|
ResolvedTargets?: ResolvedTargets;
|
|
402
394
|
|
|
@@ -780,9 +772,7 @@ export interface InventoryResultItem {
|
|
|
780
772
|
|
|
781
773
|
ContentHash?: string;
|
|
782
774
|
|
|
783
|
-
Content:
|
|
784
|
-
[key: string]: string;
|
|
785
|
-
}[] | undefined;
|
|
775
|
+
Content: Record<string, string>[] | undefined;
|
|
786
776
|
}
|
|
787
777
|
export declare namespace InventoryResultItem {
|
|
788
778
|
|
|
@@ -793,9 +783,7 @@ export interface InventoryResultEntity {
|
|
|
793
783
|
|
|
794
784
|
Id?: string;
|
|
795
785
|
|
|
796
|
-
Data?:
|
|
797
|
-
[key: string]: InventoryResultItem;
|
|
798
|
-
};
|
|
786
|
+
Data?: Record<string, InventoryResultItem>;
|
|
799
787
|
}
|
|
800
788
|
export declare namespace InventoryResultEntity {
|
|
801
789
|
|
|
@@ -983,9 +971,7 @@ export interface GetMaintenanceWindowExecutionTaskResult {
|
|
|
983
971
|
|
|
984
972
|
Type?: MaintenanceWindowTaskType | string;
|
|
985
973
|
|
|
986
|
-
TaskParameters?:
|
|
987
|
-
[key: string]: MaintenanceWindowTaskParameterValueExpression;
|
|
988
|
-
}[];
|
|
974
|
+
TaskParameters?: Record<string, MaintenanceWindowTaskParameterValueExpression>[];
|
|
989
975
|
|
|
990
976
|
Priority?: number;
|
|
991
977
|
|
|
@@ -1062,9 +1048,7 @@ export interface MaintenanceWindowAutomationParameters {
|
|
|
1062
1048
|
|
|
1063
1049
|
DocumentVersion?: string;
|
|
1064
1050
|
|
|
1065
|
-
Parameters?:
|
|
1066
|
-
[key: string]: string[];
|
|
1067
|
-
};
|
|
1051
|
+
Parameters?: Record<string, string[]>;
|
|
1068
1052
|
}
|
|
1069
1053
|
export declare namespace MaintenanceWindowAutomationParameters {
|
|
1070
1054
|
|
|
@@ -1127,9 +1111,7 @@ export interface MaintenanceWindowRunCommandParameters {
|
|
|
1127
1111
|
|
|
1128
1112
|
OutputS3KeyPrefix?: string;
|
|
1129
1113
|
|
|
1130
|
-
Parameters?:
|
|
1131
|
-
[key: string]: string[];
|
|
1132
|
-
};
|
|
1114
|
+
Parameters?: Record<string, string[]>;
|
|
1133
1115
|
|
|
1134
1116
|
ServiceRoleArn?: string;
|
|
1135
1117
|
|
|
@@ -1179,9 +1161,7 @@ export interface GetMaintenanceWindowTaskResult {
|
|
|
1179
1161
|
|
|
1180
1162
|
TaskType?: MaintenanceWindowTaskType | string;
|
|
1181
1163
|
|
|
1182
|
-
TaskParameters?:
|
|
1183
|
-
[key: string]: MaintenanceWindowTaskParameterValueExpression;
|
|
1184
|
-
};
|
|
1164
|
+
TaskParameters?: Record<string, MaintenanceWindowTaskParameterValueExpression>;
|
|
1185
1165
|
|
|
1186
1166
|
TaskInvocationParameters?: MaintenanceWindowTaskInvocationParameters;
|
|
1187
1167
|
|
|
@@ -1242,9 +1222,7 @@ export interface OpsItem {
|
|
|
1242
1222
|
|
|
1243
1223
|
Source?: string;
|
|
1244
1224
|
|
|
1245
|
-
OperationalData?:
|
|
1246
|
-
[key: string]: OpsItemDataValue;
|
|
1247
|
-
};
|
|
1225
|
+
OperationalData?: Record<string, OpsItemDataValue>;
|
|
1248
1226
|
|
|
1249
1227
|
Category?: string;
|
|
1250
1228
|
|
|
@@ -1286,9 +1264,7 @@ export interface GetOpsMetadataResult {
|
|
|
1286
1264
|
|
|
1287
1265
|
ResourceId?: string;
|
|
1288
1266
|
|
|
1289
|
-
Metadata?:
|
|
1290
|
-
[key: string]: MetadataValue;
|
|
1291
|
-
};
|
|
1267
|
+
Metadata?: Record<string, MetadataValue>;
|
|
1292
1268
|
|
|
1293
1269
|
NextToken?: string;
|
|
1294
1270
|
}
|
|
@@ -1331,9 +1307,7 @@ export interface OpsEntityItem {
|
|
|
1331
1307
|
|
|
1332
1308
|
CaptureTime?: string;
|
|
1333
1309
|
|
|
1334
|
-
Content?:
|
|
1335
|
-
[key: string]: string;
|
|
1336
|
-
}[];
|
|
1310
|
+
Content?: Record<string, string>[];
|
|
1337
1311
|
}
|
|
1338
1312
|
export declare namespace OpsEntityItem {
|
|
1339
1313
|
|
|
@@ -1344,9 +1318,7 @@ export interface OpsEntity {
|
|
|
1344
1318
|
|
|
1345
1319
|
Id?: string;
|
|
1346
1320
|
|
|
1347
|
-
Data?:
|
|
1348
|
-
[key: string]: OpsEntityItem;
|
|
1349
|
-
};
|
|
1321
|
+
Data?: Record<string, OpsEntityItem>;
|
|
1350
1322
|
}
|
|
1351
1323
|
export declare namespace OpsEntity {
|
|
1352
1324
|
|
|
@@ -1722,9 +1694,7 @@ export interface Association {
|
|
|
1722
1694
|
|
|
1723
1695
|
ScheduleOffset?: number;
|
|
1724
1696
|
|
|
1725
|
-
TargetMaps?:
|
|
1726
|
-
[key: string]: string[];
|
|
1727
|
-
}[];
|
|
1697
|
+
TargetMaps?: Record<string, string[]>[];
|
|
1728
1698
|
}
|
|
1729
1699
|
export declare namespace Association {
|
|
1730
1700
|
|
|
@@ -1765,9 +1735,7 @@ export interface AssociationVersionInfo {
|
|
|
1765
1735
|
|
|
1766
1736
|
DocumentVersion?: string;
|
|
1767
1737
|
|
|
1768
|
-
Parameters?:
|
|
1769
|
-
[key: string]: string[];
|
|
1770
|
-
};
|
|
1738
|
+
Parameters?: Record<string, string[]>;
|
|
1771
1739
|
|
|
1772
1740
|
Targets?: Target[];
|
|
1773
1741
|
|
|
@@ -1793,9 +1761,7 @@ export interface AssociationVersionInfo {
|
|
|
1793
1761
|
|
|
1794
1762
|
ScheduleOffset?: number;
|
|
1795
1763
|
|
|
1796
|
-
TargetMaps?:
|
|
1797
|
-
[key: string]: string[];
|
|
1798
|
-
}[];
|
|
1764
|
+
TargetMaps?: Record<string, string[]>[];
|
|
1799
1765
|
}
|
|
1800
1766
|
export declare namespace AssociationVersionInfo {
|
|
1801
1767
|
|
|
@@ -1973,9 +1939,7 @@ export interface Command {
|
|
|
1973
1939
|
|
|
1974
1940
|
ExpiresAfter?: Date;
|
|
1975
1941
|
|
|
1976
|
-
Parameters?:
|
|
1977
|
-
[key: string]: string[];
|
|
1978
|
-
};
|
|
1942
|
+
Parameters?: Record<string, string[]>;
|
|
1979
1943
|
|
|
1980
1944
|
InstanceIds?: string[];
|
|
1981
1945
|
|
|
@@ -2107,9 +2071,7 @@ export interface ComplianceItem {
|
|
|
2107
2071
|
|
|
2108
2072
|
ExecutionSummary?: ComplianceExecutionSummary;
|
|
2109
2073
|
|
|
2110
|
-
Details?:
|
|
2111
|
-
[key: string]: string;
|
|
2112
|
-
};
|
|
2074
|
+
Details?: Record<string, string>;
|
|
2113
2075
|
}
|
|
2114
2076
|
export declare namespace ComplianceItem {
|
|
2115
2077
|
|
|
@@ -2440,9 +2402,7 @@ export interface ListInventoryEntriesResult {
|
|
|
2440
2402
|
|
|
2441
2403
|
CaptureTime?: string;
|
|
2442
2404
|
|
|
2443
|
-
Entries?:
|
|
2444
|
-
[key: string]: string;
|
|
2445
|
-
}[];
|
|
2405
|
+
Entries?: Record<string, string>[];
|
|
2446
2406
|
|
|
2447
2407
|
NextToken?: string;
|
|
2448
2408
|
}
|
|
@@ -2844,9 +2804,7 @@ export interface ComplianceItemEntry {
|
|
|
2844
2804
|
|
|
2845
2805
|
Status: ComplianceStatus | string | undefined;
|
|
2846
2806
|
|
|
2847
|
-
Details?:
|
|
2848
|
-
[key: string]: string;
|
|
2849
|
-
};
|
|
2807
|
+
Details?: Record<string, string>;
|
|
2850
2808
|
}
|
|
2851
2809
|
export declare namespace ComplianceItemEntry {
|
|
2852
2810
|
|
|
@@ -2926,13 +2884,9 @@ export interface InventoryItem {
|
|
|
2926
2884
|
|
|
2927
2885
|
ContentHash?: string;
|
|
2928
2886
|
|
|
2929
|
-
Content?:
|
|
2930
|
-
[key: string]: string;
|
|
2931
|
-
}[];
|
|
2887
|
+
Content?: Record<string, string>[];
|
|
2932
2888
|
|
|
2933
|
-
Context?:
|
|
2934
|
-
[key: string]: string;
|
|
2935
|
-
};
|
|
2889
|
+
Context?: Record<string, string>;
|
|
2936
2890
|
}
|
|
2937
2891
|
export declare namespace InventoryItem {
|
|
2938
2892
|
|
|
@@ -3187,9 +3141,7 @@ export interface RegisterTaskWithMaintenanceWindowRequest {
|
|
|
3187
3141
|
|
|
3188
3142
|
TaskType: MaintenanceWindowTaskType | string | undefined;
|
|
3189
3143
|
|
|
3190
|
-
TaskParameters?:
|
|
3191
|
-
[key: string]: MaintenanceWindowTaskParameterValueExpression;
|
|
3192
|
-
};
|
|
3144
|
+
TaskParameters?: Record<string, MaintenanceWindowTaskParameterValueExpression>;
|
|
3193
3145
|
|
|
3194
3146
|
TaskInvocationParameters?: MaintenanceWindowTaskInvocationParameters;
|
|
3195
3147
|
|
|
@@ -3306,9 +3258,7 @@ export interface SendAutomationSignalRequest {
|
|
|
3306
3258
|
|
|
3307
3259
|
SignalType: SignalType | string | undefined;
|
|
3308
3260
|
|
|
3309
|
-
Payload?:
|
|
3310
|
-
[key: string]: string[];
|
|
3311
|
-
};
|
|
3261
|
+
Payload?: Record<string, string[]>;
|
|
3312
3262
|
}
|
|
3313
3263
|
export declare namespace SendAutomationSignalRequest {
|
|
3314
3264
|
|
|
@@ -3361,9 +3311,7 @@ export interface SendCommandRequest {
|
|
|
3361
3311
|
|
|
3362
3312
|
Comment?: string;
|
|
3363
3313
|
|
|
3364
|
-
Parameters?:
|
|
3365
|
-
[key: string]: string[];
|
|
3366
|
-
};
|
|
3314
|
+
Parameters?: Record<string, string[]>;
|
|
3367
3315
|
|
|
3368
3316
|
OutputS3Region?: string;
|
|
3369
3317
|
|
|
@@ -3453,9 +3401,7 @@ export interface StartAutomationExecutionRequest {
|
|
|
3453
3401
|
|
|
3454
3402
|
DocumentVersion?: string;
|
|
3455
3403
|
|
|
3456
|
-
Parameters?:
|
|
3457
|
-
[key: string]: string[];
|
|
3458
|
-
};
|
|
3404
|
+
Parameters?: Record<string, string[]>;
|
|
3459
3405
|
|
|
3460
3406
|
ClientToken?: string;
|
|
3461
3407
|
|
|
@@ -3465,9 +3411,7 @@ export interface StartAutomationExecutionRequest {
|
|
|
3465
3411
|
|
|
3466
3412
|
Targets?: Target[];
|
|
3467
3413
|
|
|
3468
|
-
TargetMaps?:
|
|
3469
|
-
[key: string]: string[];
|
|
3470
|
-
}[];
|
|
3414
|
+
TargetMaps?: Record<string, string[]>[];
|
|
3471
3415
|
|
|
3472
3416
|
MaxConcurrency?: string;
|
|
3473
3417
|
|
|
@@ -3505,9 +3449,7 @@ export interface StartChangeRequestExecutionRequest {
|
|
|
3505
3449
|
|
|
3506
3450
|
DocumentVersion?: string;
|
|
3507
3451
|
|
|
3508
|
-
Parameters?:
|
|
3509
|
-
[key: string]: string[];
|
|
3510
|
-
};
|
|
3452
|
+
Parameters?: Record<string, string[]>;
|
|
3511
3453
|
|
|
3512
3454
|
ChangeRequestName?: string;
|
|
3513
3455
|
|
|
@@ -3543,9 +3485,7 @@ export interface StartSessionRequest {
|
|
|
3543
3485
|
|
|
3544
3486
|
Reason?: string;
|
|
3545
3487
|
|
|
3546
|
-
Parameters?:
|
|
3547
|
-
[key: string]: string[];
|
|
3548
|
-
};
|
|
3488
|
+
Parameters?: Record<string, string[]>;
|
|
3549
3489
|
}
|
|
3550
3490
|
export declare namespace StartSessionRequest {
|
|
3551
3491
|
|
|
@@ -3657,9 +3597,7 @@ export interface UpdateAssociationRequest {
|
|
|
3657
3597
|
|
|
3658
3598
|
AssociationId: string | undefined;
|
|
3659
3599
|
|
|
3660
|
-
Parameters?:
|
|
3661
|
-
[key: string]: string[];
|
|
3662
|
-
};
|
|
3600
|
+
Parameters?: Record<string, string[]>;
|
|
3663
3601
|
|
|
3664
3602
|
DocumentVersion?: string;
|
|
3665
3603
|
|
|
@@ -3693,9 +3631,7 @@ export interface UpdateAssociationRequest {
|
|
|
3693
3631
|
|
|
3694
3632
|
ScheduleOffset?: number;
|
|
3695
3633
|
|
|
3696
|
-
TargetMaps?:
|
|
3697
|
-
[key: string]: string[];
|
|
3698
|
-
}[];
|
|
3634
|
+
TargetMaps?: Record<string, string[]>[];
|
|
3699
3635
|
}
|
|
3700
3636
|
export declare namespace UpdateAssociationRequest {
|
|
3701
3637
|
|
|
@@ -132,9 +132,7 @@ export interface UpdateMaintenanceWindowTaskRequest {
|
|
|
132
132
|
|
|
133
133
|
ServiceRoleArn?: string;
|
|
134
134
|
|
|
135
|
-
TaskParameters?:
|
|
136
|
-
[key: string]: MaintenanceWindowTaskParameterValueExpression;
|
|
137
|
-
};
|
|
135
|
+
TaskParameters?: Record<string, MaintenanceWindowTaskParameterValueExpression>;
|
|
138
136
|
|
|
139
137
|
TaskInvocationParameters?: MaintenanceWindowTaskInvocationParameters;
|
|
140
138
|
|
|
@@ -170,9 +168,7 @@ export interface UpdateMaintenanceWindowTaskResult {
|
|
|
170
168
|
|
|
171
169
|
ServiceRoleArn?: string;
|
|
172
170
|
|
|
173
|
-
TaskParameters?:
|
|
174
|
-
[key: string]: MaintenanceWindowTaskParameterValueExpression;
|
|
175
|
-
};
|
|
171
|
+
TaskParameters?: Record<string, MaintenanceWindowTaskParameterValueExpression>;
|
|
176
172
|
|
|
177
173
|
TaskInvocationParameters?: MaintenanceWindowTaskInvocationParameters;
|
|
178
174
|
|
|
@@ -214,9 +210,7 @@ export interface UpdateOpsItemRequest {
|
|
|
214
210
|
|
|
215
211
|
Description?: string;
|
|
216
212
|
|
|
217
|
-
OperationalData?:
|
|
218
|
-
[key: string]: OpsItemDataValue;
|
|
219
|
-
};
|
|
213
|
+
OperationalData?: Record<string, OpsItemDataValue>;
|
|
220
214
|
|
|
221
215
|
OperationalDataToDelete?: string[];
|
|
222
216
|
|
|
@@ -265,9 +259,7 @@ export interface UpdateOpsMetadataRequest {
|
|
|
265
259
|
|
|
266
260
|
OpsMetadataArn: string | undefined;
|
|
267
261
|
|
|
268
|
-
MetadataToUpdate?:
|
|
269
|
-
[key: string]: MetadataValue;
|
|
270
|
-
};
|
|
262
|
+
MetadataToUpdate?: Record<string, MetadataValue>;
|
|
271
263
|
|
|
272
264
|
KeysToDelete?: string[];
|
|
273
265
|
}
|
|
@@ -413,9 +405,7 @@ export interface OpsAggregator {
|
|
|
413
405
|
|
|
414
406
|
AttributeName?: string;
|
|
415
407
|
|
|
416
|
-
Values?:
|
|
417
|
-
[key: string]: string;
|
|
418
|
-
};
|
|
408
|
+
Values?: Record<string, string>;
|
|
419
409
|
|
|
420
410
|
Filters?: OpsFilter[];
|
|
421
411
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.109.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",
|
|
@@ -18,37 +18,38 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-
|
|
31
|
-
"@aws-sdk/middleware-
|
|
32
|
-
"@aws-sdk/middleware-
|
|
33
|
-
"@aws-sdk/middleware-
|
|
34
|
-
"@aws-sdk/middleware-
|
|
35
|
-
"@aws-sdk/
|
|
36
|
-
"@aws-sdk/node-
|
|
37
|
-
"@aws-sdk/
|
|
38
|
-
"@aws-sdk/
|
|
39
|
-
"@aws-sdk/
|
|
40
|
-
"@aws-sdk/
|
|
41
|
-
"@aws-sdk/
|
|
21
|
+
"@aws-sdk/client-sts": "3.109.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.109.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.109.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.109.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.109.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.109.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.109.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.109.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.109.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.109.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.109.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.109.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.109.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.109.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.109.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.109.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.109.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.109.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.109.0",
|
|
40
|
+
"@aws-sdk/types": "3.109.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.109.0",
|
|
42
|
+
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
42
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
51
|
-
"@aws-sdk/util-waiter": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.109.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.109.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.109.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.109.0",
|
|
50
|
+
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
|
+
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
|
+
"@aws-sdk/util-waiter": "3.109.0",
|
|
52
53
|
"tslib": "^2.3.1",
|
|
53
54
|
"uuid": "^8.3.2"
|
|
54
55
|
},
|