@aws-sdk/client-ssm 3.301.0 → 3.303.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +344 -392
- package/dist-cjs/models/models_1.js +220 -256
- package/dist-cjs/models/models_2.js +6 -7
- package/dist-es/models/models_0.js +344 -392
- package/dist-es/models/models_1.js +220 -256
- package/dist-es/models/models_2.js +6 -7
- package/dist-types/models/models_0.d.ts +587 -347
- package/dist-types/models/models_1.d.ts +401 -221
- package/dist-types/models/models_2.d.ts +11 -6
- package/dist-types/ts3.4/models/models_0.d.ts +430 -344
- package/dist-types/ts3.4/models/models_1.d.ts +281 -220
- package/dist-types/ts3.4/models/models_2.d.ts +8 -6
- package/package.json +35 -35
|
@@ -98,28 +98,33 @@ export interface DescribeOpsItemsRequest {
|
|
|
98
98
|
}
|
|
99
99
|
/**
|
|
100
100
|
* @public
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
101
|
+
* @enum
|
|
102
|
+
*/
|
|
103
|
+
export declare const OpsItemStatus: {
|
|
104
|
+
readonly APPROVED: "Approved";
|
|
105
|
+
readonly CANCELLED: "Cancelled";
|
|
106
|
+
readonly CANCELLING: "Cancelling";
|
|
107
|
+
readonly CHANGE_CALENDAR_OVERRIDE_APPROVED: "ChangeCalendarOverrideApproved";
|
|
108
|
+
readonly CHANGE_CALENDAR_OVERRIDE_REJECTED: "ChangeCalendarOverrideRejected";
|
|
109
|
+
readonly CLOSED: "Closed";
|
|
110
|
+
readonly COMPLETED_WITH_FAILURE: "CompletedWithFailure";
|
|
111
|
+
readonly COMPLETED_WITH_SUCCESS: "CompletedWithSuccess";
|
|
112
|
+
readonly FAILED: "Failed";
|
|
113
|
+
readonly IN_PROGRESS: "InProgress";
|
|
114
|
+
readonly OPEN: "Open";
|
|
115
|
+
readonly PENDING: "Pending";
|
|
116
|
+
readonly PENDING_APPROVAL: "PendingApproval";
|
|
117
|
+
readonly PENDING_CHANGE_CALENDAR_OVERRIDE: "PendingChangeCalendarOverride";
|
|
118
|
+
readonly REJECTED: "Rejected";
|
|
119
|
+
readonly RESOLVED: "Resolved";
|
|
120
|
+
readonly RUNBOOK_IN_PROGRESS: "RunbookInProgress";
|
|
121
|
+
readonly SCHEDULED: "Scheduled";
|
|
122
|
+
readonly TIMED_OUT: "TimedOut";
|
|
123
|
+
};
|
|
124
|
+
/**
|
|
125
|
+
* @public
|
|
126
|
+
*/
|
|
127
|
+
export type OpsItemStatus = (typeof OpsItemStatus)[keyof typeof OpsItemStatus];
|
|
123
128
|
/**
|
|
124
129
|
* @public
|
|
125
130
|
* <p>A count of OpsItems.</p>
|
|
@@ -240,12 +245,17 @@ export interface DescribeOpsItemsResponse {
|
|
|
240
245
|
}
|
|
241
246
|
/**
|
|
242
247
|
* @public
|
|
248
|
+
* @enum
|
|
243
249
|
*/
|
|
244
|
-
export declare
|
|
245
|
-
KEY_ID
|
|
246
|
-
NAME
|
|
247
|
-
TYPE
|
|
248
|
-
}
|
|
250
|
+
export declare const ParametersFilterKey: {
|
|
251
|
+
readonly KEY_ID: "KeyId";
|
|
252
|
+
readonly NAME: "Name";
|
|
253
|
+
readonly TYPE: "Type";
|
|
254
|
+
};
|
|
255
|
+
/**
|
|
256
|
+
* @public
|
|
257
|
+
*/
|
|
258
|
+
export type ParametersFilterKey = (typeof ParametersFilterKey)[keyof typeof ParametersFilterKey];
|
|
249
259
|
/**
|
|
250
260
|
* @public
|
|
251
261
|
* <p>This data type is deprecated. Instead, use <a>ParameterStringFilter</a>.</p>
|
|
@@ -341,20 +351,30 @@ export interface ParameterInlinePolicy {
|
|
|
341
351
|
}
|
|
342
352
|
/**
|
|
343
353
|
* @public
|
|
354
|
+
* @enum
|
|
344
355
|
*/
|
|
345
|
-
export declare
|
|
346
|
-
ADVANCED
|
|
347
|
-
INTELLIGENT_TIERING
|
|
348
|
-
STANDARD
|
|
349
|
-
}
|
|
356
|
+
export declare const ParameterTier: {
|
|
357
|
+
readonly ADVANCED: "Advanced";
|
|
358
|
+
readonly INTELLIGENT_TIERING: "Intelligent-Tiering";
|
|
359
|
+
readonly STANDARD: "Standard";
|
|
360
|
+
};
|
|
350
361
|
/**
|
|
351
362
|
* @public
|
|
352
363
|
*/
|
|
353
|
-
export
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
364
|
+
export type ParameterTier = (typeof ParameterTier)[keyof typeof ParameterTier];
|
|
365
|
+
/**
|
|
366
|
+
* @public
|
|
367
|
+
* @enum
|
|
368
|
+
*/
|
|
369
|
+
export declare const ParameterType: {
|
|
370
|
+
readonly SECURE_STRING: "SecureString";
|
|
371
|
+
readonly STRING: "String";
|
|
372
|
+
readonly STRING_LIST: "StringList";
|
|
373
|
+
};
|
|
374
|
+
/**
|
|
375
|
+
* @public
|
|
376
|
+
*/
|
|
377
|
+
export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
|
|
358
378
|
/**
|
|
359
379
|
* @public
|
|
360
380
|
* <p>Metadata includes information like the ARN of the last user and the date/time the parameter
|
|
@@ -688,22 +708,32 @@ export interface DescribePatchGroupStateResult {
|
|
|
688
708
|
}
|
|
689
709
|
/**
|
|
690
710
|
* @public
|
|
711
|
+
* @enum
|
|
691
712
|
*/
|
|
692
|
-
export declare
|
|
693
|
-
Application
|
|
694
|
-
Os
|
|
695
|
-
}
|
|
713
|
+
export declare const PatchSet: {
|
|
714
|
+
readonly Application: "APPLICATION";
|
|
715
|
+
readonly Os: "OS";
|
|
716
|
+
};
|
|
696
717
|
/**
|
|
697
718
|
* @public
|
|
698
719
|
*/
|
|
699
|
-
export
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
720
|
+
export type PatchSet = (typeof PatchSet)[keyof typeof PatchSet];
|
|
721
|
+
/**
|
|
722
|
+
* @public
|
|
723
|
+
* @enum
|
|
724
|
+
*/
|
|
725
|
+
export declare const PatchProperty: {
|
|
726
|
+
readonly PatchClassification: "CLASSIFICATION";
|
|
727
|
+
readonly PatchMsrcSeverity: "MSRC_SEVERITY";
|
|
728
|
+
readonly PatchPriority: "PRIORITY";
|
|
729
|
+
readonly PatchProductFamily: "PRODUCT_FAMILY";
|
|
730
|
+
readonly PatchSeverity: "SEVERITY";
|
|
731
|
+
readonly Product: "PRODUCT";
|
|
732
|
+
};
|
|
733
|
+
/**
|
|
734
|
+
* @public
|
|
735
|
+
*/
|
|
736
|
+
export type PatchProperty = (typeof PatchProperty)[keyof typeof PatchProperty];
|
|
707
737
|
/**
|
|
708
738
|
* @public
|
|
709
739
|
*/
|
|
@@ -747,15 +777,20 @@ export interface DescribePatchPropertiesResult {
|
|
|
747
777
|
}
|
|
748
778
|
/**
|
|
749
779
|
* @public
|
|
780
|
+
* @enum
|
|
750
781
|
*/
|
|
751
|
-
export declare
|
|
752
|
-
INVOKED_AFTER
|
|
753
|
-
INVOKED_BEFORE
|
|
754
|
-
OWNER
|
|
755
|
-
SESSION_ID
|
|
756
|
-
STATUS
|
|
757
|
-
TARGET_ID
|
|
758
|
-
}
|
|
782
|
+
export declare const SessionFilterKey: {
|
|
783
|
+
readonly INVOKED_AFTER: "InvokedAfter";
|
|
784
|
+
readonly INVOKED_BEFORE: "InvokedBefore";
|
|
785
|
+
readonly OWNER: "Owner";
|
|
786
|
+
readonly SESSION_ID: "SessionId";
|
|
787
|
+
readonly STATUS: "Status";
|
|
788
|
+
readonly TARGET_ID: "Target";
|
|
789
|
+
};
|
|
790
|
+
/**
|
|
791
|
+
* @public
|
|
792
|
+
*/
|
|
793
|
+
export type SessionFilterKey = (typeof SessionFilterKey)[keyof typeof SessionFilterKey];
|
|
759
794
|
/**
|
|
760
795
|
* @public
|
|
761
796
|
* <p>Describes a filter for Session Manager information.</p>
|
|
@@ -815,11 +850,16 @@ export interface SessionFilter {
|
|
|
815
850
|
}
|
|
816
851
|
/**
|
|
817
852
|
* @public
|
|
853
|
+
* @enum
|
|
818
854
|
*/
|
|
819
|
-
export declare
|
|
820
|
-
ACTIVE
|
|
821
|
-
HISTORY
|
|
822
|
-
}
|
|
855
|
+
export declare const SessionState: {
|
|
856
|
+
readonly ACTIVE: "Active";
|
|
857
|
+
readonly HISTORY: "History";
|
|
858
|
+
};
|
|
859
|
+
/**
|
|
860
|
+
* @public
|
|
861
|
+
*/
|
|
862
|
+
export type SessionState = (typeof SessionState)[keyof typeof SessionState];
|
|
823
863
|
/**
|
|
824
864
|
* @public
|
|
825
865
|
*/
|
|
@@ -859,15 +899,20 @@ export interface SessionManagerOutputUrl {
|
|
|
859
899
|
}
|
|
860
900
|
/**
|
|
861
901
|
* @public
|
|
902
|
+
* @enum
|
|
862
903
|
*/
|
|
863
|
-
export declare
|
|
864
|
-
CONNECTED
|
|
865
|
-
CONNECTING
|
|
866
|
-
DISCONNECTED
|
|
867
|
-
FAILED
|
|
868
|
-
TERMINATED
|
|
869
|
-
TERMINATING
|
|
870
|
-
}
|
|
904
|
+
export declare const SessionStatus: {
|
|
905
|
+
readonly CONNECTED: "Connected";
|
|
906
|
+
readonly CONNECTING: "Connecting";
|
|
907
|
+
readonly DISCONNECTED: "Disconnected";
|
|
908
|
+
readonly FAILED: "Failed";
|
|
909
|
+
readonly TERMINATED: "Terminated";
|
|
910
|
+
readonly TERMINATING: "Terminating";
|
|
911
|
+
};
|
|
912
|
+
/**
|
|
913
|
+
* @public
|
|
914
|
+
*/
|
|
915
|
+
export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
|
|
871
916
|
/**
|
|
872
917
|
* @public
|
|
873
918
|
* <p>Information about a Session Manager connection to a managed node.</p>
|
|
@@ -1185,11 +1230,16 @@ export interface GetCalendarStateRequest {
|
|
|
1185
1230
|
}
|
|
1186
1231
|
/**
|
|
1187
1232
|
* @public
|
|
1233
|
+
* @enum
|
|
1188
1234
|
*/
|
|
1189
|
-
export declare
|
|
1190
|
-
CLOSED
|
|
1191
|
-
OPEN
|
|
1192
|
-
}
|
|
1235
|
+
export declare const CalendarState: {
|
|
1236
|
+
readonly CLOSED: "CLOSED";
|
|
1237
|
+
readonly OPEN: "OPEN";
|
|
1238
|
+
};
|
|
1239
|
+
/**
|
|
1240
|
+
* @public
|
|
1241
|
+
*/
|
|
1242
|
+
export type CalendarState = (typeof CalendarState)[keyof typeof CalendarState];
|
|
1193
1243
|
/**
|
|
1194
1244
|
* @public
|
|
1195
1245
|
*/
|
|
@@ -1291,17 +1341,22 @@ export interface CloudWatchOutputConfig {
|
|
|
1291
1341
|
}
|
|
1292
1342
|
/**
|
|
1293
1343
|
* @public
|
|
1344
|
+
* @enum
|
|
1294
1345
|
*/
|
|
1295
|
-
export declare
|
|
1296
|
-
CANCELLED
|
|
1297
|
-
CANCELLING
|
|
1298
|
-
DELAYED
|
|
1299
|
-
FAILED
|
|
1300
|
-
IN_PROGRESS
|
|
1301
|
-
PENDING
|
|
1302
|
-
SUCCESS
|
|
1303
|
-
TIMED_OUT
|
|
1304
|
-
}
|
|
1346
|
+
export declare const CommandInvocationStatus: {
|
|
1347
|
+
readonly CANCELLED: "Cancelled";
|
|
1348
|
+
readonly CANCELLING: "Cancelling";
|
|
1349
|
+
readonly DELAYED: "Delayed";
|
|
1350
|
+
readonly FAILED: "Failed";
|
|
1351
|
+
readonly IN_PROGRESS: "InProgress";
|
|
1352
|
+
readonly PENDING: "Pending";
|
|
1353
|
+
readonly SUCCESS: "Success";
|
|
1354
|
+
readonly TIMED_OUT: "TimedOut";
|
|
1355
|
+
};
|
|
1356
|
+
/**
|
|
1357
|
+
* @public
|
|
1358
|
+
*/
|
|
1359
|
+
export type CommandInvocationStatus = (typeof CommandInvocationStatus)[keyof typeof CommandInvocationStatus];
|
|
1305
1360
|
/**
|
|
1306
1361
|
* @public
|
|
1307
1362
|
*/
|
|
@@ -1487,11 +1542,16 @@ export interface GetConnectionStatusRequest {
|
|
|
1487
1542
|
}
|
|
1488
1543
|
/**
|
|
1489
1544
|
* @public
|
|
1545
|
+
* @enum
|
|
1490
1546
|
*/
|
|
1491
|
-
export declare
|
|
1492
|
-
CONNECTED
|
|
1493
|
-
NOT_CONNECTED
|
|
1494
|
-
}
|
|
1547
|
+
export declare const ConnectionStatus: {
|
|
1548
|
+
readonly CONNECTED: "Connected";
|
|
1549
|
+
readonly NOT_CONNECTED: "NotConnected";
|
|
1550
|
+
};
|
|
1551
|
+
/**
|
|
1552
|
+
* @public
|
|
1553
|
+
*/
|
|
1554
|
+
export type ConnectionStatus = (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
|
|
1495
1555
|
/**
|
|
1496
1556
|
* @public
|
|
1497
1557
|
*/
|
|
@@ -1665,10 +1725,15 @@ export interface GetDocumentRequest {
|
|
|
1665
1725
|
}
|
|
1666
1726
|
/**
|
|
1667
1727
|
* @public
|
|
1728
|
+
* @enum
|
|
1668
1729
|
*/
|
|
1669
|
-
export declare
|
|
1670
|
-
SHA256
|
|
1671
|
-
}
|
|
1730
|
+
export declare const AttachmentHashType: {
|
|
1731
|
+
readonly SHA256: "Sha256";
|
|
1732
|
+
};
|
|
1733
|
+
/**
|
|
1734
|
+
* @public
|
|
1735
|
+
*/
|
|
1736
|
+
export type AttachmentHashType = (typeof AttachmentHashType)[keyof typeof AttachmentHashType];
|
|
1672
1737
|
/**
|
|
1673
1738
|
* @public
|
|
1674
1739
|
* <p>A structure that includes attributes that describe a document attachment.</p>
|
|
@@ -1766,15 +1831,20 @@ export interface GetDocumentResult {
|
|
|
1766
1831
|
}
|
|
1767
1832
|
/**
|
|
1768
1833
|
* @public
|
|
1834
|
+
* @enum
|
|
1769
1835
|
*/
|
|
1770
|
-
export declare
|
|
1771
|
-
BEGIN_WITH
|
|
1772
|
-
EQUAL
|
|
1773
|
-
EXISTS
|
|
1774
|
-
GREATER_THAN
|
|
1775
|
-
LESS_THAN
|
|
1776
|
-
NOT_EQUAL
|
|
1777
|
-
}
|
|
1836
|
+
export declare const InventoryQueryOperatorType: {
|
|
1837
|
+
readonly BEGIN_WITH: "BeginWith";
|
|
1838
|
+
readonly EQUAL: "Equal";
|
|
1839
|
+
readonly EXISTS: "Exists";
|
|
1840
|
+
readonly GREATER_THAN: "GreaterThan";
|
|
1841
|
+
readonly LESS_THAN: "LessThan";
|
|
1842
|
+
readonly NOT_EQUAL: "NotEqual";
|
|
1843
|
+
};
|
|
1844
|
+
/**
|
|
1845
|
+
* @public
|
|
1846
|
+
*/
|
|
1847
|
+
export type InventoryQueryOperatorType = (typeof InventoryQueryOperatorType)[keyof typeof InventoryQueryOperatorType];
|
|
1778
1848
|
/**
|
|
1779
1849
|
* @public
|
|
1780
1850
|
* <p>One or more filters. Use a filter to return a more specific list of results.</p>
|
|
@@ -1959,11 +2029,16 @@ export interface GetInventorySchemaRequest {
|
|
|
1959
2029
|
}
|
|
1960
2030
|
/**
|
|
1961
2031
|
* @public
|
|
2032
|
+
* @enum
|
|
1962
2033
|
*/
|
|
1963
|
-
export declare
|
|
1964
|
-
NUMBER
|
|
1965
|
-
STRING
|
|
1966
|
-
}
|
|
2034
|
+
export declare const InventoryAttributeDataType: {
|
|
2035
|
+
readonly NUMBER: "number";
|
|
2036
|
+
readonly STRING: "string";
|
|
2037
|
+
};
|
|
2038
|
+
/**
|
|
2039
|
+
* @public
|
|
2040
|
+
*/
|
|
2041
|
+
export type InventoryAttributeDataType = (typeof InventoryAttributeDataType)[keyof typeof InventoryAttributeDataType];
|
|
1967
2042
|
/**
|
|
1968
2043
|
* @public
|
|
1969
2044
|
* <p>Attributes are the entries within the inventory item content. It contains name and
|
|
@@ -2395,22 +2470,32 @@ export interface MaintenanceWindowLambdaParameters {
|
|
|
2395
2470
|
}
|
|
2396
2471
|
/**
|
|
2397
2472
|
* @public
|
|
2473
|
+
* @enum
|
|
2398
2474
|
*/
|
|
2399
|
-
export declare
|
|
2400
|
-
ALL
|
|
2401
|
-
CANCELLED
|
|
2402
|
-
FAILED
|
|
2403
|
-
IN_PROGRESS
|
|
2404
|
-
SUCCESS
|
|
2405
|
-
TIMED_OUT
|
|
2406
|
-
}
|
|
2475
|
+
export declare const NotificationEvent: {
|
|
2476
|
+
readonly ALL: "All";
|
|
2477
|
+
readonly CANCELLED: "Cancelled";
|
|
2478
|
+
readonly FAILED: "Failed";
|
|
2479
|
+
readonly IN_PROGRESS: "InProgress";
|
|
2480
|
+
readonly SUCCESS: "Success";
|
|
2481
|
+
readonly TIMED_OUT: "TimedOut";
|
|
2482
|
+
};
|
|
2407
2483
|
/**
|
|
2408
2484
|
* @public
|
|
2409
2485
|
*/
|
|
2410
|
-
export
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2486
|
+
export type NotificationEvent = (typeof NotificationEvent)[keyof typeof NotificationEvent];
|
|
2487
|
+
/**
|
|
2488
|
+
* @public
|
|
2489
|
+
* @enum
|
|
2490
|
+
*/
|
|
2491
|
+
export declare const NotificationType: {
|
|
2492
|
+
readonly Command: "Command";
|
|
2493
|
+
readonly Invocation: "Invocation";
|
|
2494
|
+
};
|
|
2495
|
+
/**
|
|
2496
|
+
* @public
|
|
2497
|
+
*/
|
|
2498
|
+
export type NotificationType = (typeof NotificationType)[keyof typeof NotificationType];
|
|
2414
2499
|
/**
|
|
2415
2500
|
* @public
|
|
2416
2501
|
* <p>Configurations for sending notifications.</p>
|
|
@@ -2899,15 +2984,20 @@ export interface GetOpsMetadataResult {
|
|
|
2899
2984
|
}
|
|
2900
2985
|
/**
|
|
2901
2986
|
* @public
|
|
2987
|
+
* @enum
|
|
2902
2988
|
*/
|
|
2903
|
-
export declare
|
|
2904
|
-
BEGIN_WITH
|
|
2905
|
-
EQUAL
|
|
2906
|
-
EXISTS
|
|
2907
|
-
GREATER_THAN
|
|
2908
|
-
LESS_THAN
|
|
2909
|
-
NOT_EQUAL
|
|
2910
|
-
}
|
|
2989
|
+
export declare const OpsFilterOperatorType: {
|
|
2990
|
+
readonly BEGIN_WITH: "BeginWith";
|
|
2991
|
+
readonly EQUAL: "Equal";
|
|
2992
|
+
readonly EXISTS: "Exists";
|
|
2993
|
+
readonly GREATER_THAN: "GreaterThan";
|
|
2994
|
+
readonly LESS_THAN: "LessThan";
|
|
2995
|
+
readonly NOT_EQUAL: "NotEqual";
|
|
2996
|
+
};
|
|
2997
|
+
/**
|
|
2998
|
+
* @public
|
|
2999
|
+
*/
|
|
3000
|
+
export type OpsFilterOperatorType = (typeof OpsFilterOperatorType)[keyof typeof OpsFilterOperatorType];
|
|
2911
3001
|
/**
|
|
2912
3002
|
* @public
|
|
2913
3003
|
* <p>A filter for viewing OpsData summaries.</p>
|
|
@@ -3639,17 +3729,22 @@ export declare class ParameterVersionLabelLimitExceeded extends __BaseException
|
|
|
3639
3729
|
}
|
|
3640
3730
|
/**
|
|
3641
3731
|
* @public
|
|
3732
|
+
* @enum
|
|
3642
3733
|
*/
|
|
3643
|
-
export declare
|
|
3644
|
-
AssociationId
|
|
3645
|
-
AssociationName
|
|
3646
|
-
InstanceId
|
|
3647
|
-
LastExecutedAfter
|
|
3648
|
-
LastExecutedBefore
|
|
3649
|
-
Name
|
|
3650
|
-
ResourceGroupName
|
|
3651
|
-
Status
|
|
3652
|
-
}
|
|
3734
|
+
export declare const AssociationFilterKey: {
|
|
3735
|
+
readonly AssociationId: "AssociationId";
|
|
3736
|
+
readonly AssociationName: "AssociationName";
|
|
3737
|
+
readonly InstanceId: "InstanceId";
|
|
3738
|
+
readonly LastExecutedAfter: "LastExecutedAfter";
|
|
3739
|
+
readonly LastExecutedBefore: "LastExecutedBefore";
|
|
3740
|
+
readonly Name: "Name";
|
|
3741
|
+
readonly ResourceGroupName: "ResourceGroupName";
|
|
3742
|
+
readonly Status: "AssociationStatusName";
|
|
3743
|
+
};
|
|
3744
|
+
/**
|
|
3745
|
+
* @public
|
|
3746
|
+
*/
|
|
3747
|
+
export type AssociationFilterKey = (typeof AssociationFilterKey)[keyof typeof AssociationFilterKey];
|
|
3653
3748
|
/**
|
|
3654
3749
|
* @public
|
|
3655
3750
|
* <p>Describes a filter.</p>
|
|
@@ -3928,14 +4023,19 @@ export interface ListAssociationVersionsResult {
|
|
|
3928
4023
|
}
|
|
3929
4024
|
/**
|
|
3930
4025
|
* @public
|
|
4026
|
+
* @enum
|
|
3931
4027
|
*/
|
|
3932
|
-
export declare
|
|
3933
|
-
DOCUMENT_NAME
|
|
3934
|
-
EXECUTION_STAGE
|
|
3935
|
-
INVOKED_AFTER
|
|
3936
|
-
INVOKED_BEFORE
|
|
3937
|
-
STATUS
|
|
3938
|
-
}
|
|
4028
|
+
export declare const CommandFilterKey: {
|
|
4029
|
+
readonly DOCUMENT_NAME: "DocumentName";
|
|
4030
|
+
readonly EXECUTION_STAGE: "ExecutionStage";
|
|
4031
|
+
readonly INVOKED_AFTER: "InvokedAfter";
|
|
4032
|
+
readonly INVOKED_BEFORE: "InvokedBefore";
|
|
4033
|
+
readonly STATUS: "Status";
|
|
4034
|
+
};
|
|
4035
|
+
/**
|
|
4036
|
+
* @public
|
|
4037
|
+
*/
|
|
4038
|
+
export type CommandFilterKey = (typeof CommandFilterKey)[keyof typeof CommandFilterKey];
|
|
3939
4039
|
/**
|
|
3940
4040
|
* @public
|
|
3941
4041
|
* <p>Describes a command filter.</p>
|
|
@@ -4165,15 +4265,20 @@ export interface ListCommandInvocationsRequest {
|
|
|
4165
4265
|
}
|
|
4166
4266
|
/**
|
|
4167
4267
|
* @public
|
|
4268
|
+
* @enum
|
|
4168
4269
|
*/
|
|
4169
|
-
export declare
|
|
4170
|
-
CANCELLED
|
|
4171
|
-
FAILED
|
|
4172
|
-
IN_PROGRESS
|
|
4173
|
-
PENDING
|
|
4174
|
-
SUCCESS
|
|
4175
|
-
TIMED_OUT
|
|
4176
|
-
}
|
|
4270
|
+
export declare const CommandPluginStatus: {
|
|
4271
|
+
readonly CANCELLED: "Cancelled";
|
|
4272
|
+
readonly FAILED: "Failed";
|
|
4273
|
+
readonly IN_PROGRESS: "InProgress";
|
|
4274
|
+
readonly PENDING: "Pending";
|
|
4275
|
+
readonly SUCCESS: "Success";
|
|
4276
|
+
readonly TIMED_OUT: "TimedOut";
|
|
4277
|
+
};
|
|
4278
|
+
/**
|
|
4279
|
+
* @public
|
|
4280
|
+
*/
|
|
4281
|
+
export type CommandPluginStatus = (typeof CommandPluginStatus)[keyof typeof CommandPluginStatus];
|
|
4177
4282
|
/**
|
|
4178
4283
|
* @public
|
|
4179
4284
|
* <p>Describes plugin details.</p>
|
|
@@ -4496,16 +4601,21 @@ export interface ListCommandsRequest {
|
|
|
4496
4601
|
}
|
|
4497
4602
|
/**
|
|
4498
4603
|
* @public
|
|
4604
|
+
* @enum
|
|
4499
4605
|
*/
|
|
4500
|
-
export declare
|
|
4501
|
-
CANCELLED
|
|
4502
|
-
CANCELLING
|
|
4503
|
-
FAILED
|
|
4504
|
-
IN_PROGRESS
|
|
4505
|
-
PENDING
|
|
4506
|
-
SUCCESS
|
|
4507
|
-
TIMED_OUT
|
|
4508
|
-
}
|
|
4606
|
+
export declare const CommandStatus: {
|
|
4607
|
+
readonly CANCELLED: "Cancelled";
|
|
4608
|
+
readonly CANCELLING: "Cancelling";
|
|
4609
|
+
readonly FAILED: "Failed";
|
|
4610
|
+
readonly IN_PROGRESS: "InProgress";
|
|
4611
|
+
readonly PENDING: "Pending";
|
|
4612
|
+
readonly SUCCESS: "Success";
|
|
4613
|
+
readonly TIMED_OUT: "TimedOut";
|
|
4614
|
+
};
|
|
4615
|
+
/**
|
|
4616
|
+
* @public
|
|
4617
|
+
*/
|
|
4618
|
+
export type CommandStatus = (typeof CommandStatus)[keyof typeof CommandStatus];
|
|
4509
4619
|
/**
|
|
4510
4620
|
* @public
|
|
4511
4621
|
* <p>Describes a command request.</p>
|
|
@@ -4702,14 +4812,19 @@ export interface ListCommandsResult {
|
|
|
4702
4812
|
}
|
|
4703
4813
|
/**
|
|
4704
4814
|
* @public
|
|
4815
|
+
* @enum
|
|
4705
4816
|
*/
|
|
4706
|
-
export declare
|
|
4707
|
-
BeginWith
|
|
4708
|
-
Equal
|
|
4709
|
-
GreaterThan
|
|
4710
|
-
LessThan
|
|
4711
|
-
NotEqual
|
|
4712
|
-
}
|
|
4817
|
+
export declare const ComplianceQueryOperatorType: {
|
|
4818
|
+
readonly BeginWith: "BEGIN_WITH";
|
|
4819
|
+
readonly Equal: "EQUAL";
|
|
4820
|
+
readonly GreaterThan: "GREATER_THAN";
|
|
4821
|
+
readonly LessThan: "LESS_THAN";
|
|
4822
|
+
readonly NotEqual: "NOT_EQUAL";
|
|
4823
|
+
};
|
|
4824
|
+
/**
|
|
4825
|
+
* @public
|
|
4826
|
+
*/
|
|
4827
|
+
export type ComplianceQueryOperatorType = (typeof ComplianceQueryOperatorType)[keyof typeof ComplianceQueryOperatorType];
|
|
4713
4828
|
/**
|
|
4714
4829
|
* @public
|
|
4715
4830
|
* <p>One or more filters. Use a filter to return a more specific list of results.</p>
|
|
@@ -4782,22 +4897,32 @@ export interface ComplianceExecutionSummary {
|
|
|
4782
4897
|
}
|
|
4783
4898
|
/**
|
|
4784
4899
|
* @public
|
|
4900
|
+
* @enum
|
|
4785
4901
|
*/
|
|
4786
|
-
export declare
|
|
4787
|
-
Critical
|
|
4788
|
-
High
|
|
4789
|
-
Informational
|
|
4790
|
-
Low
|
|
4791
|
-
Medium
|
|
4792
|
-
Unspecified
|
|
4793
|
-
}
|
|
4902
|
+
export declare const ComplianceSeverity: {
|
|
4903
|
+
readonly Critical: "CRITICAL";
|
|
4904
|
+
readonly High: "HIGH";
|
|
4905
|
+
readonly Informational: "INFORMATIONAL";
|
|
4906
|
+
readonly Low: "LOW";
|
|
4907
|
+
readonly Medium: "MEDIUM";
|
|
4908
|
+
readonly Unspecified: "UNSPECIFIED";
|
|
4909
|
+
};
|
|
4794
4910
|
/**
|
|
4795
4911
|
* @public
|
|
4796
4912
|
*/
|
|
4797
|
-
export
|
|
4798
|
-
|
|
4799
|
-
|
|
4800
|
-
|
|
4913
|
+
export type ComplianceSeverity = (typeof ComplianceSeverity)[keyof typeof ComplianceSeverity];
|
|
4914
|
+
/**
|
|
4915
|
+
* @public
|
|
4916
|
+
* @enum
|
|
4917
|
+
*/
|
|
4918
|
+
export declare const ComplianceStatus: {
|
|
4919
|
+
readonly Compliant: "COMPLIANT";
|
|
4920
|
+
readonly NonCompliant: "NON_COMPLIANT";
|
|
4921
|
+
};
|
|
4922
|
+
/**
|
|
4923
|
+
* @public
|
|
4924
|
+
*/
|
|
4925
|
+
export type ComplianceStatus = (typeof ComplianceStatus)[keyof typeof ComplianceStatus];
|
|
4801
4926
|
/**
|
|
4802
4927
|
* @public
|
|
4803
4928
|
* <p>Information about the compliance as defined by the resource type. For example, for a patch
|
|
@@ -4991,10 +5116,15 @@ export interface ListComplianceSummariesResult {
|
|
|
4991
5116
|
}
|
|
4992
5117
|
/**
|
|
4993
5118
|
* @public
|
|
5119
|
+
* @enum
|
|
4994
5120
|
*/
|
|
4995
|
-
export declare
|
|
4996
|
-
DocumentReviews
|
|
4997
|
-
}
|
|
5121
|
+
export declare const DocumentMetadataEnum: {
|
|
5122
|
+
readonly DocumentReviews: "DocumentReviews";
|
|
5123
|
+
};
|
|
5124
|
+
/**
|
|
5125
|
+
* @public
|
|
5126
|
+
*/
|
|
5127
|
+
export type DocumentMetadataEnum = (typeof DocumentMetadataEnum)[keyof typeof DocumentMetadataEnum];
|
|
4998
5128
|
/**
|
|
4999
5129
|
* @public
|
|
5000
5130
|
*/
|
|
@@ -5025,10 +5155,15 @@ export interface ListDocumentMetadataHistoryRequest {
|
|
|
5025
5155
|
}
|
|
5026
5156
|
/**
|
|
5027
5157
|
* @public
|
|
5158
|
+
* @enum
|
|
5028
5159
|
*/
|
|
5029
|
-
export declare
|
|
5030
|
-
Comment
|
|
5031
|
-
}
|
|
5160
|
+
export declare const DocumentReviewCommentType: {
|
|
5161
|
+
readonly Comment: "Comment";
|
|
5162
|
+
};
|
|
5163
|
+
/**
|
|
5164
|
+
* @public
|
|
5165
|
+
*/
|
|
5166
|
+
export type DocumentReviewCommentType = (typeof DocumentReviewCommentType)[keyof typeof DocumentReviewCommentType];
|
|
5032
5167
|
/**
|
|
5033
5168
|
* @public
|
|
5034
5169
|
* <p>Information about comments added to a document review request.</p>
|
|
@@ -5115,13 +5250,18 @@ export interface ListDocumentMetadataHistoryResponse {
|
|
|
5115
5250
|
}
|
|
5116
5251
|
/**
|
|
5117
5252
|
* @public
|
|
5253
|
+
* @enum
|
|
5118
5254
|
*/
|
|
5119
|
-
export declare
|
|
5120
|
-
DocumentType
|
|
5121
|
-
Name
|
|
5122
|
-
Owner
|
|
5123
|
-
PlatformTypes
|
|
5124
|
-
}
|
|
5255
|
+
export declare const DocumentFilterKey: {
|
|
5256
|
+
readonly DocumentType: "DocumentType";
|
|
5257
|
+
readonly Name: "Name";
|
|
5258
|
+
readonly Owner: "Owner";
|
|
5259
|
+
readonly PlatformTypes: "PlatformTypes";
|
|
5260
|
+
};
|
|
5261
|
+
/**
|
|
5262
|
+
* @public
|
|
5263
|
+
*/
|
|
5264
|
+
export type DocumentFilterKey = (typeof DocumentFilterKey)[keyof typeof DocumentFilterKey];
|
|
5125
5265
|
/**
|
|
5126
5266
|
* @public
|
|
5127
5267
|
* <p>This data type is deprecated. Instead, use <a>DocumentKeyValuesFilter</a>.</p>
|
|
@@ -5531,16 +5671,26 @@ export interface ListInventoryEntriesResult {
|
|
|
5531
5671
|
}
|
|
5532
5672
|
/**
|
|
5533
5673
|
* @public
|
|
5674
|
+
* @enum
|
|
5534
5675
|
*/
|
|
5535
|
-
export declare
|
|
5536
|
-
OPSITEM_ID
|
|
5537
|
-
}
|
|
5676
|
+
export declare const OpsItemEventFilterKey: {
|
|
5677
|
+
readonly OPSITEM_ID: "OpsItemId";
|
|
5678
|
+
};
|
|
5538
5679
|
/**
|
|
5539
5680
|
* @public
|
|
5540
5681
|
*/
|
|
5541
|
-
export
|
|
5542
|
-
|
|
5543
|
-
|
|
5682
|
+
export type OpsItemEventFilterKey = (typeof OpsItemEventFilterKey)[keyof typeof OpsItemEventFilterKey];
|
|
5683
|
+
/**
|
|
5684
|
+
* @public
|
|
5685
|
+
* @enum
|
|
5686
|
+
*/
|
|
5687
|
+
export declare const OpsItemEventFilterOperator: {
|
|
5688
|
+
readonly EQUAL: "Equal";
|
|
5689
|
+
};
|
|
5690
|
+
/**
|
|
5691
|
+
* @public
|
|
5692
|
+
*/
|
|
5693
|
+
export type OpsItemEventFilterOperator = (typeof OpsItemEventFilterOperator)[keyof typeof OpsItemEventFilterOperator];
|
|
5544
5694
|
/**
|
|
5545
5695
|
* @public
|
|
5546
5696
|
* <p>Describes a filter for a specific list of OpsItem events. You can filter event information
|
|
@@ -5642,18 +5792,28 @@ export interface ListOpsItemEventsResponse {
|
|
|
5642
5792
|
}
|
|
5643
5793
|
/**
|
|
5644
5794
|
* @public
|
|
5795
|
+
* @enum
|
|
5645
5796
|
*/
|
|
5646
|
-
export declare
|
|
5647
|
-
ASSOCIATION_ID
|
|
5648
|
-
RESOURCE_TYPE
|
|
5649
|
-
RESOURCE_URI
|
|
5650
|
-
}
|
|
5797
|
+
export declare const OpsItemRelatedItemsFilterKey: {
|
|
5798
|
+
readonly ASSOCIATION_ID: "AssociationId";
|
|
5799
|
+
readonly RESOURCE_TYPE: "ResourceType";
|
|
5800
|
+
readonly RESOURCE_URI: "ResourceUri";
|
|
5801
|
+
};
|
|
5651
5802
|
/**
|
|
5652
5803
|
* @public
|
|
5653
5804
|
*/
|
|
5654
|
-
export
|
|
5655
|
-
|
|
5656
|
-
|
|
5805
|
+
export type OpsItemRelatedItemsFilterKey = (typeof OpsItemRelatedItemsFilterKey)[keyof typeof OpsItemRelatedItemsFilterKey];
|
|
5806
|
+
/**
|
|
5807
|
+
* @public
|
|
5808
|
+
* @enum
|
|
5809
|
+
*/
|
|
5810
|
+
export declare const OpsItemRelatedItemsFilterOperator: {
|
|
5811
|
+
readonly EQUAL: "Equal";
|
|
5812
|
+
};
|
|
5813
|
+
/**
|
|
5814
|
+
* @public
|
|
5815
|
+
*/
|
|
5816
|
+
export type OpsItemRelatedItemsFilterOperator = (typeof OpsItemRelatedItemsFilterOperator)[keyof typeof OpsItemRelatedItemsFilterOperator];
|
|
5657
5817
|
/**
|
|
5658
5818
|
* @public
|
|
5659
5819
|
* <p>Describes a filter for a specific list of related-item resources. </p>
|
|
@@ -5920,12 +6080,17 @@ export interface ListResourceDataSyncRequest {
|
|
|
5920
6080
|
}
|
|
5921
6081
|
/**
|
|
5922
6082
|
* @public
|
|
6083
|
+
* @enum
|
|
5923
6084
|
*/
|
|
5924
|
-
export declare
|
|
5925
|
-
FAILED
|
|
5926
|
-
INPROGRESS
|
|
5927
|
-
SUCCESSFUL
|
|
5928
|
-
}
|
|
6085
|
+
export declare const LastResourceDataSyncStatus: {
|
|
6086
|
+
readonly FAILED: "Failed";
|
|
6087
|
+
readonly INPROGRESS: "InProgress";
|
|
6088
|
+
readonly SUCCESSFUL: "Successful";
|
|
6089
|
+
};
|
|
6090
|
+
/**
|
|
6091
|
+
* @public
|
|
6092
|
+
*/
|
|
6093
|
+
export type LastResourceDataSyncStatus = (typeof LastResourceDataSyncStatus)[keyof typeof LastResourceDataSyncStatus];
|
|
5929
6094
|
/**
|
|
5930
6095
|
* @public
|
|
5931
6096
|
* <p>The data type name for including resource data sync state. There are four sync
|
|
@@ -6201,11 +6366,16 @@ export interface ComplianceItemEntry {
|
|
|
6201
6366
|
}
|
|
6202
6367
|
/**
|
|
6203
6368
|
* @public
|
|
6369
|
+
* @enum
|
|
6204
6370
|
*/
|
|
6205
|
-
export declare
|
|
6206
|
-
Complete
|
|
6207
|
-
Partial
|
|
6208
|
-
}
|
|
6371
|
+
export declare const ComplianceUploadType: {
|
|
6372
|
+
readonly Complete: "COMPLETE";
|
|
6373
|
+
readonly Partial: "PARTIAL";
|
|
6374
|
+
};
|
|
6375
|
+
/**
|
|
6376
|
+
* @public
|
|
6377
|
+
*/
|
|
6378
|
+
export type ComplianceUploadType = (typeof ComplianceUploadType)[keyof typeof ComplianceUploadType];
|
|
6209
6379
|
/**
|
|
6210
6380
|
* @public
|
|
6211
6381
|
*/
|
|
@@ -7402,14 +7572,19 @@ export declare class InvalidAutomationSignalException extends __BaseException {
|
|
|
7402
7572
|
}
|
|
7403
7573
|
/**
|
|
7404
7574
|
* @public
|
|
7575
|
+
* @enum
|
|
7405
7576
|
*/
|
|
7406
|
-
export declare
|
|
7407
|
-
APPROVE
|
|
7408
|
-
REJECT
|
|
7409
|
-
RESUME
|
|
7410
|
-
START_STEP
|
|
7411
|
-
STOP_STEP
|
|
7412
|
-
}
|
|
7577
|
+
export declare const SignalType: {
|
|
7578
|
+
readonly APPROVE: "Approve";
|
|
7579
|
+
readonly REJECT: "Reject";
|
|
7580
|
+
readonly RESUME: "Resume";
|
|
7581
|
+
readonly START_STEP: "StartStep";
|
|
7582
|
+
readonly STOP_STEP: "StopStep";
|
|
7583
|
+
};
|
|
7584
|
+
/**
|
|
7585
|
+
* @public
|
|
7586
|
+
*/
|
|
7587
|
+
export type SignalType = (typeof SignalType)[keyof typeof SignalType];
|
|
7413
7588
|
/**
|
|
7414
7589
|
* @public
|
|
7415
7590
|
*/
|
|
@@ -8018,11 +8193,16 @@ export declare class InvalidAutomationStatusUpdateException extends __BaseExcept
|
|
|
8018
8193
|
}
|
|
8019
8194
|
/**
|
|
8020
8195
|
* @public
|
|
8196
|
+
* @enum
|
|
8021
8197
|
*/
|
|
8022
|
-
export declare
|
|
8023
|
-
CANCEL
|
|
8024
|
-
COMPLETE
|
|
8025
|
-
}
|
|
8198
|
+
export declare const StopType: {
|
|
8199
|
+
readonly CANCEL: "Cancel";
|
|
8200
|
+
readonly COMPLETE: "Complete";
|
|
8201
|
+
};
|
|
8202
|
+
/**
|
|
8203
|
+
* @public
|
|
8204
|
+
*/
|
|
8205
|
+
export type StopType = (typeof StopType)[keyof typeof StopType];
|
|
8026
8206
|
/**
|
|
8027
8207
|
* @public
|
|
8028
8208
|
*/
|