@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.
@@ -20,17 +20,19 @@ export interface Activation {
20
20
  CreatedDate?: Date;
21
21
  Tags?: Tag[];
22
22
  }
23
- export declare enum ResourceTypeForTagging {
24
- ASSOCIATION = "Association",
25
- AUTOMATION = "Automation",
26
- DOCUMENT = "Document",
27
- MAINTENANCE_WINDOW = "MaintenanceWindow",
28
- MANAGED_INSTANCE = "ManagedInstance",
29
- OPSMETADATA = "OpsMetadata",
30
- OPS_ITEM = "OpsItem",
31
- PARAMETER = "Parameter",
32
- PATCH_BASELINE = "PatchBaseline",
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 enum ExternalAlarmState {
79
- ALARM = "ALARM",
80
- UNKNOWN = "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 enum AssociationComplianceSeverity {
222
- Critical = "CRITICAL",
223
- High = "HIGH",
224
- Low = "LOW",
225
- Medium = "MEDIUM",
226
- Unspecified = "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 enum AssociationSyncCompliance {
237
- Auto = "AUTO",
238
- Manual = "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 enum AssociationStatusName {
280
- Failed = "Failed",
281
- Pending = "Pending",
282
- Success = "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 enum Fault {
401
- Client = "Client",
402
- Server = "Server",
403
- Unknown = "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 enum AttachmentsSourceKey {
415
- AttachmentReference = "AttachmentReference",
416
- S3FileUrl = "S3FileUrl",
417
- SourceUrl = "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 enum DocumentFormat {
425
- JSON = "JSON",
426
- TEXT = "TEXT",
427
- YAML = "YAML",
428
- }
429
- export declare enum DocumentType {
430
- ApplicationConfiguration = "ApplicationConfiguration",
431
- ApplicationConfigurationSchema = "ApplicationConfigurationSchema",
432
- Automation = "Automation",
433
- ChangeCalendar = "ChangeCalendar",
434
- ChangeTemplate = "Automation.ChangeTemplate",
435
- CloudFormation = "CloudFormation",
436
- Command = "Command",
437
- ConformancePackTemplate = "ConformancePackTemplate",
438
- DeploymentStrategy = "DeploymentStrategy",
439
- Package = "Package",
440
- Policy = "Policy",
441
- ProblemAnalysis = "ProblemAnalysis",
442
- ProblemAnalysisTemplate = "ProblemAnalysisTemplate",
443
- QuickSetup = "QuickSetup",
444
- Session = "Session",
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 enum DocumentHashType {
468
- SHA1 = "Sha1",
469
- SHA256 = "Sha256",
470
- }
471
- export declare enum DocumentParameterType {
472
- String = "String",
473
- StringList = "StringList",
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 enum PlatformType {
482
- LINUX = "Linux",
483
- MACOS = "MacOS",
484
- WINDOWS = "Windows",
485
- }
486
- export declare enum ReviewStatus {
487
- APPROVED = "APPROVED",
488
- NOT_REVIEWED = "NOT_REVIEWED",
489
- PENDING = "PENDING",
490
- REJECTED = "REJECTED",
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 enum DocumentStatus {
498
- Active = "Active",
499
- Creating = "Creating",
500
- Deleting = "Deleting",
501
- Failed = "Failed",
502
- Updating = "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 enum OpsItemDataType {
616
- SEARCHABLE_STRING = "SearchableString",
617
- STRING = "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 enum PatchComplianceLevel {
717
- Critical = "CRITICAL",
718
- High = "HIGH",
719
- Informational = "INFORMATIONAL",
720
- Low = "LOW",
721
- Medium = "MEDIUM",
722
- Unspecified = "UNSPECIFIED",
723
- }
724
- export declare enum PatchFilterKey {
725
- AdvisoryId = "ADVISORY_ID",
726
- Arch = "ARCH",
727
- BugzillaId = "BUGZILLA_ID",
728
- CVEId = "CVE_ID",
729
- Classification = "CLASSIFICATION",
730
- Epoch = "EPOCH",
731
- MsrcSeverity = "MSRC_SEVERITY",
732
- Name = "NAME",
733
- PatchId = "PATCH_ID",
734
- PatchSet = "PATCH_SET",
735
- Priority = "PRIORITY",
736
- Product = "PRODUCT",
737
- ProductFamily = "PRODUCT_FAMILY",
738
- Release = "RELEASE",
739
- Repository = "REPOSITORY",
740
- Section = "SECTION",
741
- Security = "SECURITY",
742
- Severity = "SEVERITY",
743
- Version = "VERSION",
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 enum OperatingSystem {
763
- AlmaLinux = "ALMA_LINUX",
764
- AmazonLinux = "AMAZON_LINUX",
765
- AmazonLinux2 = "AMAZON_LINUX_2",
766
- AmazonLinux2022 = "AMAZON_LINUX_2022",
767
- AmazonLinux2023 = "AMAZON_LINUX_2023",
768
- CentOS = "CENTOS",
769
- Debian = "DEBIAN",
770
- MacOS = "MACOS",
771
- OracleLinux = "ORACLE_LINUX",
772
- Raspbian = "RASPBIAN",
773
- RedhatEnterpriseLinux = "REDHAT_ENTERPRISE_LINUX",
774
- Rocky_Linux = "ROCKY_LINUX",
775
- Suse = "SUSE",
776
- Ubuntu = "UBUNTU",
777
- Windows = "WINDOWS",
778
- }
779
- export declare enum PatchAction {
780
- AllowAsDependency = "ALLOW_AS_DEPENDENCY",
781
- Block = "BLOCK",
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 enum ResourceDataSyncS3Format {
810
- JSON_SERDE = "JsonSerDe",
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 enum InventorySchemaDeleteOption {
929
- DELETE_SCHEMA = "DeleteSchema",
930
- DISABLE_SCHEMA = "DisableSchema",
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 enum DescribeActivationsFilterKeys {
1123
- ACTIVATION_IDS = "ActivationIds",
1124
- DEFAULT_INSTANCE_NAME = "DefaultInstanceName",
1125
- IAM_ROLE = "IamRole",
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 enum AssociationExecutionFilterKey {
1170
- CreatedTime = "CreatedTime",
1171
- ExecutionId = "ExecutionId",
1172
- Status = "Status",
1173
- }
1174
- export declare enum AssociationFilterOperatorType {
1175
- Equal = "EQUAL",
1176
- GreaterThan = "GREATER_THAN",
1177
- LessThan = "LESS_THAN",
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 enum AssociationExecutionTargetsFilterKey {
1218
- ResourceId = "ResourceId",
1219
- ResourceType = "ResourceType",
1220
- Status = "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 enum AutomationExecutionFilterKey {
1253
- AUTOMATION_SUBTYPE = "AutomationSubtype",
1254
- AUTOMATION_TYPE = "AutomationType",
1255
- CURRENT_ACTION = "CurrentAction",
1256
- DOCUMENT_NAME_PREFIX = "DocumentNamePrefix",
1257
- EXECUTION_ID = "ExecutionId",
1258
- EXECUTION_STATUS = "ExecutionStatus",
1259
- OPS_ITEM_ID = "OpsItemId",
1260
- PARENT_EXECUTION_ID = "ParentExecutionId",
1261
- START_TIME_AFTER = "StartTimeAfter",
1262
- START_TIME_BEFORE = "StartTimeBefore",
1263
- TAG_KEY = "TagKey",
1264
- TARGET_RESOURCE_GROUP = "TargetResourceGroup",
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 enum AutomationExecutionStatus {
1276
- APPROVED = "Approved",
1277
- CANCELLED = "Cancelled",
1278
- CANCELLING = "Cancelling",
1279
- CHANGE_CALENDAR_OVERRIDE_APPROVED = "ChangeCalendarOverrideApproved",
1280
- CHANGE_CALENDAR_OVERRIDE_REJECTED = "ChangeCalendarOverrideRejected",
1281
- COMPLETED_WITH_FAILURE = "CompletedWithFailure",
1282
- COMPLETED_WITH_SUCCESS = "CompletedWithSuccess",
1283
- FAILED = "Failed",
1284
- INPROGRESS = "InProgress",
1285
- PENDING = "Pending",
1286
- PENDING_APPROVAL = "PendingApproval",
1287
- PENDING_CHANGE_CALENDAR_OVERRIDE = "PendingChangeCalendarOverride",
1288
- REJECTED = "Rejected",
1289
- RUNBOOK_INPROGRESS = "RunbookInProgress",
1290
- SCHEDULED = "Scheduled",
1291
- SUCCESS = "Success",
1292
- TIMEDOUT = "TimedOut",
1293
- WAITING = "Waiting",
1294
- }
1295
- export declare enum AutomationSubtype {
1296
- ChangeRequest = "ChangeRequest",
1297
- }
1298
- export declare enum AutomationType {
1299
- CrossAccount = "CrossAccount",
1300
- Local = "Local",
1301
- }
1302
- export declare enum ExecutionMode {
1303
- Auto = "Auto",
1304
- Interactive = "Interactive",
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 enum StepExecutionFilterKey {
1380
- ACTION = "Action",
1381
- START_TIME_AFTER = "StartTimeAfter",
1382
- START_TIME_BEFORE = "StartTimeBefore",
1383
- STEP_EXECUTION_ID = "StepExecutionId",
1384
- STEP_EXECUTION_STATUS = "StepExecutionStatus",
1385
- STEP_NAME = "StepName",
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 enum DocumentPermissionType {
1479
- SHARE = "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 enum PatchDeploymentStatus {
1521
- Approved = "APPROVED",
1522
- ExplicitApproved = "EXPLICIT_APPROVED",
1523
- ExplicitRejected = "EXPLICIT_REJECTED",
1524
- PendingApproval = "PENDING_APPROVAL",
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 enum InstanceInformationFilterKey {
1581
- ACTIVATION_IDS = "ActivationIds",
1582
- AGENT_VERSION = "AgentVersion",
1583
- ASSOCIATION_STATUS = "AssociationStatus",
1584
- IAM_ROLE = "IamRole",
1585
- INSTANCE_IDS = "InstanceIds",
1586
- PING_STATUS = "PingStatus",
1587
- PLATFORM_TYPES = "PlatformTypes",
1588
- RESOURCE_TYPE = "ResourceType",
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 enum PingStatus {
1605
- CONNECTION_LOST = "ConnectionLost",
1606
- INACTIVE = "Inactive",
1607
- ONLINE = "Online",
1608
- }
1609
- export declare enum ResourceType {
1610
- DOCUMENT = "Document",
1611
- EC2_INSTANCE = "EC2Instance",
1612
- MANAGED_INSTANCE = "ManagedInstance",
1613
- }
1614
- export declare enum SourceType {
1615
- AWS_EC2_INSTANCE = "AWS::EC2::Instance",
1616
- AWS_IOT_THING = "AWS::IoT::Thing",
1617
- AWS_SSM_MANAGEDINSTANCE = "AWS::SSM::ManagedInstance",
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 enum PatchComplianceDataState {
1663
- Failed = "FAILED",
1664
- Installed = "INSTALLED",
1665
- InstalledOther = "INSTALLED_OTHER",
1666
- InstalledPendingReboot = "INSTALLED_PENDING_REBOOT",
1667
- InstalledRejected = "INSTALLED_REJECTED",
1668
- Missing = "MISSING",
1669
- NotApplicable = "NOT_APPLICABLE",
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 enum PatchOperationType {
1690
- INSTALL = "Install",
1691
- SCAN = "Scan",
1692
- }
1693
- export declare enum RebootOption {
1694
- NO_REBOOT = "NoReboot",
1695
- REBOOT_IF_NEEDED = "RebootIfNeeded",
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 enum InstancePatchStateOperatorType {
1726
- EQUAL = "Equal",
1727
- GREATER_THAN = "GreaterThan",
1728
- LESS_THAN = "LessThan",
1729
- NOT_EQUAL = "NotEqual",
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 enum InventoryDeletionStatus {
1752
- COMPLETE = "Complete",
1753
- IN_PROGRESS = "InProgress",
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 enum MaintenanceWindowExecutionStatus {
1787
- Cancelled = "CANCELLED",
1788
- Cancelling = "CANCELLING",
1789
- Failed = "FAILED",
1790
- InProgress = "IN_PROGRESS",
1791
- Pending = "PENDING",
1792
- SkippedOverlapping = "SKIPPED_OVERLAPPING",
1793
- Success = "SUCCESS",
1794
- TimedOut = "TIMED_OUT",
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 enum MaintenanceWindowTaskType {
1816
- Automation = "AUTOMATION",
1817
- Lambda = "LAMBDA",
1818
- RunCommand = "RUN_COMMAND",
1819
- StepFunctions = "STEP_FUNCTIONS",
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 enum MaintenanceWindowResourceType {
1885
- Instance = "INSTANCE",
1886
- ResourceGroup = "RESOURCE_GROUP",
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 enum MaintenanceWindowTaskCutoffBehavior {
1945
- CancelTask = "CANCEL_TASK",
1946
- ContinueTask = "CONTINUE_TASK",
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 enum OpsItemFilterKey {
1981
- ACCOUNT_ID = "AccountId",
1982
- ACTUAL_END_TIME = "ActualEndTime",
1983
- ACTUAL_START_TIME = "ActualStartTime",
1984
- AUTOMATION_ID = "AutomationId",
1985
- CATEGORY = "Category",
1986
- CHANGE_REQUEST_APPROVER_ARN = "ChangeRequestByApproverArn",
1987
- CHANGE_REQUEST_APPROVER_NAME = "ChangeRequestByApproverName",
1988
- CHANGE_REQUEST_REQUESTER_ARN = "ChangeRequestByRequesterArn",
1989
- CHANGE_REQUEST_REQUESTER_NAME = "ChangeRequestByRequesterName",
1990
- CHANGE_REQUEST_TARGETS_RESOURCE_GROUP = "ChangeRequestByTargetsResourceGroup",
1991
- CHANGE_REQUEST_TEMPLATE = "ChangeRequestByTemplate",
1992
- CREATED_BY = "CreatedBy",
1993
- CREATED_TIME = "CreatedTime",
1994
- INSIGHT_TYPE = "InsightByType",
1995
- LAST_MODIFIED_TIME = "LastModifiedTime",
1996
- OPERATIONAL_DATA = "OperationalData",
1997
- OPERATIONAL_DATA_KEY = "OperationalDataKey",
1998
- OPERATIONAL_DATA_VALUE = "OperationalDataValue",
1999
- OPSITEM_ID = "OpsItemId",
2000
- OPSITEM_TYPE = "OpsItemType",
2001
- PLANNED_END_TIME = "PlannedEndTime",
2002
- PLANNED_START_TIME = "PlannedStartTime",
2003
- PRIORITY = "Priority",
2004
- RESOURCE_ID = "ResourceId",
2005
- SEVERITY = "Severity",
2006
- SOURCE = "Source",
2007
- STATUS = "Status",
2008
- TITLE = "Title",
2009
- }
2010
- export declare enum OpsItemFilterOperator {
2011
- CONTAINS = "Contains",
2012
- EQUAL = "Equal",
2013
- GREATER_THAN = "GreaterThan",
2014
- LESS_THAN = "LessThan",
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;