@aws-sdk/client-ssm 3.428.0 → 3.429.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-types/models/models_0.d.ts +63 -63
- package/dist-types/models/models_1.d.ts +96 -96
- package/dist-types/models/models_2.d.ts +12 -12
- package/dist-types/ts3.4/models/models_0.d.ts +63 -63
- package/dist-types/ts3.4/models/models_1.d.ts +96 -96
- package/dist-types/ts3.4/models/models_2.d.ts +12 -12
- package/package.json +5 -5
|
@@ -48,9 +48,9 @@ import {
|
|
|
48
48
|
} from "./models_0";
|
|
49
49
|
import { SSMServiceException as __BaseException } from "./SSMServiceException";
|
|
50
50
|
export interface OpsItemFilter {
|
|
51
|
-
Key: OpsItemFilterKey |
|
|
51
|
+
Key: OpsItemFilterKey | undefined;
|
|
52
52
|
Values: string[] | undefined;
|
|
53
|
-
Operator: OpsItemFilterOperator |
|
|
53
|
+
Operator: OpsItemFilterOperator | undefined;
|
|
54
54
|
}
|
|
55
55
|
export interface DescribeOpsItemsRequest {
|
|
56
56
|
OpsItemFilters?: OpsItemFilter[];
|
|
@@ -86,7 +86,7 @@ export interface OpsItemSummary {
|
|
|
86
86
|
LastModifiedTime?: Date;
|
|
87
87
|
Priority?: number;
|
|
88
88
|
Source?: string;
|
|
89
|
-
Status?: OpsItemStatus
|
|
89
|
+
Status?: OpsItemStatus;
|
|
90
90
|
OpsItemId?: string;
|
|
91
91
|
Title?: string;
|
|
92
92
|
OperationalData?: Record<string, OpsItemDataValue>;
|
|
@@ -110,7 +110,7 @@ export declare const ParametersFilterKey: {
|
|
|
110
110
|
export type ParametersFilterKey =
|
|
111
111
|
(typeof ParametersFilterKey)[keyof typeof ParametersFilterKey];
|
|
112
112
|
export interface ParametersFilter {
|
|
113
|
-
Key: ParametersFilterKey |
|
|
113
|
+
Key: ParametersFilterKey | undefined;
|
|
114
114
|
Values: string[] | undefined;
|
|
115
115
|
}
|
|
116
116
|
export interface ParameterStringFilter {
|
|
@@ -143,14 +143,14 @@ export declare const ParameterType: {
|
|
|
143
143
|
export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
|
|
144
144
|
export interface ParameterMetadata {
|
|
145
145
|
Name?: string;
|
|
146
|
-
Type?: ParameterType
|
|
146
|
+
Type?: ParameterType;
|
|
147
147
|
KeyId?: string;
|
|
148
148
|
LastModifiedDate?: Date;
|
|
149
149
|
LastModifiedUser?: string;
|
|
150
150
|
Description?: string;
|
|
151
151
|
AllowedPattern?: string;
|
|
152
152
|
Version?: number;
|
|
153
|
-
Tier?: ParameterTier
|
|
153
|
+
Tier?: ParameterTier;
|
|
154
154
|
Policies?: ParameterInlinePolicy[];
|
|
155
155
|
DataType?: string;
|
|
156
156
|
}
|
|
@@ -173,7 +173,7 @@ export interface DescribePatchBaselinesRequest {
|
|
|
173
173
|
export interface PatchBaselineIdentity {
|
|
174
174
|
BaselineId?: string;
|
|
175
175
|
BaselineName?: string;
|
|
176
|
-
OperatingSystem?: OperatingSystem
|
|
176
|
+
OperatingSystem?: OperatingSystem;
|
|
177
177
|
BaselineDescription?: string;
|
|
178
178
|
DefaultBaseline?: boolean;
|
|
179
179
|
}
|
|
@@ -226,9 +226,9 @@ export declare const PatchProperty: {
|
|
|
226
226
|
};
|
|
227
227
|
export type PatchProperty = (typeof PatchProperty)[keyof typeof PatchProperty];
|
|
228
228
|
export interface DescribePatchPropertiesRequest {
|
|
229
|
-
OperatingSystem: OperatingSystem |
|
|
230
|
-
Property: PatchProperty |
|
|
231
|
-
PatchSet?: PatchSet
|
|
229
|
+
OperatingSystem: OperatingSystem | undefined;
|
|
230
|
+
Property: PatchProperty | undefined;
|
|
231
|
+
PatchSet?: PatchSet;
|
|
232
232
|
MaxResults?: number;
|
|
233
233
|
NextToken?: string;
|
|
234
234
|
}
|
|
@@ -247,7 +247,7 @@ export declare const SessionFilterKey: {
|
|
|
247
247
|
export type SessionFilterKey =
|
|
248
248
|
(typeof SessionFilterKey)[keyof typeof SessionFilterKey];
|
|
249
249
|
export interface SessionFilter {
|
|
250
|
-
key: SessionFilterKey |
|
|
250
|
+
key: SessionFilterKey | undefined;
|
|
251
251
|
value: string | undefined;
|
|
252
252
|
}
|
|
253
253
|
export declare const SessionState: {
|
|
@@ -256,7 +256,7 @@ export declare const SessionState: {
|
|
|
256
256
|
};
|
|
257
257
|
export type SessionState = (typeof SessionState)[keyof typeof SessionState];
|
|
258
258
|
export interface DescribeSessionsRequest {
|
|
259
|
-
State: SessionState |
|
|
259
|
+
State: SessionState | undefined;
|
|
260
260
|
MaxResults?: number;
|
|
261
261
|
NextToken?: string;
|
|
262
262
|
Filters?: SessionFilter[];
|
|
@@ -277,7 +277,7 @@ export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
|
|
|
277
277
|
export interface Session {
|
|
278
278
|
SessionId?: string;
|
|
279
279
|
Target?: string;
|
|
280
|
-
Status?: SessionStatus
|
|
280
|
+
Status?: SessionStatus;
|
|
281
281
|
StartDate?: Date;
|
|
282
282
|
EndDate?: Date;
|
|
283
283
|
DocumentName?: string;
|
|
@@ -323,13 +323,13 @@ export interface AutomationExecution {
|
|
|
323
323
|
DocumentVersion?: string;
|
|
324
324
|
ExecutionStartTime?: Date;
|
|
325
325
|
ExecutionEndTime?: Date;
|
|
326
|
-
AutomationExecutionStatus?: AutomationExecutionStatus
|
|
326
|
+
AutomationExecutionStatus?: AutomationExecutionStatus;
|
|
327
327
|
StepExecutions?: StepExecution[];
|
|
328
328
|
StepExecutionsTruncated?: boolean;
|
|
329
329
|
Parameters?: Record<string, string[]>;
|
|
330
330
|
Outputs?: Record<string, string[]>;
|
|
331
331
|
FailureMessage?: string;
|
|
332
|
-
Mode?: ExecutionMode
|
|
332
|
+
Mode?: ExecutionMode;
|
|
333
333
|
ParentAutomationExecutionId?: string;
|
|
334
334
|
ExecutedBy?: string;
|
|
335
335
|
CurrentStepName?: string;
|
|
@@ -345,7 +345,7 @@ export interface AutomationExecution {
|
|
|
345
345
|
ProgressCounters?: ProgressCounters;
|
|
346
346
|
AlarmConfiguration?: AlarmConfiguration;
|
|
347
347
|
TriggeredAlarms?: AlarmStateInformation[];
|
|
348
|
-
AutomationSubtype?: AutomationSubtype
|
|
348
|
+
AutomationSubtype?: AutomationSubtype;
|
|
349
349
|
ScheduledTime?: Date;
|
|
350
350
|
Runbooks?: Runbook[];
|
|
351
351
|
OpsItemId?: string;
|
|
@@ -365,7 +365,7 @@ export declare const CalendarState: {
|
|
|
365
365
|
};
|
|
366
366
|
export type CalendarState = (typeof CalendarState)[keyof typeof CalendarState];
|
|
367
367
|
export interface GetCalendarStateResponse {
|
|
368
|
-
State?: CalendarState
|
|
368
|
+
State?: CalendarState;
|
|
369
369
|
AtTime?: string;
|
|
370
370
|
NextTransitionTime?: string;
|
|
371
371
|
}
|
|
@@ -417,7 +417,7 @@ export interface GetCommandInvocationResult {
|
|
|
417
417
|
ExecutionStartDateTime?: string;
|
|
418
418
|
ExecutionElapsedTime?: string;
|
|
419
419
|
ExecutionEndDateTime?: string;
|
|
420
|
-
Status?: CommandInvocationStatus
|
|
420
|
+
Status?: CommandInvocationStatus;
|
|
421
421
|
StatusDetails?: string;
|
|
422
422
|
StandardOutputContent?: string;
|
|
423
423
|
StandardOutputUrl?: string;
|
|
@@ -448,23 +448,23 @@ export type ConnectionStatus =
|
|
|
448
448
|
(typeof ConnectionStatus)[keyof typeof ConnectionStatus];
|
|
449
449
|
export interface GetConnectionStatusResponse {
|
|
450
450
|
Target?: string;
|
|
451
|
-
Status?: ConnectionStatus
|
|
451
|
+
Status?: ConnectionStatus;
|
|
452
452
|
}
|
|
453
453
|
export interface GetDefaultPatchBaselineRequest {
|
|
454
|
-
OperatingSystem?: OperatingSystem
|
|
454
|
+
OperatingSystem?: OperatingSystem;
|
|
455
455
|
}
|
|
456
456
|
export interface GetDefaultPatchBaselineResult {
|
|
457
457
|
BaselineId?: string;
|
|
458
|
-
OperatingSystem?: OperatingSystem
|
|
458
|
+
OperatingSystem?: OperatingSystem;
|
|
459
459
|
}
|
|
460
460
|
export interface BaselineOverride {
|
|
461
|
-
OperatingSystem?: OperatingSystem
|
|
461
|
+
OperatingSystem?: OperatingSystem;
|
|
462
462
|
GlobalFilters?: PatchFilterGroup;
|
|
463
463
|
ApprovalRules?: PatchRuleGroup;
|
|
464
464
|
ApprovedPatches?: string[];
|
|
465
|
-
ApprovedPatchesComplianceLevel?: PatchComplianceLevel
|
|
465
|
+
ApprovedPatchesComplianceLevel?: PatchComplianceLevel;
|
|
466
466
|
RejectedPatches?: string[];
|
|
467
|
-
RejectedPatchesAction?: PatchAction
|
|
467
|
+
RejectedPatchesAction?: PatchAction;
|
|
468
468
|
ApprovedPatchesEnableNonSecurity?: boolean;
|
|
469
469
|
Sources?: PatchSource[];
|
|
470
470
|
}
|
|
@@ -494,7 +494,7 @@ export interface GetDocumentRequest {
|
|
|
494
494
|
Name: string | undefined;
|
|
495
495
|
VersionName?: string;
|
|
496
496
|
DocumentVersion?: string;
|
|
497
|
-
DocumentFormat?: DocumentFormat
|
|
497
|
+
DocumentFormat?: DocumentFormat;
|
|
498
498
|
}
|
|
499
499
|
export declare const AttachmentHashType: {
|
|
500
500
|
readonly SHA256: "Sha256";
|
|
@@ -505,7 +505,7 @@ export interface AttachmentContent {
|
|
|
505
505
|
Name?: string;
|
|
506
506
|
Size?: number;
|
|
507
507
|
Hash?: string;
|
|
508
|
-
HashType?: AttachmentHashType
|
|
508
|
+
HashType?: AttachmentHashType;
|
|
509
509
|
Url?: string;
|
|
510
510
|
}
|
|
511
511
|
export interface GetDocumentResult {
|
|
@@ -514,14 +514,14 @@ export interface GetDocumentResult {
|
|
|
514
514
|
DisplayName?: string;
|
|
515
515
|
VersionName?: string;
|
|
516
516
|
DocumentVersion?: string;
|
|
517
|
-
Status?: DocumentStatus
|
|
517
|
+
Status?: DocumentStatus;
|
|
518
518
|
StatusInformation?: string;
|
|
519
519
|
Content?: string;
|
|
520
|
-
DocumentType?: DocumentType
|
|
521
|
-
DocumentFormat?: DocumentFormat
|
|
520
|
+
DocumentType?: DocumentType;
|
|
521
|
+
DocumentFormat?: DocumentFormat;
|
|
522
522
|
Requires?: DocumentRequires[];
|
|
523
523
|
AttachmentsContent?: AttachmentContent[];
|
|
524
|
-
ReviewStatus?: ReviewStatus
|
|
524
|
+
ReviewStatus?: ReviewStatus;
|
|
525
525
|
}
|
|
526
526
|
export declare const InventoryQueryOperatorType: {
|
|
527
527
|
readonly BEGIN_WITH: "BeginWith";
|
|
@@ -536,7 +536,7 @@ export type InventoryQueryOperatorType =
|
|
|
536
536
|
export interface InventoryFilter {
|
|
537
537
|
Key: string | undefined;
|
|
538
538
|
Values: string[] | undefined;
|
|
539
|
-
Type?: InventoryQueryOperatorType
|
|
539
|
+
Type?: InventoryQueryOperatorType;
|
|
540
540
|
}
|
|
541
541
|
export interface InventoryGroup {
|
|
542
542
|
Name: string | undefined;
|
|
@@ -602,7 +602,7 @@ export type InventoryAttributeDataType =
|
|
|
602
602
|
(typeof InventoryAttributeDataType)[keyof typeof InventoryAttributeDataType];
|
|
603
603
|
export interface InventoryItemAttribute {
|
|
604
604
|
Name: string | undefined;
|
|
605
|
-
DataType: InventoryAttributeDataType |
|
|
605
|
+
DataType: InventoryAttributeDataType | undefined;
|
|
606
606
|
}
|
|
607
607
|
export interface InventoryItemSchema {
|
|
608
608
|
TypeName: string | undefined;
|
|
@@ -640,7 +640,7 @@ export interface GetMaintenanceWindowExecutionRequest {
|
|
|
640
640
|
export interface GetMaintenanceWindowExecutionResult {
|
|
641
641
|
WindowExecutionId?: string;
|
|
642
642
|
TaskIds?: string[];
|
|
643
|
-
Status?: MaintenanceWindowExecutionStatus
|
|
643
|
+
Status?: MaintenanceWindowExecutionStatus;
|
|
644
644
|
StatusDetails?: string;
|
|
645
645
|
StartTime?: Date;
|
|
646
646
|
EndTime?: Date;
|
|
@@ -654,7 +654,7 @@ export interface GetMaintenanceWindowExecutionTaskResult {
|
|
|
654
654
|
TaskExecutionId?: string;
|
|
655
655
|
TaskArn?: string;
|
|
656
656
|
ServiceRole?: string;
|
|
657
|
-
Type?: MaintenanceWindowTaskType
|
|
657
|
+
Type?: MaintenanceWindowTaskType;
|
|
658
658
|
TaskParameters?: Record<
|
|
659
659
|
string,
|
|
660
660
|
MaintenanceWindowTaskParameterValueExpression
|
|
@@ -662,7 +662,7 @@ export interface GetMaintenanceWindowExecutionTaskResult {
|
|
|
662
662
|
Priority?: number;
|
|
663
663
|
MaxConcurrency?: string;
|
|
664
664
|
MaxErrors?: string;
|
|
665
|
-
Status?: MaintenanceWindowExecutionStatus
|
|
665
|
+
Status?: MaintenanceWindowExecutionStatus;
|
|
666
666
|
StatusDetails?: string;
|
|
667
667
|
StartTime?: Date;
|
|
668
668
|
EndTime?: Date;
|
|
@@ -679,9 +679,9 @@ export interface GetMaintenanceWindowExecutionTaskInvocationResult {
|
|
|
679
679
|
TaskExecutionId?: string;
|
|
680
680
|
InvocationId?: string;
|
|
681
681
|
ExecutionId?: string;
|
|
682
|
-
TaskType?: MaintenanceWindowTaskType
|
|
682
|
+
TaskType?: MaintenanceWindowTaskType;
|
|
683
683
|
Parameters?: string;
|
|
684
|
-
Status?: MaintenanceWindowExecutionStatus
|
|
684
|
+
Status?: MaintenanceWindowExecutionStatus;
|
|
685
685
|
StatusDetails?: string;
|
|
686
686
|
StartTime?: Date;
|
|
687
687
|
EndTime?: Date;
|
|
@@ -719,14 +719,14 @@ export type NotificationType =
|
|
|
719
719
|
(typeof NotificationType)[keyof typeof NotificationType];
|
|
720
720
|
export interface NotificationConfig {
|
|
721
721
|
NotificationArn?: string;
|
|
722
|
-
NotificationEvents?:
|
|
723
|
-
NotificationType?: NotificationType
|
|
722
|
+
NotificationEvents?: NotificationEvent[];
|
|
723
|
+
NotificationType?: NotificationType;
|
|
724
724
|
}
|
|
725
725
|
export interface MaintenanceWindowRunCommandParameters {
|
|
726
726
|
Comment?: string;
|
|
727
727
|
CloudWatchOutputConfig?: CloudWatchOutputConfig;
|
|
728
728
|
DocumentHash?: string;
|
|
729
|
-
DocumentHashType?: DocumentHashType
|
|
729
|
+
DocumentHashType?: DocumentHashType;
|
|
730
730
|
DocumentVersion?: string;
|
|
731
731
|
NotificationConfig?: NotificationConfig;
|
|
732
732
|
OutputS3BucketName?: string;
|
|
@@ -751,7 +751,7 @@ export interface GetMaintenanceWindowTaskResult {
|
|
|
751
751
|
Targets?: Target[];
|
|
752
752
|
TaskArn?: string;
|
|
753
753
|
ServiceRoleArn?: string;
|
|
754
|
-
TaskType?: MaintenanceWindowTaskType
|
|
754
|
+
TaskType?: MaintenanceWindowTaskType;
|
|
755
755
|
TaskParameters?: Record<
|
|
756
756
|
string,
|
|
757
757
|
MaintenanceWindowTaskParameterValueExpression
|
|
@@ -763,7 +763,7 @@ export interface GetMaintenanceWindowTaskResult {
|
|
|
763
763
|
LoggingInfo?: LoggingInfo;
|
|
764
764
|
Name?: string;
|
|
765
765
|
Description?: string;
|
|
766
|
-
CutoffBehavior?: MaintenanceWindowTaskCutoffBehavior
|
|
766
|
+
CutoffBehavior?: MaintenanceWindowTaskCutoffBehavior;
|
|
767
767
|
AlarmConfiguration?: AlarmConfiguration;
|
|
768
768
|
}
|
|
769
769
|
export interface GetOpsItemRequest {
|
|
@@ -780,7 +780,7 @@ export interface OpsItem {
|
|
|
780
780
|
Notifications?: OpsItemNotification[];
|
|
781
781
|
Priority?: number;
|
|
782
782
|
RelatedOpsItems?: RelatedOpsItem[];
|
|
783
|
-
Status?: OpsItemStatus
|
|
783
|
+
Status?: OpsItemStatus;
|
|
784
784
|
OpsItemId?: string;
|
|
785
785
|
Version?: string;
|
|
786
786
|
Title?: string;
|
|
@@ -820,7 +820,7 @@ export type OpsFilterOperatorType =
|
|
|
820
820
|
export interface OpsFilter {
|
|
821
821
|
Key: string | undefined;
|
|
822
822
|
Values: string[] | undefined;
|
|
823
|
-
Type?: OpsFilterOperatorType
|
|
823
|
+
Type?: OpsFilterOperatorType;
|
|
824
824
|
}
|
|
825
825
|
export interface OpsResultAttribute {
|
|
826
826
|
TypeName: string | undefined;
|
|
@@ -843,7 +843,7 @@ export interface GetParameterRequest {
|
|
|
843
843
|
}
|
|
844
844
|
export interface Parameter {
|
|
845
845
|
Name?: string;
|
|
846
|
-
Type?: ParameterType
|
|
846
|
+
Type?: ParameterType;
|
|
847
847
|
Value?: string;
|
|
848
848
|
Version?: number;
|
|
849
849
|
Selector?: string;
|
|
@@ -875,7 +875,7 @@ export interface GetParameterHistoryRequest {
|
|
|
875
875
|
}
|
|
876
876
|
export interface ParameterHistory {
|
|
877
877
|
Name?: string;
|
|
878
|
-
Type?: ParameterType
|
|
878
|
+
Type?: ParameterType;
|
|
879
879
|
KeyId?: string;
|
|
880
880
|
LastModifiedDate?: Date;
|
|
881
881
|
LastModifiedUser?: string;
|
|
@@ -884,7 +884,7 @@ export interface ParameterHistory {
|
|
|
884
884
|
AllowedPattern?: string;
|
|
885
885
|
Version?: number;
|
|
886
886
|
Labels?: string[];
|
|
887
|
-
Tier?: ParameterTier
|
|
887
|
+
Tier?: ParameterTier;
|
|
888
888
|
Policies?: ParameterInlinePolicy[];
|
|
889
889
|
DataType?: string;
|
|
890
890
|
}
|
|
@@ -918,14 +918,14 @@ export interface GetPatchBaselineRequest {
|
|
|
918
918
|
export interface GetPatchBaselineResult {
|
|
919
919
|
BaselineId?: string;
|
|
920
920
|
Name?: string;
|
|
921
|
-
OperatingSystem?: OperatingSystem
|
|
921
|
+
OperatingSystem?: OperatingSystem;
|
|
922
922
|
GlobalFilters?: PatchFilterGroup;
|
|
923
923
|
ApprovalRules?: PatchRuleGroup;
|
|
924
924
|
ApprovedPatches?: string[];
|
|
925
|
-
ApprovedPatchesComplianceLevel?: PatchComplianceLevel
|
|
925
|
+
ApprovedPatchesComplianceLevel?: PatchComplianceLevel;
|
|
926
926
|
ApprovedPatchesEnableNonSecurity?: boolean;
|
|
927
927
|
RejectedPatches?: string[];
|
|
928
|
-
RejectedPatchesAction?: PatchAction
|
|
928
|
+
RejectedPatchesAction?: PatchAction;
|
|
929
929
|
PatchGroups?: string[];
|
|
930
930
|
CreatedDate?: Date;
|
|
931
931
|
ModifiedDate?: Date;
|
|
@@ -934,12 +934,12 @@ export interface GetPatchBaselineResult {
|
|
|
934
934
|
}
|
|
935
935
|
export interface GetPatchBaselineForPatchGroupRequest {
|
|
936
936
|
PatchGroup: string | undefined;
|
|
937
|
-
OperatingSystem?: OperatingSystem
|
|
937
|
+
OperatingSystem?: OperatingSystem;
|
|
938
938
|
}
|
|
939
939
|
export interface GetPatchBaselineForPatchGroupResult {
|
|
940
940
|
BaselineId?: string;
|
|
941
941
|
PatchGroup?: string;
|
|
942
|
-
OperatingSystem?: OperatingSystem
|
|
942
|
+
OperatingSystem?: OperatingSystem;
|
|
943
943
|
}
|
|
944
944
|
export interface GetResourcePoliciesRequest {
|
|
945
945
|
ResourceArn: string | undefined;
|
|
@@ -1009,7 +1009,7 @@ export declare const AssociationFilterKey: {
|
|
|
1009
1009
|
export type AssociationFilterKey =
|
|
1010
1010
|
(typeof AssociationFilterKey)[keyof typeof AssociationFilterKey];
|
|
1011
1011
|
export interface AssociationFilter {
|
|
1012
|
-
key: AssociationFilterKey |
|
|
1012
|
+
key: AssociationFilterKey | undefined;
|
|
1013
1013
|
value: string | undefined;
|
|
1014
1014
|
}
|
|
1015
1015
|
export interface ListAssociationsRequest {
|
|
@@ -1053,8 +1053,8 @@ export interface AssociationVersionInfo {
|
|
|
1053
1053
|
AssociationName?: string;
|
|
1054
1054
|
MaxErrors?: string;
|
|
1055
1055
|
MaxConcurrency?: string;
|
|
1056
|
-
ComplianceSeverity?: AssociationComplianceSeverity
|
|
1057
|
-
SyncCompliance?: AssociationSyncCompliance
|
|
1056
|
+
ComplianceSeverity?: AssociationComplianceSeverity;
|
|
1057
|
+
SyncCompliance?: AssociationSyncCompliance;
|
|
1058
1058
|
ApplyOnlyAtCronInterval?: boolean;
|
|
1059
1059
|
CalendarNames?: string[];
|
|
1060
1060
|
TargetLocations?: TargetLocation[];
|
|
@@ -1075,7 +1075,7 @@ export declare const CommandFilterKey: {
|
|
|
1075
1075
|
export type CommandFilterKey =
|
|
1076
1076
|
(typeof CommandFilterKey)[keyof typeof CommandFilterKey];
|
|
1077
1077
|
export interface CommandFilter {
|
|
1078
|
-
key: CommandFilterKey |
|
|
1078
|
+
key: CommandFilterKey | undefined;
|
|
1079
1079
|
value: string | undefined;
|
|
1080
1080
|
}
|
|
1081
1081
|
export interface ListCommandInvocationsRequest {
|
|
@@ -1098,7 +1098,7 @@ export type CommandPluginStatus =
|
|
|
1098
1098
|
(typeof CommandPluginStatus)[keyof typeof CommandPluginStatus];
|
|
1099
1099
|
export interface CommandPlugin {
|
|
1100
1100
|
Name?: string;
|
|
1101
|
-
Status?: CommandPluginStatus
|
|
1101
|
+
Status?: CommandPluginStatus;
|
|
1102
1102
|
StatusDetails?: string;
|
|
1103
1103
|
ResponseCode?: number;
|
|
1104
1104
|
ResponseStartDateTime?: Date;
|
|
@@ -1118,7 +1118,7 @@ export interface CommandInvocation {
|
|
|
1118
1118
|
DocumentName?: string;
|
|
1119
1119
|
DocumentVersion?: string;
|
|
1120
1120
|
RequestedDateTime?: Date;
|
|
1121
|
-
Status?: CommandInvocationStatus
|
|
1121
|
+
Status?: CommandInvocationStatus;
|
|
1122
1122
|
StatusDetails?: string;
|
|
1123
1123
|
TraceOutput?: string;
|
|
1124
1124
|
StandardOutputUrl?: string;
|
|
@@ -1159,7 +1159,7 @@ export interface Command {
|
|
|
1159
1159
|
InstanceIds?: string[];
|
|
1160
1160
|
Targets?: Target[];
|
|
1161
1161
|
RequestedDateTime?: Date;
|
|
1162
|
-
Status?: CommandStatus
|
|
1162
|
+
Status?: CommandStatus;
|
|
1163
1163
|
StatusDetails?: string;
|
|
1164
1164
|
OutputS3Region?: string;
|
|
1165
1165
|
OutputS3BucketName?: string;
|
|
@@ -1193,7 +1193,7 @@ export type ComplianceQueryOperatorType =
|
|
|
1193
1193
|
export interface ComplianceStringFilter {
|
|
1194
1194
|
Key?: string;
|
|
1195
1195
|
Values?: string[];
|
|
1196
|
-
Type?: ComplianceQueryOperatorType
|
|
1196
|
+
Type?: ComplianceQueryOperatorType;
|
|
1197
1197
|
}
|
|
1198
1198
|
export interface ListComplianceItemsRequest {
|
|
1199
1199
|
Filters?: ComplianceStringFilter[];
|
|
@@ -1229,8 +1229,8 @@ export interface ComplianceItem {
|
|
|
1229
1229
|
ResourceId?: string;
|
|
1230
1230
|
Id?: string;
|
|
1231
1231
|
Title?: string;
|
|
1232
|
-
Status?: ComplianceStatus
|
|
1233
|
-
Severity?: ComplianceSeverity
|
|
1232
|
+
Status?: ComplianceStatus;
|
|
1233
|
+
Severity?: ComplianceSeverity;
|
|
1234
1234
|
ExecutionSummary?: ComplianceExecutionSummary;
|
|
1235
1235
|
Details?: Record<string, string>;
|
|
1236
1236
|
}
|
|
@@ -1276,7 +1276,7 @@ export type DocumentMetadataEnum =
|
|
|
1276
1276
|
export interface ListDocumentMetadataHistoryRequest {
|
|
1277
1277
|
Name: string | undefined;
|
|
1278
1278
|
DocumentVersion?: string;
|
|
1279
|
-
Metadata: DocumentMetadataEnum |
|
|
1279
|
+
Metadata: DocumentMetadataEnum | undefined;
|
|
1280
1280
|
NextToken?: string;
|
|
1281
1281
|
MaxResults?: number;
|
|
1282
1282
|
}
|
|
@@ -1286,13 +1286,13 @@ export declare const DocumentReviewCommentType: {
|
|
|
1286
1286
|
export type DocumentReviewCommentType =
|
|
1287
1287
|
(typeof DocumentReviewCommentType)[keyof typeof DocumentReviewCommentType];
|
|
1288
1288
|
export interface DocumentReviewCommentSource {
|
|
1289
|
-
Type?: DocumentReviewCommentType
|
|
1289
|
+
Type?: DocumentReviewCommentType;
|
|
1290
1290
|
Content?: string;
|
|
1291
1291
|
}
|
|
1292
1292
|
export interface DocumentReviewerResponseSource {
|
|
1293
1293
|
CreateTime?: Date;
|
|
1294
1294
|
UpdatedTime?: Date;
|
|
1295
|
-
ReviewStatus?: ReviewStatus
|
|
1295
|
+
ReviewStatus?: ReviewStatus;
|
|
1296
1296
|
Comment?: DocumentReviewCommentSource[];
|
|
1297
1297
|
Reviewer?: string;
|
|
1298
1298
|
}
|
|
@@ -1315,7 +1315,7 @@ export declare const DocumentFilterKey: {
|
|
|
1315
1315
|
export type DocumentFilterKey =
|
|
1316
1316
|
(typeof DocumentFilterKey)[keyof typeof DocumentFilterKey];
|
|
1317
1317
|
export interface DocumentFilter {
|
|
1318
|
-
key: DocumentFilterKey |
|
|
1318
|
+
key: DocumentFilterKey | undefined;
|
|
1319
1319
|
value: string | undefined;
|
|
1320
1320
|
}
|
|
1321
1321
|
export interface DocumentKeyValuesFilter {
|
|
@@ -1334,15 +1334,15 @@ export interface DocumentIdentifier {
|
|
|
1334
1334
|
DisplayName?: string;
|
|
1335
1335
|
Owner?: string;
|
|
1336
1336
|
VersionName?: string;
|
|
1337
|
-
PlatformTypes?:
|
|
1337
|
+
PlatformTypes?: PlatformType[];
|
|
1338
1338
|
DocumentVersion?: string;
|
|
1339
|
-
DocumentType?: DocumentType
|
|
1339
|
+
DocumentType?: DocumentType;
|
|
1340
1340
|
SchemaVersion?: string;
|
|
1341
|
-
DocumentFormat?: DocumentFormat
|
|
1341
|
+
DocumentFormat?: DocumentFormat;
|
|
1342
1342
|
TargetType?: string;
|
|
1343
1343
|
Tags?: Tag[];
|
|
1344
1344
|
Requires?: DocumentRequires[];
|
|
1345
|
-
ReviewStatus?: ReviewStatus
|
|
1345
|
+
ReviewStatus?: ReviewStatus;
|
|
1346
1346
|
Author?: string;
|
|
1347
1347
|
}
|
|
1348
1348
|
export interface ListDocumentsResult {
|
|
@@ -1361,10 +1361,10 @@ export interface DocumentVersionInfo {
|
|
|
1361
1361
|
VersionName?: string;
|
|
1362
1362
|
CreatedDate?: Date;
|
|
1363
1363
|
IsDefaultVersion?: boolean;
|
|
1364
|
-
DocumentFormat?: DocumentFormat
|
|
1365
|
-
Status?: DocumentStatus
|
|
1364
|
+
DocumentFormat?: DocumentFormat;
|
|
1365
|
+
Status?: DocumentStatus;
|
|
1366
1366
|
StatusInformation?: string;
|
|
1367
|
-
ReviewStatus?: ReviewStatus
|
|
1367
|
+
ReviewStatus?: ReviewStatus;
|
|
1368
1368
|
}
|
|
1369
1369
|
export interface ListDocumentVersionsResult {
|
|
1370
1370
|
DocumentVersions?: DocumentVersionInfo[];
|
|
@@ -1396,9 +1396,9 @@ export declare const OpsItemEventFilterOperator: {
|
|
|
1396
1396
|
export type OpsItemEventFilterOperator =
|
|
1397
1397
|
(typeof OpsItemEventFilterOperator)[keyof typeof OpsItemEventFilterOperator];
|
|
1398
1398
|
export interface OpsItemEventFilter {
|
|
1399
|
-
Key: OpsItemEventFilterKey |
|
|
1399
|
+
Key: OpsItemEventFilterKey | undefined;
|
|
1400
1400
|
Values: string[] | undefined;
|
|
1401
|
-
Operator: OpsItemEventFilterOperator |
|
|
1401
|
+
Operator: OpsItemEventFilterOperator | undefined;
|
|
1402
1402
|
}
|
|
1403
1403
|
export interface ListOpsItemEventsRequest {
|
|
1404
1404
|
Filters?: OpsItemEventFilter[];
|
|
@@ -1434,9 +1434,9 @@ export declare const OpsItemRelatedItemsFilterOperator: {
|
|
|
1434
1434
|
export type OpsItemRelatedItemsFilterOperator =
|
|
1435
1435
|
(typeof OpsItemRelatedItemsFilterOperator)[keyof typeof OpsItemRelatedItemsFilterOperator];
|
|
1436
1436
|
export interface OpsItemRelatedItemsFilter {
|
|
1437
|
-
Key: OpsItemRelatedItemsFilterKey |
|
|
1437
|
+
Key: OpsItemRelatedItemsFilterKey | undefined;
|
|
1438
1438
|
Values: string[] | undefined;
|
|
1439
|
-
Operator: OpsItemRelatedItemsFilterOperator |
|
|
1439
|
+
Operator: OpsItemRelatedItemsFilterOperator | undefined;
|
|
1440
1440
|
}
|
|
1441
1441
|
export interface ListOpsItemRelatedItemsRequest {
|
|
1442
1442
|
OpsItemId?: string;
|
|
@@ -1488,8 +1488,8 @@ export interface ResourceComplianceSummaryItem {
|
|
|
1488
1488
|
ComplianceType?: string;
|
|
1489
1489
|
ResourceType?: string;
|
|
1490
1490
|
ResourceId?: string;
|
|
1491
|
-
Status?: ComplianceStatus
|
|
1492
|
-
OverallSeverity?: ComplianceSeverity
|
|
1491
|
+
Status?: ComplianceStatus;
|
|
1492
|
+
OverallSeverity?: ComplianceSeverity;
|
|
1493
1493
|
ExecutionSummary?: ComplianceExecutionSummary;
|
|
1494
1494
|
CompliantSummary?: CompliantSummary;
|
|
1495
1495
|
NonCompliantSummary?: NonCompliantSummary;
|
|
@@ -1526,7 +1526,7 @@ export interface ResourceDataSyncItem {
|
|
|
1526
1526
|
LastSyncTime?: Date;
|
|
1527
1527
|
LastSuccessfulSyncTime?: Date;
|
|
1528
1528
|
SyncLastModifiedTime?: Date;
|
|
1529
|
-
LastStatus?: LastResourceDataSyncStatus
|
|
1529
|
+
LastStatus?: LastResourceDataSyncStatus;
|
|
1530
1530
|
SyncCreatedTime?: Date;
|
|
1531
1531
|
LastSyncStatusMessage?: string;
|
|
1532
1532
|
}
|
|
@@ -1535,7 +1535,7 @@ export interface ListResourceDataSyncResult {
|
|
|
1535
1535
|
NextToken?: string;
|
|
1536
1536
|
}
|
|
1537
1537
|
export interface ListTagsForResourceRequest {
|
|
1538
|
-
ResourceType: ResourceTypeForTagging |
|
|
1538
|
+
ResourceType: ResourceTypeForTagging | undefined;
|
|
1539
1539
|
ResourceId: string | undefined;
|
|
1540
1540
|
}
|
|
1541
1541
|
export interface ListTagsForResourceResult {
|
|
@@ -1551,7 +1551,7 @@ export declare class DocumentPermissionLimit extends __BaseException {
|
|
|
1551
1551
|
}
|
|
1552
1552
|
export interface ModifyDocumentPermissionRequest {
|
|
1553
1553
|
Name: string | undefined;
|
|
1554
|
-
PermissionType: DocumentPermissionType |
|
|
1554
|
+
PermissionType: DocumentPermissionType | undefined;
|
|
1555
1555
|
AccountIdsToAdd?: string[];
|
|
1556
1556
|
AccountIdsToRemove?: string[];
|
|
1557
1557
|
SharedDocumentVersion?: string;
|
|
@@ -1589,8 +1589,8 @@ export declare class ItemSizeLimitExceededException extends __BaseException {
|
|
|
1589
1589
|
export interface ComplianceItemEntry {
|
|
1590
1590
|
Id?: string;
|
|
1591
1591
|
Title?: string;
|
|
1592
|
-
Severity: ComplianceSeverity |
|
|
1593
|
-
Status: ComplianceStatus |
|
|
1592
|
+
Severity: ComplianceSeverity | undefined;
|
|
1593
|
+
Status: ComplianceStatus | undefined;
|
|
1594
1594
|
Details?: Record<string, string>;
|
|
1595
1595
|
}
|
|
1596
1596
|
export declare const ComplianceUploadType: {
|
|
@@ -1606,7 +1606,7 @@ export interface PutComplianceItemsRequest {
|
|
|
1606
1606
|
ExecutionSummary: ComplianceExecutionSummary | undefined;
|
|
1607
1607
|
Items: ComplianceItemEntry[] | undefined;
|
|
1608
1608
|
ItemContentHash?: string;
|
|
1609
|
-
UploadType?: ComplianceUploadType
|
|
1609
|
+
UploadType?: ComplianceUploadType;
|
|
1610
1610
|
}
|
|
1611
1611
|
export interface PutComplianceItemsResult {}
|
|
1612
1612
|
export declare class TotalSizeLimitExceededException extends __BaseException {
|
|
@@ -1793,18 +1793,18 @@ export interface PutParameterRequest {
|
|
|
1793
1793
|
Name: string | undefined;
|
|
1794
1794
|
Description?: string;
|
|
1795
1795
|
Value: string | undefined;
|
|
1796
|
-
Type?: ParameterType
|
|
1796
|
+
Type?: ParameterType;
|
|
1797
1797
|
KeyId?: string;
|
|
1798
1798
|
Overwrite?: boolean;
|
|
1799
1799
|
AllowedPattern?: string;
|
|
1800
1800
|
Tags?: Tag[];
|
|
1801
|
-
Tier?: ParameterTier
|
|
1801
|
+
Tier?: ParameterTier;
|
|
1802
1802
|
Policies?: string;
|
|
1803
1803
|
DataType?: string;
|
|
1804
1804
|
}
|
|
1805
1805
|
export interface PutParameterResult {
|
|
1806
1806
|
Version?: number;
|
|
1807
|
-
Tier?: ParameterTier
|
|
1807
|
+
Tier?: ParameterTier;
|
|
1808
1808
|
}
|
|
1809
1809
|
export declare class UnsupportedParameterType extends __BaseException {
|
|
1810
1810
|
readonly name: "UnsupportedParameterType";
|
|
@@ -1852,7 +1852,7 @@ export interface RegisterPatchBaselineForPatchGroupResult {
|
|
|
1852
1852
|
}
|
|
1853
1853
|
export interface RegisterTargetWithMaintenanceWindowRequest {
|
|
1854
1854
|
WindowId: string | undefined;
|
|
1855
|
-
ResourceType: MaintenanceWindowResourceType |
|
|
1855
|
+
ResourceType: MaintenanceWindowResourceType | undefined;
|
|
1856
1856
|
Targets: Target[] | undefined;
|
|
1857
1857
|
OwnerInformation?: string;
|
|
1858
1858
|
Name?: string;
|
|
@@ -1875,7 +1875,7 @@ export interface RegisterTaskWithMaintenanceWindowRequest {
|
|
|
1875
1875
|
Targets?: Target[];
|
|
1876
1876
|
TaskArn: string | undefined;
|
|
1877
1877
|
ServiceRoleArn?: string;
|
|
1878
|
-
TaskType: MaintenanceWindowTaskType |
|
|
1878
|
+
TaskType: MaintenanceWindowTaskType | undefined;
|
|
1879
1879
|
TaskParameters?: Record<
|
|
1880
1880
|
string,
|
|
1881
1881
|
MaintenanceWindowTaskParameterValueExpression
|
|
@@ -1888,14 +1888,14 @@ export interface RegisterTaskWithMaintenanceWindowRequest {
|
|
|
1888
1888
|
Name?: string;
|
|
1889
1889
|
Description?: string;
|
|
1890
1890
|
ClientToken?: string;
|
|
1891
|
-
CutoffBehavior?: MaintenanceWindowTaskCutoffBehavior
|
|
1891
|
+
CutoffBehavior?: MaintenanceWindowTaskCutoffBehavior;
|
|
1892
1892
|
AlarmConfiguration?: AlarmConfiguration;
|
|
1893
1893
|
}
|
|
1894
1894
|
export interface RegisterTaskWithMaintenanceWindowResult {
|
|
1895
1895
|
WindowTaskId?: string;
|
|
1896
1896
|
}
|
|
1897
1897
|
export interface RemoveTagsFromResourceRequest {
|
|
1898
|
-
ResourceType: ResourceTypeForTagging |
|
|
1898
|
+
ResourceType: ResourceTypeForTagging | undefined;
|
|
1899
1899
|
ResourceId: string | undefined;
|
|
1900
1900
|
TagKeys: string[] | undefined;
|
|
1901
1901
|
}
|
|
@@ -1946,7 +1946,7 @@ export declare const SignalType: {
|
|
|
1946
1946
|
export type SignalType = (typeof SignalType)[keyof typeof SignalType];
|
|
1947
1947
|
export interface SendAutomationSignalRequest {
|
|
1948
1948
|
AutomationExecutionId: string | undefined;
|
|
1949
|
-
SignalType: SignalType |
|
|
1949
|
+
SignalType: SignalType | undefined;
|
|
1950
1950
|
Payload?: Record<string, string[]>;
|
|
1951
1951
|
}
|
|
1952
1952
|
export interface SendAutomationSignalResult {}
|
|
@@ -1977,7 +1977,7 @@ export interface SendCommandRequest {
|
|
|
1977
1977
|
DocumentName: string | undefined;
|
|
1978
1978
|
DocumentVersion?: string;
|
|
1979
1979
|
DocumentHash?: string;
|
|
1980
|
-
DocumentHashType?: DocumentHashType
|
|
1980
|
+
DocumentHashType?: DocumentHashType;
|
|
1981
1981
|
TimeoutSeconds?: number;
|
|
1982
1982
|
Comment?: string;
|
|
1983
1983
|
Parameters?: Record<string, string[]>;
|
|
@@ -2053,7 +2053,7 @@ export interface StartAutomationExecutionRequest {
|
|
|
2053
2053
|
DocumentVersion?: string;
|
|
2054
2054
|
Parameters?: Record<string, string[]>;
|
|
2055
2055
|
ClientToken?: string;
|
|
2056
|
-
Mode?: ExecutionMode
|
|
2056
|
+
Mode?: ExecutionMode;
|
|
2057
2057
|
TargetParameterName?: string;
|
|
2058
2058
|
Targets?: Target[];
|
|
2059
2059
|
TargetMaps?: Record<string, string[]>[];
|
|
@@ -2128,7 +2128,7 @@ export declare const StopType: {
|
|
|
2128
2128
|
export type StopType = (typeof StopType)[keyof typeof StopType];
|
|
2129
2129
|
export interface StopAutomationExecutionRequest {
|
|
2130
2130
|
AutomationExecutionId: string | undefined;
|
|
2131
|
-
Type?: StopType
|
|
2131
|
+
Type?: StopType;
|
|
2132
2132
|
}
|
|
2133
2133
|
export interface StopAutomationExecutionResult {}
|
|
2134
2134
|
export interface TerminateSessionRequest {
|