@aws-sdk/client-ssm 3.301.0 → 3.306.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
|
@@ -20,17 +20,19 @@ export interface Activation {
|
|
|
20
20
|
CreatedDate?: Date;
|
|
21
21
|
Tags?: Tag[];
|
|
22
22
|
}
|
|
23
|
-
export declare
|
|
24
|
-
ASSOCIATION
|
|
25
|
-
AUTOMATION
|
|
26
|
-
DOCUMENT
|
|
27
|
-
MAINTENANCE_WINDOW
|
|
28
|
-
MANAGED_INSTANCE
|
|
29
|
-
OPSMETADATA
|
|
30
|
-
OPS_ITEM
|
|
31
|
-
PARAMETER
|
|
32
|
-
PATCH_BASELINE
|
|
33
|
-
}
|
|
23
|
+
export declare const ResourceTypeForTagging: {
|
|
24
|
+
readonly ASSOCIATION: "Association";
|
|
25
|
+
readonly AUTOMATION: "Automation";
|
|
26
|
+
readonly DOCUMENT: "Document";
|
|
27
|
+
readonly MAINTENANCE_WINDOW: "MaintenanceWindow";
|
|
28
|
+
readonly MANAGED_INSTANCE: "ManagedInstance";
|
|
29
|
+
readonly OPSMETADATA: "OpsMetadata";
|
|
30
|
+
readonly OPS_ITEM: "OpsItem";
|
|
31
|
+
readonly PARAMETER: "Parameter";
|
|
32
|
+
readonly PATCH_BASELINE: "PatchBaseline";
|
|
33
|
+
};
|
|
34
|
+
export type ResourceTypeForTagging =
|
|
35
|
+
(typeof ResourceTypeForTagging)[keyof typeof ResourceTypeForTagging];
|
|
34
36
|
export interface AddTagsToResourceRequest {
|
|
35
37
|
ResourceType: ResourceTypeForTagging | string | undefined;
|
|
36
38
|
ResourceId: string | undefined;
|
|
@@ -75,10 +77,12 @@ export interface AlarmConfiguration {
|
|
|
75
77
|
IgnorePollAlarmFailure?: boolean;
|
|
76
78
|
Alarms: Alarm[] | undefined;
|
|
77
79
|
}
|
|
78
|
-
export declare
|
|
79
|
-
ALARM
|
|
80
|
-
UNKNOWN
|
|
81
|
-
}
|
|
80
|
+
export declare const ExternalAlarmState: {
|
|
81
|
+
readonly ALARM: "ALARM";
|
|
82
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
83
|
+
};
|
|
84
|
+
export type ExternalAlarmState =
|
|
85
|
+
(typeof ExternalAlarmState)[keyof typeof ExternalAlarmState];
|
|
82
86
|
export interface AlarmStateInformation {
|
|
83
87
|
Name: string | undefined;
|
|
84
88
|
State: ExternalAlarmState | string | undefined;
|
|
@@ -218,13 +222,15 @@ export declare class AssociationLimitExceeded extends __BaseException {
|
|
|
218
222
|
opts: __ExceptionOptionType<AssociationLimitExceeded, __BaseException>
|
|
219
223
|
);
|
|
220
224
|
}
|
|
221
|
-
export declare
|
|
222
|
-
Critical
|
|
223
|
-
High
|
|
224
|
-
Low
|
|
225
|
-
Medium
|
|
226
|
-
Unspecified
|
|
227
|
-
}
|
|
225
|
+
export declare const AssociationComplianceSeverity: {
|
|
226
|
+
readonly Critical: "CRITICAL";
|
|
227
|
+
readonly High: "HIGH";
|
|
228
|
+
readonly Low: "LOW";
|
|
229
|
+
readonly Medium: "MEDIUM";
|
|
230
|
+
readonly Unspecified: "UNSPECIFIED";
|
|
231
|
+
};
|
|
232
|
+
export type AssociationComplianceSeverity =
|
|
233
|
+
(typeof AssociationComplianceSeverity)[keyof typeof AssociationComplianceSeverity];
|
|
228
234
|
export interface S3OutputLocation {
|
|
229
235
|
OutputS3Region?: string;
|
|
230
236
|
OutputS3BucketName?: string;
|
|
@@ -233,10 +239,12 @@ export interface S3OutputLocation {
|
|
|
233
239
|
export interface InstanceAssociationOutputLocation {
|
|
234
240
|
S3Location?: S3OutputLocation;
|
|
235
241
|
}
|
|
236
|
-
export declare
|
|
237
|
-
Auto
|
|
238
|
-
Manual
|
|
239
|
-
}
|
|
242
|
+
export declare const AssociationSyncCompliance: {
|
|
243
|
+
readonly Auto: "AUTO";
|
|
244
|
+
readonly Manual: "MANUAL";
|
|
245
|
+
};
|
|
246
|
+
export type AssociationSyncCompliance =
|
|
247
|
+
(typeof AssociationSyncCompliance)[keyof typeof AssociationSyncCompliance];
|
|
240
248
|
export interface TargetLocation {
|
|
241
249
|
Accounts?: string[];
|
|
242
250
|
Regions?: string[];
|
|
@@ -276,11 +284,13 @@ export interface AssociationOverview {
|
|
|
276
284
|
DetailedStatus?: string;
|
|
277
285
|
AssociationStatusAggregatedCount?: Record<string, number>;
|
|
278
286
|
}
|
|
279
|
-
export declare
|
|
280
|
-
Failed
|
|
281
|
-
Pending
|
|
282
|
-
Success
|
|
283
|
-
}
|
|
287
|
+
export declare const AssociationStatusName: {
|
|
288
|
+
readonly Failed: "Failed";
|
|
289
|
+
readonly Pending: "Pending";
|
|
290
|
+
readonly Success: "Success";
|
|
291
|
+
};
|
|
292
|
+
export type AssociationStatusName =
|
|
293
|
+
(typeof AssociationStatusName)[keyof typeof AssociationStatusName];
|
|
284
294
|
export interface AssociationStatus {
|
|
285
295
|
Date: Date | undefined;
|
|
286
296
|
Name: AssociationStatusName | string | undefined;
|
|
@@ -397,11 +407,12 @@ export interface CreateAssociationBatchRequestEntry {
|
|
|
397
407
|
export interface CreateAssociationBatchRequest {
|
|
398
408
|
Entries: CreateAssociationBatchRequestEntry[] | undefined;
|
|
399
409
|
}
|
|
400
|
-
export declare
|
|
401
|
-
Client
|
|
402
|
-
Server
|
|
403
|
-
Unknown
|
|
404
|
-
}
|
|
410
|
+
export declare const Fault: {
|
|
411
|
+
readonly Client: "Client";
|
|
412
|
+
readonly Server: "Server";
|
|
413
|
+
readonly Unknown: "Unknown";
|
|
414
|
+
};
|
|
415
|
+
export type Fault = (typeof Fault)[keyof typeof Fault];
|
|
405
416
|
export interface FailedCreateAssociation {
|
|
406
417
|
Entry?: CreateAssociationBatchRequestEntry;
|
|
407
418
|
Message?: string;
|
|
@@ -411,38 +422,43 @@ export interface CreateAssociationBatchResult {
|
|
|
411
422
|
Successful?: AssociationDescription[];
|
|
412
423
|
Failed?: FailedCreateAssociation[];
|
|
413
424
|
}
|
|
414
|
-
export declare
|
|
415
|
-
AttachmentReference
|
|
416
|
-
S3FileUrl
|
|
417
|
-
SourceUrl
|
|
418
|
-
}
|
|
425
|
+
export declare const AttachmentsSourceKey: {
|
|
426
|
+
readonly AttachmentReference: "AttachmentReference";
|
|
427
|
+
readonly S3FileUrl: "S3FileUrl";
|
|
428
|
+
readonly SourceUrl: "SourceUrl";
|
|
429
|
+
};
|
|
430
|
+
export type AttachmentsSourceKey =
|
|
431
|
+
(typeof AttachmentsSourceKey)[keyof typeof AttachmentsSourceKey];
|
|
419
432
|
export interface AttachmentsSource {
|
|
420
433
|
Key?: AttachmentsSourceKey | string;
|
|
421
434
|
Values?: string[];
|
|
422
435
|
Name?: string;
|
|
423
436
|
}
|
|
424
|
-
export declare
|
|
425
|
-
JSON
|
|
426
|
-
TEXT
|
|
427
|
-
YAML
|
|
428
|
-
}
|
|
429
|
-
export
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
437
|
+
export declare const DocumentFormat: {
|
|
438
|
+
readonly JSON: "JSON";
|
|
439
|
+
readonly TEXT: "TEXT";
|
|
440
|
+
readonly YAML: "YAML";
|
|
441
|
+
};
|
|
442
|
+
export type DocumentFormat =
|
|
443
|
+
(typeof DocumentFormat)[keyof typeof DocumentFormat];
|
|
444
|
+
export declare const DocumentType: {
|
|
445
|
+
readonly ApplicationConfiguration: "ApplicationConfiguration";
|
|
446
|
+
readonly ApplicationConfigurationSchema: "ApplicationConfigurationSchema";
|
|
447
|
+
readonly Automation: "Automation";
|
|
448
|
+
readonly ChangeCalendar: "ChangeCalendar";
|
|
449
|
+
readonly ChangeTemplate: "Automation.ChangeTemplate";
|
|
450
|
+
readonly CloudFormation: "CloudFormation";
|
|
451
|
+
readonly Command: "Command";
|
|
452
|
+
readonly ConformancePackTemplate: "ConformancePackTemplate";
|
|
453
|
+
readonly DeploymentStrategy: "DeploymentStrategy";
|
|
454
|
+
readonly Package: "Package";
|
|
455
|
+
readonly Policy: "Policy";
|
|
456
|
+
readonly ProblemAnalysis: "ProblemAnalysis";
|
|
457
|
+
readonly ProblemAnalysisTemplate: "ProblemAnalysisTemplate";
|
|
458
|
+
readonly QuickSetup: "QuickSetup";
|
|
459
|
+
readonly Session: "Session";
|
|
460
|
+
};
|
|
461
|
+
export type DocumentType = (typeof DocumentType)[keyof typeof DocumentType];
|
|
446
462
|
export interface DocumentRequires {
|
|
447
463
|
Name: string | undefined;
|
|
448
464
|
Version?: string;
|
|
@@ -464,43 +480,51 @@ export interface CreateDocumentRequest {
|
|
|
464
480
|
export interface AttachmentInformation {
|
|
465
481
|
Name?: string;
|
|
466
482
|
}
|
|
467
|
-
export declare
|
|
468
|
-
SHA1
|
|
469
|
-
SHA256
|
|
470
|
-
}
|
|
471
|
-
export
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
483
|
+
export declare const DocumentHashType: {
|
|
484
|
+
readonly SHA1: "Sha1";
|
|
485
|
+
readonly SHA256: "Sha256";
|
|
486
|
+
};
|
|
487
|
+
export type DocumentHashType =
|
|
488
|
+
(typeof DocumentHashType)[keyof typeof DocumentHashType];
|
|
489
|
+
export declare const DocumentParameterType: {
|
|
490
|
+
readonly String: "String";
|
|
491
|
+
readonly StringList: "StringList";
|
|
492
|
+
};
|
|
493
|
+
export type DocumentParameterType =
|
|
494
|
+
(typeof DocumentParameterType)[keyof typeof DocumentParameterType];
|
|
475
495
|
export interface DocumentParameter {
|
|
476
496
|
Name?: string;
|
|
477
497
|
Type?: DocumentParameterType | string;
|
|
478
498
|
Description?: string;
|
|
479
499
|
DefaultValue?: string;
|
|
480
500
|
}
|
|
481
|
-
export declare
|
|
482
|
-
LINUX
|
|
483
|
-
MACOS
|
|
484
|
-
WINDOWS
|
|
485
|
-
}
|
|
486
|
-
export
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
501
|
+
export declare const PlatformType: {
|
|
502
|
+
readonly LINUX: "Linux";
|
|
503
|
+
readonly MACOS: "MacOS";
|
|
504
|
+
readonly WINDOWS: "Windows";
|
|
505
|
+
};
|
|
506
|
+
export type PlatformType = (typeof PlatformType)[keyof typeof PlatformType];
|
|
507
|
+
export declare const ReviewStatus: {
|
|
508
|
+
readonly APPROVED: "APPROVED";
|
|
509
|
+
readonly NOT_REVIEWED: "NOT_REVIEWED";
|
|
510
|
+
readonly PENDING: "PENDING";
|
|
511
|
+
readonly REJECTED: "REJECTED";
|
|
512
|
+
};
|
|
513
|
+
export type ReviewStatus = (typeof ReviewStatus)[keyof typeof ReviewStatus];
|
|
492
514
|
export interface ReviewInformation {
|
|
493
515
|
ReviewedTime?: Date;
|
|
494
516
|
Status?: ReviewStatus | string;
|
|
495
517
|
Reviewer?: string;
|
|
496
518
|
}
|
|
497
|
-
export declare
|
|
498
|
-
Active
|
|
499
|
-
Creating
|
|
500
|
-
Deleting
|
|
501
|
-
Failed
|
|
502
|
-
Updating
|
|
503
|
-
}
|
|
519
|
+
export declare const DocumentStatus: {
|
|
520
|
+
readonly Active: "Active";
|
|
521
|
+
readonly Creating: "Creating";
|
|
522
|
+
readonly Deleting: "Deleting";
|
|
523
|
+
readonly Failed: "Failed";
|
|
524
|
+
readonly Updating: "Updating";
|
|
525
|
+
};
|
|
526
|
+
export type DocumentStatus =
|
|
527
|
+
(typeof DocumentStatus)[keyof typeof DocumentStatus];
|
|
504
528
|
export interface DocumentDescription {
|
|
505
529
|
Sha1?: string;
|
|
506
530
|
Hash?: string;
|
|
@@ -612,10 +636,12 @@ export declare class ResourceLimitExceededException extends __BaseException {
|
|
|
612
636
|
export interface OpsItemNotification {
|
|
613
637
|
Arn?: string;
|
|
614
638
|
}
|
|
615
|
-
export declare
|
|
616
|
-
SEARCHABLE_STRING
|
|
617
|
-
STRING
|
|
618
|
-
}
|
|
639
|
+
export declare const OpsItemDataType: {
|
|
640
|
+
readonly SEARCHABLE_STRING: "SearchableString";
|
|
641
|
+
readonly STRING: "String";
|
|
642
|
+
};
|
|
643
|
+
export type OpsItemDataType =
|
|
644
|
+
(typeof OpsItemDataType)[keyof typeof OpsItemDataType];
|
|
619
645
|
export interface OpsItemDataValue {
|
|
620
646
|
Value?: string;
|
|
621
647
|
Type?: OpsItemDataType | string;
|
|
@@ -713,35 +739,39 @@ export declare class OpsMetadataTooManyUpdatesException extends __BaseException
|
|
|
713
739
|
>
|
|
714
740
|
);
|
|
715
741
|
}
|
|
716
|
-
export declare
|
|
717
|
-
Critical
|
|
718
|
-
High
|
|
719
|
-
Informational
|
|
720
|
-
Low
|
|
721
|
-
Medium
|
|
722
|
-
Unspecified
|
|
723
|
-
}
|
|
724
|
-
export
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
742
|
+
export declare const PatchComplianceLevel: {
|
|
743
|
+
readonly Critical: "CRITICAL";
|
|
744
|
+
readonly High: "HIGH";
|
|
745
|
+
readonly Informational: "INFORMATIONAL";
|
|
746
|
+
readonly Low: "LOW";
|
|
747
|
+
readonly Medium: "MEDIUM";
|
|
748
|
+
readonly Unspecified: "UNSPECIFIED";
|
|
749
|
+
};
|
|
750
|
+
export type PatchComplianceLevel =
|
|
751
|
+
(typeof PatchComplianceLevel)[keyof typeof PatchComplianceLevel];
|
|
752
|
+
export declare const PatchFilterKey: {
|
|
753
|
+
readonly AdvisoryId: "ADVISORY_ID";
|
|
754
|
+
readonly Arch: "ARCH";
|
|
755
|
+
readonly BugzillaId: "BUGZILLA_ID";
|
|
756
|
+
readonly CVEId: "CVE_ID";
|
|
757
|
+
readonly Classification: "CLASSIFICATION";
|
|
758
|
+
readonly Epoch: "EPOCH";
|
|
759
|
+
readonly MsrcSeverity: "MSRC_SEVERITY";
|
|
760
|
+
readonly Name: "NAME";
|
|
761
|
+
readonly PatchId: "PATCH_ID";
|
|
762
|
+
readonly PatchSet: "PATCH_SET";
|
|
763
|
+
readonly Priority: "PRIORITY";
|
|
764
|
+
readonly Product: "PRODUCT";
|
|
765
|
+
readonly ProductFamily: "PRODUCT_FAMILY";
|
|
766
|
+
readonly Release: "RELEASE";
|
|
767
|
+
readonly Repository: "REPOSITORY";
|
|
768
|
+
readonly Section: "SECTION";
|
|
769
|
+
readonly Security: "SECURITY";
|
|
770
|
+
readonly Severity: "SEVERITY";
|
|
771
|
+
readonly Version: "VERSION";
|
|
772
|
+
};
|
|
773
|
+
export type PatchFilterKey =
|
|
774
|
+
(typeof PatchFilterKey)[keyof typeof PatchFilterKey];
|
|
745
775
|
export interface PatchFilter {
|
|
746
776
|
Key: PatchFilterKey | string | undefined;
|
|
747
777
|
Values: string[] | undefined;
|
|
@@ -759,27 +789,30 @@ export interface PatchRule {
|
|
|
759
789
|
export interface PatchRuleGroup {
|
|
760
790
|
PatchRules: PatchRule[] | undefined;
|
|
761
791
|
}
|
|
762
|
-
export declare
|
|
763
|
-
AlmaLinux
|
|
764
|
-
AmazonLinux
|
|
765
|
-
AmazonLinux2
|
|
766
|
-
AmazonLinux2022
|
|
767
|
-
AmazonLinux2023
|
|
768
|
-
CentOS
|
|
769
|
-
Debian
|
|
770
|
-
MacOS
|
|
771
|
-
OracleLinux
|
|
772
|
-
Raspbian
|
|
773
|
-
RedhatEnterpriseLinux
|
|
774
|
-
Rocky_Linux
|
|
775
|
-
Suse
|
|
776
|
-
Ubuntu
|
|
777
|
-
Windows
|
|
778
|
-
}
|
|
779
|
-
export
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
792
|
+
export declare const OperatingSystem: {
|
|
793
|
+
readonly AlmaLinux: "ALMA_LINUX";
|
|
794
|
+
readonly AmazonLinux: "AMAZON_LINUX";
|
|
795
|
+
readonly AmazonLinux2: "AMAZON_LINUX_2";
|
|
796
|
+
readonly AmazonLinux2022: "AMAZON_LINUX_2022";
|
|
797
|
+
readonly AmazonLinux2023: "AMAZON_LINUX_2023";
|
|
798
|
+
readonly CentOS: "CENTOS";
|
|
799
|
+
readonly Debian: "DEBIAN";
|
|
800
|
+
readonly MacOS: "MACOS";
|
|
801
|
+
readonly OracleLinux: "ORACLE_LINUX";
|
|
802
|
+
readonly Raspbian: "RASPBIAN";
|
|
803
|
+
readonly RedhatEnterpriseLinux: "REDHAT_ENTERPRISE_LINUX";
|
|
804
|
+
readonly Rocky_Linux: "ROCKY_LINUX";
|
|
805
|
+
readonly Suse: "SUSE";
|
|
806
|
+
readonly Ubuntu: "UBUNTU";
|
|
807
|
+
readonly Windows: "WINDOWS";
|
|
808
|
+
};
|
|
809
|
+
export type OperatingSystem =
|
|
810
|
+
(typeof OperatingSystem)[keyof typeof OperatingSystem];
|
|
811
|
+
export declare const PatchAction: {
|
|
812
|
+
readonly AllowAsDependency: "ALLOW_AS_DEPENDENCY";
|
|
813
|
+
readonly Block: "BLOCK";
|
|
814
|
+
};
|
|
815
|
+
export type PatchAction = (typeof PatchAction)[keyof typeof PatchAction];
|
|
783
816
|
export interface PatchSource {
|
|
784
817
|
Name: string | undefined;
|
|
785
818
|
Products: string[] | undefined;
|
|
@@ -806,9 +839,11 @@ export interface CreatePatchBaselineResult {
|
|
|
806
839
|
export interface ResourceDataSyncDestinationDataSharing {
|
|
807
840
|
DestinationDataSharingType?: string;
|
|
808
841
|
}
|
|
809
|
-
export declare
|
|
810
|
-
JSON_SERDE
|
|
811
|
-
}
|
|
842
|
+
export declare const ResourceDataSyncS3Format: {
|
|
843
|
+
readonly JSON_SERDE: "JsonSerDe";
|
|
844
|
+
};
|
|
845
|
+
export type ResourceDataSyncS3Format =
|
|
846
|
+
(typeof ResourceDataSyncS3Format)[keyof typeof ResourceDataSyncS3Format];
|
|
812
847
|
export interface ResourceDataSyncS3Destination {
|
|
813
848
|
BucketName: string | undefined;
|
|
814
849
|
Prefix?: string;
|
|
@@ -925,10 +960,12 @@ export declare class InvalidDocumentOperation extends __BaseException {
|
|
|
925
960
|
opts: __ExceptionOptionType<InvalidDocumentOperation, __BaseException>
|
|
926
961
|
);
|
|
927
962
|
}
|
|
928
|
-
export declare
|
|
929
|
-
DELETE_SCHEMA
|
|
930
|
-
DISABLE_SCHEMA
|
|
931
|
-
}
|
|
963
|
+
export declare const InventorySchemaDeleteOption: {
|
|
964
|
+
readonly DELETE_SCHEMA: "DeleteSchema";
|
|
965
|
+
readonly DISABLE_SCHEMA: "DisableSchema";
|
|
966
|
+
};
|
|
967
|
+
export type InventorySchemaDeleteOption =
|
|
968
|
+
(typeof InventorySchemaDeleteOption)[keyof typeof InventorySchemaDeleteOption];
|
|
932
969
|
export interface DeleteInventoryRequest {
|
|
933
970
|
TypeName: string | undefined;
|
|
934
971
|
SchemaDeleteOption?: InventorySchemaDeleteOption | string;
|
|
@@ -1119,11 +1156,13 @@ export interface DeregisterTaskFromMaintenanceWindowResult {
|
|
|
1119
1156
|
WindowId?: string;
|
|
1120
1157
|
WindowTaskId?: string;
|
|
1121
1158
|
}
|
|
1122
|
-
export declare
|
|
1123
|
-
ACTIVATION_IDS
|
|
1124
|
-
DEFAULT_INSTANCE_NAME
|
|
1125
|
-
IAM_ROLE
|
|
1126
|
-
}
|
|
1159
|
+
export declare const DescribeActivationsFilterKeys: {
|
|
1160
|
+
readonly ACTIVATION_IDS: "ActivationIds";
|
|
1161
|
+
readonly DEFAULT_INSTANCE_NAME: "DefaultInstanceName";
|
|
1162
|
+
readonly IAM_ROLE: "IamRole";
|
|
1163
|
+
};
|
|
1164
|
+
export type DescribeActivationsFilterKeys =
|
|
1165
|
+
(typeof DescribeActivationsFilterKeys)[keyof typeof DescribeActivationsFilterKeys];
|
|
1127
1166
|
export interface DescribeActivationsFilter {
|
|
1128
1167
|
FilterKey?: DescribeActivationsFilterKeys | string;
|
|
1129
1168
|
FilterValues?: string[];
|
|
@@ -1166,16 +1205,20 @@ export declare class InvalidAssociationVersion extends __BaseException {
|
|
|
1166
1205
|
opts: __ExceptionOptionType<InvalidAssociationVersion, __BaseException>
|
|
1167
1206
|
);
|
|
1168
1207
|
}
|
|
1169
|
-
export declare
|
|
1170
|
-
CreatedTime
|
|
1171
|
-
ExecutionId
|
|
1172
|
-
Status
|
|
1173
|
-
}
|
|
1174
|
-
export
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1208
|
+
export declare const AssociationExecutionFilterKey: {
|
|
1209
|
+
readonly CreatedTime: "CreatedTime";
|
|
1210
|
+
readonly ExecutionId: "ExecutionId";
|
|
1211
|
+
readonly Status: "Status";
|
|
1212
|
+
};
|
|
1213
|
+
export type AssociationExecutionFilterKey =
|
|
1214
|
+
(typeof AssociationExecutionFilterKey)[keyof typeof AssociationExecutionFilterKey];
|
|
1215
|
+
export declare const AssociationFilterOperatorType: {
|
|
1216
|
+
readonly Equal: "EQUAL";
|
|
1217
|
+
readonly GreaterThan: "GREATER_THAN";
|
|
1218
|
+
readonly LessThan: "LESS_THAN";
|
|
1219
|
+
};
|
|
1220
|
+
export type AssociationFilterOperatorType =
|
|
1221
|
+
(typeof AssociationFilterOperatorType)[keyof typeof AssociationFilterOperatorType];
|
|
1179
1222
|
export interface AssociationExecutionFilter {
|
|
1180
1223
|
Key: AssociationExecutionFilterKey | string | undefined;
|
|
1181
1224
|
Value: string | undefined;
|
|
@@ -1214,11 +1257,13 @@ export declare class AssociationExecutionDoesNotExist extends __BaseException {
|
|
|
1214
1257
|
>
|
|
1215
1258
|
);
|
|
1216
1259
|
}
|
|
1217
|
-
export declare
|
|
1218
|
-
ResourceId
|
|
1219
|
-
ResourceType
|
|
1220
|
-
Status
|
|
1221
|
-
}
|
|
1260
|
+
export declare const AssociationExecutionTargetsFilterKey: {
|
|
1261
|
+
readonly ResourceId: "ResourceId";
|
|
1262
|
+
readonly ResourceType: "ResourceType";
|
|
1263
|
+
readonly Status: "Status";
|
|
1264
|
+
};
|
|
1265
|
+
export type AssociationExecutionTargetsFilterKey =
|
|
1266
|
+
(typeof AssociationExecutionTargetsFilterKey)[keyof typeof AssociationExecutionTargetsFilterKey];
|
|
1222
1267
|
export interface AssociationExecutionTargetsFilter {
|
|
1223
1268
|
Key: AssociationExecutionTargetsFilterKey | string | undefined;
|
|
1224
1269
|
Value: string | undefined;
|
|
@@ -1249,20 +1294,22 @@ export interface DescribeAssociationExecutionTargetsResult {
|
|
|
1249
1294
|
AssociationExecutionTargets?: AssociationExecutionTarget[];
|
|
1250
1295
|
NextToken?: string;
|
|
1251
1296
|
}
|
|
1252
|
-
export declare
|
|
1253
|
-
AUTOMATION_SUBTYPE
|
|
1254
|
-
AUTOMATION_TYPE
|
|
1255
|
-
CURRENT_ACTION
|
|
1256
|
-
DOCUMENT_NAME_PREFIX
|
|
1257
|
-
EXECUTION_ID
|
|
1258
|
-
EXECUTION_STATUS
|
|
1259
|
-
OPS_ITEM_ID
|
|
1260
|
-
PARENT_EXECUTION_ID
|
|
1261
|
-
START_TIME_AFTER
|
|
1262
|
-
START_TIME_BEFORE
|
|
1263
|
-
TAG_KEY
|
|
1264
|
-
TARGET_RESOURCE_GROUP
|
|
1265
|
-
}
|
|
1297
|
+
export declare const AutomationExecutionFilterKey: {
|
|
1298
|
+
readonly AUTOMATION_SUBTYPE: "AutomationSubtype";
|
|
1299
|
+
readonly AUTOMATION_TYPE: "AutomationType";
|
|
1300
|
+
readonly CURRENT_ACTION: "CurrentAction";
|
|
1301
|
+
readonly DOCUMENT_NAME_PREFIX: "DocumentNamePrefix";
|
|
1302
|
+
readonly EXECUTION_ID: "ExecutionId";
|
|
1303
|
+
readonly EXECUTION_STATUS: "ExecutionStatus";
|
|
1304
|
+
readonly OPS_ITEM_ID: "OpsItemId";
|
|
1305
|
+
readonly PARENT_EXECUTION_ID: "ParentExecutionId";
|
|
1306
|
+
readonly START_TIME_AFTER: "StartTimeAfter";
|
|
1307
|
+
readonly START_TIME_BEFORE: "StartTimeBefore";
|
|
1308
|
+
readonly TAG_KEY: "TagKey";
|
|
1309
|
+
readonly TARGET_RESOURCE_GROUP: "TargetResourceGroup";
|
|
1310
|
+
};
|
|
1311
|
+
export type AutomationExecutionFilterKey =
|
|
1312
|
+
(typeof AutomationExecutionFilterKey)[keyof typeof AutomationExecutionFilterKey];
|
|
1266
1313
|
export interface AutomationExecutionFilter {
|
|
1267
1314
|
Key: AutomationExecutionFilterKey | string | undefined;
|
|
1268
1315
|
Values: string[] | undefined;
|
|
@@ -1272,37 +1319,44 @@ export interface DescribeAutomationExecutionsRequest {
|
|
|
1272
1319
|
MaxResults?: number;
|
|
1273
1320
|
NextToken?: string;
|
|
1274
1321
|
}
|
|
1275
|
-
export declare
|
|
1276
|
-
APPROVED
|
|
1277
|
-
CANCELLED
|
|
1278
|
-
CANCELLING
|
|
1279
|
-
CHANGE_CALENDAR_OVERRIDE_APPROVED
|
|
1280
|
-
CHANGE_CALENDAR_OVERRIDE_REJECTED
|
|
1281
|
-
COMPLETED_WITH_FAILURE
|
|
1282
|
-
COMPLETED_WITH_SUCCESS
|
|
1283
|
-
FAILED
|
|
1284
|
-
INPROGRESS
|
|
1285
|
-
PENDING
|
|
1286
|
-
PENDING_APPROVAL
|
|
1287
|
-
PENDING_CHANGE_CALENDAR_OVERRIDE
|
|
1288
|
-
REJECTED
|
|
1289
|
-
RUNBOOK_INPROGRESS
|
|
1290
|
-
SCHEDULED
|
|
1291
|
-
SUCCESS
|
|
1292
|
-
TIMEDOUT
|
|
1293
|
-
WAITING
|
|
1294
|
-
}
|
|
1295
|
-
export
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
export declare
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
}
|
|
1322
|
+
export declare const AutomationExecutionStatus: {
|
|
1323
|
+
readonly APPROVED: "Approved";
|
|
1324
|
+
readonly CANCELLED: "Cancelled";
|
|
1325
|
+
readonly CANCELLING: "Cancelling";
|
|
1326
|
+
readonly CHANGE_CALENDAR_OVERRIDE_APPROVED: "ChangeCalendarOverrideApproved";
|
|
1327
|
+
readonly CHANGE_CALENDAR_OVERRIDE_REJECTED: "ChangeCalendarOverrideRejected";
|
|
1328
|
+
readonly COMPLETED_WITH_FAILURE: "CompletedWithFailure";
|
|
1329
|
+
readonly COMPLETED_WITH_SUCCESS: "CompletedWithSuccess";
|
|
1330
|
+
readonly FAILED: "Failed";
|
|
1331
|
+
readonly INPROGRESS: "InProgress";
|
|
1332
|
+
readonly PENDING: "Pending";
|
|
1333
|
+
readonly PENDING_APPROVAL: "PendingApproval";
|
|
1334
|
+
readonly PENDING_CHANGE_CALENDAR_OVERRIDE: "PendingChangeCalendarOverride";
|
|
1335
|
+
readonly REJECTED: "Rejected";
|
|
1336
|
+
readonly RUNBOOK_INPROGRESS: "RunbookInProgress";
|
|
1337
|
+
readonly SCHEDULED: "Scheduled";
|
|
1338
|
+
readonly SUCCESS: "Success";
|
|
1339
|
+
readonly TIMEDOUT: "TimedOut";
|
|
1340
|
+
readonly WAITING: "Waiting";
|
|
1341
|
+
};
|
|
1342
|
+
export type AutomationExecutionStatus =
|
|
1343
|
+
(typeof AutomationExecutionStatus)[keyof typeof AutomationExecutionStatus];
|
|
1344
|
+
export declare const AutomationSubtype: {
|
|
1345
|
+
readonly ChangeRequest: "ChangeRequest";
|
|
1346
|
+
};
|
|
1347
|
+
export type AutomationSubtype =
|
|
1348
|
+
(typeof AutomationSubtype)[keyof typeof AutomationSubtype];
|
|
1349
|
+
export declare const AutomationType: {
|
|
1350
|
+
readonly CrossAccount: "CrossAccount";
|
|
1351
|
+
readonly Local: "Local";
|
|
1352
|
+
};
|
|
1353
|
+
export type AutomationType =
|
|
1354
|
+
(typeof AutomationType)[keyof typeof AutomationType];
|
|
1355
|
+
export declare const ExecutionMode: {
|
|
1356
|
+
readonly Auto: "Auto";
|
|
1357
|
+
readonly Interactive: "Interactive";
|
|
1358
|
+
};
|
|
1359
|
+
export type ExecutionMode = (typeof ExecutionMode)[keyof typeof ExecutionMode];
|
|
1306
1360
|
export interface ResolvedTargets {
|
|
1307
1361
|
ParameterValues?: string[];
|
|
1308
1362
|
Truncated?: boolean;
|
|
@@ -1376,14 +1430,16 @@ export declare class AutomationExecutionNotFoundException extends __BaseExceptio
|
|
|
1376
1430
|
>
|
|
1377
1431
|
);
|
|
1378
1432
|
}
|
|
1379
|
-
export declare
|
|
1380
|
-
ACTION
|
|
1381
|
-
START_TIME_AFTER
|
|
1382
|
-
START_TIME_BEFORE
|
|
1383
|
-
STEP_EXECUTION_ID
|
|
1384
|
-
STEP_EXECUTION_STATUS
|
|
1385
|
-
STEP_NAME
|
|
1386
|
-
}
|
|
1433
|
+
export declare const StepExecutionFilterKey: {
|
|
1434
|
+
readonly ACTION: "Action";
|
|
1435
|
+
readonly START_TIME_AFTER: "StartTimeAfter";
|
|
1436
|
+
readonly START_TIME_BEFORE: "StartTimeBefore";
|
|
1437
|
+
readonly STEP_EXECUTION_ID: "StepExecutionId";
|
|
1438
|
+
readonly STEP_EXECUTION_STATUS: "StepExecutionStatus";
|
|
1439
|
+
readonly STEP_NAME: "StepName";
|
|
1440
|
+
};
|
|
1441
|
+
export type StepExecutionFilterKey =
|
|
1442
|
+
(typeof StepExecutionFilterKey)[keyof typeof StepExecutionFilterKey];
|
|
1387
1443
|
export interface StepExecutionFilter {
|
|
1388
1444
|
Key: StepExecutionFilterKey | string | undefined;
|
|
1389
1445
|
Values: string[] | undefined;
|
|
@@ -1475,9 +1531,11 @@ export interface DescribeDocumentRequest {
|
|
|
1475
1531
|
export interface DescribeDocumentResult {
|
|
1476
1532
|
Document?: DocumentDescription;
|
|
1477
1533
|
}
|
|
1478
|
-
export declare
|
|
1479
|
-
SHARE
|
|
1480
|
-
}
|
|
1534
|
+
export declare const DocumentPermissionType: {
|
|
1535
|
+
readonly SHARE: "Share";
|
|
1536
|
+
};
|
|
1537
|
+
export type DocumentPermissionType =
|
|
1538
|
+
(typeof DocumentPermissionType)[keyof typeof DocumentPermissionType];
|
|
1481
1539
|
export interface DescribeDocumentPermissionRequest {
|
|
1482
1540
|
Name: string | undefined;
|
|
1483
1541
|
PermissionType: DocumentPermissionType | string | undefined;
|
|
@@ -1517,12 +1575,14 @@ export interface DescribeEffectivePatchesForPatchBaselineRequest {
|
|
|
1517
1575
|
MaxResults?: number;
|
|
1518
1576
|
NextToken?: string;
|
|
1519
1577
|
}
|
|
1520
|
-
export declare
|
|
1521
|
-
Approved
|
|
1522
|
-
ExplicitApproved
|
|
1523
|
-
ExplicitRejected
|
|
1524
|
-
PendingApproval
|
|
1525
|
-
}
|
|
1578
|
+
export declare const PatchDeploymentStatus: {
|
|
1579
|
+
readonly Approved: "APPROVED";
|
|
1580
|
+
readonly ExplicitApproved: "EXPLICIT_APPROVED";
|
|
1581
|
+
readonly ExplicitRejected: "EXPLICIT_REJECTED";
|
|
1582
|
+
readonly PendingApproval: "PENDING_APPROVAL";
|
|
1583
|
+
};
|
|
1584
|
+
export type PatchDeploymentStatus =
|
|
1585
|
+
(typeof PatchDeploymentStatus)[keyof typeof PatchDeploymentStatus];
|
|
1526
1586
|
export interface PatchStatus {
|
|
1527
1587
|
DeploymentStatus?: PatchDeploymentStatus | string;
|
|
1528
1588
|
ComplianceLevel?: PatchComplianceLevel | string;
|
|
@@ -1577,16 +1637,18 @@ export interface InstanceInformationStringFilter {
|
|
|
1577
1637
|
Key: string | undefined;
|
|
1578
1638
|
Values: string[] | undefined;
|
|
1579
1639
|
}
|
|
1580
|
-
export declare
|
|
1581
|
-
ACTIVATION_IDS
|
|
1582
|
-
AGENT_VERSION
|
|
1583
|
-
ASSOCIATION_STATUS
|
|
1584
|
-
IAM_ROLE
|
|
1585
|
-
INSTANCE_IDS
|
|
1586
|
-
PING_STATUS
|
|
1587
|
-
PLATFORM_TYPES
|
|
1588
|
-
RESOURCE_TYPE
|
|
1589
|
-
}
|
|
1640
|
+
export declare const InstanceInformationFilterKey: {
|
|
1641
|
+
readonly ACTIVATION_IDS: "ActivationIds";
|
|
1642
|
+
readonly AGENT_VERSION: "AgentVersion";
|
|
1643
|
+
readonly ASSOCIATION_STATUS: "AssociationStatus";
|
|
1644
|
+
readonly IAM_ROLE: "IamRole";
|
|
1645
|
+
readonly INSTANCE_IDS: "InstanceIds";
|
|
1646
|
+
readonly PING_STATUS: "PingStatus";
|
|
1647
|
+
readonly PLATFORM_TYPES: "PlatformTypes";
|
|
1648
|
+
readonly RESOURCE_TYPE: "ResourceType";
|
|
1649
|
+
};
|
|
1650
|
+
export type InstanceInformationFilterKey =
|
|
1651
|
+
(typeof InstanceInformationFilterKey)[keyof typeof InstanceInformationFilterKey];
|
|
1590
1652
|
export interface InstanceInformationFilter {
|
|
1591
1653
|
key: InstanceInformationFilterKey | string | undefined;
|
|
1592
1654
|
valueSet: string[] | undefined;
|
|
@@ -1601,21 +1663,24 @@ export interface InstanceAggregatedAssociationOverview {
|
|
|
1601
1663
|
DetailedStatus?: string;
|
|
1602
1664
|
InstanceAssociationStatusAggregatedCount?: Record<string, number>;
|
|
1603
1665
|
}
|
|
1604
|
-
export declare
|
|
1605
|
-
CONNECTION_LOST
|
|
1606
|
-
INACTIVE
|
|
1607
|
-
ONLINE
|
|
1608
|
-
}
|
|
1609
|
-
export
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1666
|
+
export declare const PingStatus: {
|
|
1667
|
+
readonly CONNECTION_LOST: "ConnectionLost";
|
|
1668
|
+
readonly INACTIVE: "Inactive";
|
|
1669
|
+
readonly ONLINE: "Online";
|
|
1670
|
+
};
|
|
1671
|
+
export type PingStatus = (typeof PingStatus)[keyof typeof PingStatus];
|
|
1672
|
+
export declare const ResourceType: {
|
|
1673
|
+
readonly DOCUMENT: "Document";
|
|
1674
|
+
readonly EC2_INSTANCE: "EC2Instance";
|
|
1675
|
+
readonly MANAGED_INSTANCE: "ManagedInstance";
|
|
1676
|
+
};
|
|
1677
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
1678
|
+
export declare const SourceType: {
|
|
1679
|
+
readonly AWS_EC2_INSTANCE: "AWS::EC2::Instance";
|
|
1680
|
+
readonly AWS_IOT_THING: "AWS::IoT::Thing";
|
|
1681
|
+
readonly AWS_SSM_MANAGEDINSTANCE: "AWS::SSM::ManagedInstance";
|
|
1682
|
+
};
|
|
1683
|
+
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
1619
1684
|
export interface InstanceInformation {
|
|
1620
1685
|
InstanceId?: string;
|
|
1621
1686
|
PingStatus?: PingStatus | string;
|
|
@@ -1659,15 +1724,17 @@ export interface DescribeInstancePatchesRequest {
|
|
|
1659
1724
|
NextToken?: string;
|
|
1660
1725
|
MaxResults?: number;
|
|
1661
1726
|
}
|
|
1662
|
-
export declare
|
|
1663
|
-
Failed
|
|
1664
|
-
Installed
|
|
1665
|
-
InstalledOther
|
|
1666
|
-
InstalledPendingReboot
|
|
1667
|
-
InstalledRejected
|
|
1668
|
-
Missing
|
|
1669
|
-
NotApplicable
|
|
1670
|
-
}
|
|
1727
|
+
export declare const PatchComplianceDataState: {
|
|
1728
|
+
readonly Failed: "FAILED";
|
|
1729
|
+
readonly Installed: "INSTALLED";
|
|
1730
|
+
readonly InstalledOther: "INSTALLED_OTHER";
|
|
1731
|
+
readonly InstalledPendingReboot: "INSTALLED_PENDING_REBOOT";
|
|
1732
|
+
readonly InstalledRejected: "INSTALLED_REJECTED";
|
|
1733
|
+
readonly Missing: "MISSING";
|
|
1734
|
+
readonly NotApplicable: "NOT_APPLICABLE";
|
|
1735
|
+
};
|
|
1736
|
+
export type PatchComplianceDataState =
|
|
1737
|
+
(typeof PatchComplianceDataState)[keyof typeof PatchComplianceDataState];
|
|
1671
1738
|
export interface PatchComplianceData {
|
|
1672
1739
|
Title: string | undefined;
|
|
1673
1740
|
KBId: string | undefined;
|
|
@@ -1686,14 +1753,17 @@ export interface DescribeInstancePatchStatesRequest {
|
|
|
1686
1753
|
NextToken?: string;
|
|
1687
1754
|
MaxResults?: number;
|
|
1688
1755
|
}
|
|
1689
|
-
export declare
|
|
1690
|
-
INSTALL
|
|
1691
|
-
SCAN
|
|
1692
|
-
}
|
|
1693
|
-
export
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1756
|
+
export declare const PatchOperationType: {
|
|
1757
|
+
readonly INSTALL: "Install";
|
|
1758
|
+
readonly SCAN: "Scan";
|
|
1759
|
+
};
|
|
1760
|
+
export type PatchOperationType =
|
|
1761
|
+
(typeof PatchOperationType)[keyof typeof PatchOperationType];
|
|
1762
|
+
export declare const RebootOption: {
|
|
1763
|
+
readonly NO_REBOOT: "NoReboot";
|
|
1764
|
+
readonly REBOOT_IF_NEEDED: "RebootIfNeeded";
|
|
1765
|
+
};
|
|
1766
|
+
export type RebootOption = (typeof RebootOption)[keyof typeof RebootOption];
|
|
1697
1767
|
export interface InstancePatchState {
|
|
1698
1768
|
InstanceId: string | undefined;
|
|
1699
1769
|
PatchGroup: string | undefined;
|
|
@@ -1722,12 +1792,14 @@ export interface DescribeInstancePatchStatesResult {
|
|
|
1722
1792
|
InstancePatchStates?: InstancePatchState[];
|
|
1723
1793
|
NextToken?: string;
|
|
1724
1794
|
}
|
|
1725
|
-
export declare
|
|
1726
|
-
EQUAL
|
|
1727
|
-
GREATER_THAN
|
|
1728
|
-
LESS_THAN
|
|
1729
|
-
NOT_EQUAL
|
|
1730
|
-
}
|
|
1795
|
+
export declare const InstancePatchStateOperatorType: {
|
|
1796
|
+
readonly EQUAL: "Equal";
|
|
1797
|
+
readonly GREATER_THAN: "GreaterThan";
|
|
1798
|
+
readonly LESS_THAN: "LessThan";
|
|
1799
|
+
readonly NOT_EQUAL: "NotEqual";
|
|
1800
|
+
};
|
|
1801
|
+
export type InstancePatchStateOperatorType =
|
|
1802
|
+
(typeof InstancePatchStateOperatorType)[keyof typeof InstancePatchStateOperatorType];
|
|
1731
1803
|
export interface InstancePatchStateFilter {
|
|
1732
1804
|
Key: string | undefined;
|
|
1733
1805
|
Values: string[] | undefined;
|
|
@@ -1748,10 +1820,12 @@ export interface DescribeInventoryDeletionsRequest {
|
|
|
1748
1820
|
NextToken?: string;
|
|
1749
1821
|
MaxResults?: number;
|
|
1750
1822
|
}
|
|
1751
|
-
export declare
|
|
1752
|
-
COMPLETE
|
|
1753
|
-
IN_PROGRESS
|
|
1754
|
-
}
|
|
1823
|
+
export declare const InventoryDeletionStatus: {
|
|
1824
|
+
readonly COMPLETE: "Complete";
|
|
1825
|
+
readonly IN_PROGRESS: "InProgress";
|
|
1826
|
+
};
|
|
1827
|
+
export type InventoryDeletionStatus =
|
|
1828
|
+
(typeof InventoryDeletionStatus)[keyof typeof InventoryDeletionStatus];
|
|
1755
1829
|
export interface InventoryDeletionStatusItem {
|
|
1756
1830
|
DeletionId?: string;
|
|
1757
1831
|
TypeName?: string;
|
|
@@ -1783,16 +1857,18 @@ export interface DescribeMaintenanceWindowExecutionsRequest {
|
|
|
1783
1857
|
MaxResults?: number;
|
|
1784
1858
|
NextToken?: string;
|
|
1785
1859
|
}
|
|
1786
|
-
export declare
|
|
1787
|
-
Cancelled
|
|
1788
|
-
Cancelling
|
|
1789
|
-
Failed
|
|
1790
|
-
InProgress
|
|
1791
|
-
Pending
|
|
1792
|
-
SkippedOverlapping
|
|
1793
|
-
Success
|
|
1794
|
-
TimedOut
|
|
1795
|
-
}
|
|
1860
|
+
export declare const MaintenanceWindowExecutionStatus: {
|
|
1861
|
+
readonly Cancelled: "CANCELLED";
|
|
1862
|
+
readonly Cancelling: "CANCELLING";
|
|
1863
|
+
readonly Failed: "FAILED";
|
|
1864
|
+
readonly InProgress: "IN_PROGRESS";
|
|
1865
|
+
readonly Pending: "PENDING";
|
|
1866
|
+
readonly SkippedOverlapping: "SKIPPED_OVERLAPPING";
|
|
1867
|
+
readonly Success: "SUCCESS";
|
|
1868
|
+
readonly TimedOut: "TIMED_OUT";
|
|
1869
|
+
};
|
|
1870
|
+
export type MaintenanceWindowExecutionStatus =
|
|
1871
|
+
(typeof MaintenanceWindowExecutionStatus)[keyof typeof MaintenanceWindowExecutionStatus];
|
|
1796
1872
|
export interface MaintenanceWindowExecution {
|
|
1797
1873
|
WindowId?: string;
|
|
1798
1874
|
WindowExecutionId?: string;
|
|
@@ -1812,12 +1888,14 @@ export interface DescribeMaintenanceWindowExecutionTaskInvocationsRequest {
|
|
|
1812
1888
|
MaxResults?: number;
|
|
1813
1889
|
NextToken?: string;
|
|
1814
1890
|
}
|
|
1815
|
-
export declare
|
|
1816
|
-
Automation
|
|
1817
|
-
Lambda
|
|
1818
|
-
RunCommand
|
|
1819
|
-
StepFunctions
|
|
1820
|
-
}
|
|
1891
|
+
export declare const MaintenanceWindowTaskType: {
|
|
1892
|
+
readonly Automation: "AUTOMATION";
|
|
1893
|
+
readonly Lambda: "LAMBDA";
|
|
1894
|
+
readonly RunCommand: "RUN_COMMAND";
|
|
1895
|
+
readonly StepFunctions: "STEP_FUNCTIONS";
|
|
1896
|
+
};
|
|
1897
|
+
export type MaintenanceWindowTaskType =
|
|
1898
|
+
(typeof MaintenanceWindowTaskType)[keyof typeof MaintenanceWindowTaskType];
|
|
1821
1899
|
export interface MaintenanceWindowExecutionTaskInvocationIdentity {
|
|
1822
1900
|
WindowExecutionId?: string;
|
|
1823
1901
|
TaskExecutionId?: string;
|
|
@@ -1881,10 +1959,12 @@ export interface DescribeMaintenanceWindowsResult {
|
|
|
1881
1959
|
WindowIdentities?: MaintenanceWindowIdentity[];
|
|
1882
1960
|
NextToken?: string;
|
|
1883
1961
|
}
|
|
1884
|
-
export declare
|
|
1885
|
-
Instance
|
|
1886
|
-
ResourceGroup
|
|
1887
|
-
}
|
|
1962
|
+
export declare const MaintenanceWindowResourceType: {
|
|
1963
|
+
readonly Instance: "INSTANCE";
|
|
1964
|
+
readonly ResourceGroup: "RESOURCE_GROUP";
|
|
1965
|
+
};
|
|
1966
|
+
export type MaintenanceWindowResourceType =
|
|
1967
|
+
(typeof MaintenanceWindowResourceType)[keyof typeof MaintenanceWindowResourceType];
|
|
1888
1968
|
export interface DescribeMaintenanceWindowScheduleRequest {
|
|
1889
1969
|
WindowId?: string;
|
|
1890
1970
|
Targets?: Target[];
|
|
@@ -1941,10 +2021,12 @@ export interface DescribeMaintenanceWindowTasksRequest {
|
|
|
1941
2021
|
MaxResults?: number;
|
|
1942
2022
|
NextToken?: string;
|
|
1943
2023
|
}
|
|
1944
|
-
export declare
|
|
1945
|
-
CancelTask
|
|
1946
|
-
ContinueTask
|
|
1947
|
-
}
|
|
2024
|
+
export declare const MaintenanceWindowTaskCutoffBehavior: {
|
|
2025
|
+
readonly CancelTask: "CANCEL_TASK";
|
|
2026
|
+
readonly ContinueTask: "CONTINUE_TASK";
|
|
2027
|
+
};
|
|
2028
|
+
export type MaintenanceWindowTaskCutoffBehavior =
|
|
2029
|
+
(typeof MaintenanceWindowTaskCutoffBehavior)[keyof typeof MaintenanceWindowTaskCutoffBehavior];
|
|
1948
2030
|
export interface LoggingInfo {
|
|
1949
2031
|
S3BucketName: string | undefined;
|
|
1950
2032
|
S3KeyPrefix?: string;
|
|
@@ -1977,42 +2059,46 @@ export interface DescribeMaintenanceWindowTasksResult {
|
|
|
1977
2059
|
Tasks?: MaintenanceWindowTask[];
|
|
1978
2060
|
NextToken?: string;
|
|
1979
2061
|
}
|
|
1980
|
-
export declare
|
|
1981
|
-
ACCOUNT_ID
|
|
1982
|
-
ACTUAL_END_TIME
|
|
1983
|
-
ACTUAL_START_TIME
|
|
1984
|
-
AUTOMATION_ID
|
|
1985
|
-
CATEGORY
|
|
1986
|
-
CHANGE_REQUEST_APPROVER_ARN
|
|
1987
|
-
CHANGE_REQUEST_APPROVER_NAME
|
|
1988
|
-
CHANGE_REQUEST_REQUESTER_ARN
|
|
1989
|
-
CHANGE_REQUEST_REQUESTER_NAME
|
|
1990
|
-
CHANGE_REQUEST_TARGETS_RESOURCE_GROUP
|
|
1991
|
-
CHANGE_REQUEST_TEMPLATE
|
|
1992
|
-
CREATED_BY
|
|
1993
|
-
CREATED_TIME
|
|
1994
|
-
INSIGHT_TYPE
|
|
1995
|
-
LAST_MODIFIED_TIME
|
|
1996
|
-
OPERATIONAL_DATA
|
|
1997
|
-
OPERATIONAL_DATA_KEY
|
|
1998
|
-
OPERATIONAL_DATA_VALUE
|
|
1999
|
-
OPSITEM_ID
|
|
2000
|
-
OPSITEM_TYPE
|
|
2001
|
-
PLANNED_END_TIME
|
|
2002
|
-
PLANNED_START_TIME
|
|
2003
|
-
PRIORITY
|
|
2004
|
-
RESOURCE_ID
|
|
2005
|
-
SEVERITY
|
|
2006
|
-
SOURCE
|
|
2007
|
-
STATUS
|
|
2008
|
-
TITLE
|
|
2009
|
-
}
|
|
2010
|
-
export
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2062
|
+
export declare const OpsItemFilterKey: {
|
|
2063
|
+
readonly ACCOUNT_ID: "AccountId";
|
|
2064
|
+
readonly ACTUAL_END_TIME: "ActualEndTime";
|
|
2065
|
+
readonly ACTUAL_START_TIME: "ActualStartTime";
|
|
2066
|
+
readonly AUTOMATION_ID: "AutomationId";
|
|
2067
|
+
readonly CATEGORY: "Category";
|
|
2068
|
+
readonly CHANGE_REQUEST_APPROVER_ARN: "ChangeRequestByApproverArn";
|
|
2069
|
+
readonly CHANGE_REQUEST_APPROVER_NAME: "ChangeRequestByApproverName";
|
|
2070
|
+
readonly CHANGE_REQUEST_REQUESTER_ARN: "ChangeRequestByRequesterArn";
|
|
2071
|
+
readonly CHANGE_REQUEST_REQUESTER_NAME: "ChangeRequestByRequesterName";
|
|
2072
|
+
readonly CHANGE_REQUEST_TARGETS_RESOURCE_GROUP: "ChangeRequestByTargetsResourceGroup";
|
|
2073
|
+
readonly CHANGE_REQUEST_TEMPLATE: "ChangeRequestByTemplate";
|
|
2074
|
+
readonly CREATED_BY: "CreatedBy";
|
|
2075
|
+
readonly CREATED_TIME: "CreatedTime";
|
|
2076
|
+
readonly INSIGHT_TYPE: "InsightByType";
|
|
2077
|
+
readonly LAST_MODIFIED_TIME: "LastModifiedTime";
|
|
2078
|
+
readonly OPERATIONAL_DATA: "OperationalData";
|
|
2079
|
+
readonly OPERATIONAL_DATA_KEY: "OperationalDataKey";
|
|
2080
|
+
readonly OPERATIONAL_DATA_VALUE: "OperationalDataValue";
|
|
2081
|
+
readonly OPSITEM_ID: "OpsItemId";
|
|
2082
|
+
readonly OPSITEM_TYPE: "OpsItemType";
|
|
2083
|
+
readonly PLANNED_END_TIME: "PlannedEndTime";
|
|
2084
|
+
readonly PLANNED_START_TIME: "PlannedStartTime";
|
|
2085
|
+
readonly PRIORITY: "Priority";
|
|
2086
|
+
readonly RESOURCE_ID: "ResourceId";
|
|
2087
|
+
readonly SEVERITY: "Severity";
|
|
2088
|
+
readonly SOURCE: "Source";
|
|
2089
|
+
readonly STATUS: "Status";
|
|
2090
|
+
readonly TITLE: "Title";
|
|
2091
|
+
};
|
|
2092
|
+
export type OpsItemFilterKey =
|
|
2093
|
+
(typeof OpsItemFilterKey)[keyof typeof OpsItemFilterKey];
|
|
2094
|
+
export declare const OpsItemFilterOperator: {
|
|
2095
|
+
readonly CONTAINS: "Contains";
|
|
2096
|
+
readonly EQUAL: "Equal";
|
|
2097
|
+
readonly GREATER_THAN: "GreaterThan";
|
|
2098
|
+
readonly LESS_THAN: "LessThan";
|
|
2099
|
+
};
|
|
2100
|
+
export type OpsItemFilterOperator =
|
|
2101
|
+
(typeof OpsItemFilterOperator)[keyof typeof OpsItemFilterOperator];
|
|
2016
2102
|
export declare const CreateAssociationRequestFilterSensitiveLog: (
|
|
2017
2103
|
obj: CreateAssociationRequest
|
|
2018
2104
|
) => any;
|