@aws-sdk/client-ssm 3.687.0 → 3.692.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.
@@ -10,7 +10,7 @@ import { SSMServiceException as __BaseException } from "./SSMServiceException";
10
10
  export declare class AutomationDefinitionNotApprovedException extends __BaseException {
11
11
  readonly name: "AutomationDefinitionNotApprovedException";
12
12
  readonly $fault: "client";
13
- Message?: string;
13
+ Message?: string | undefined;
14
14
  /**
15
15
  * @internal
16
16
  */
@@ -28,7 +28,7 @@ export interface StartChangeRequestExecutionRequest {
28
28
  * </note>
29
29
  * @public
30
30
  */
31
- ScheduledTime?: Date;
31
+ ScheduledTime?: Date | undefined;
32
32
  /**
33
33
  * <p>The name of the change template document to run during the runbook workflow.</p>
34
34
  * @public
@@ -38,24 +38,24 @@ export interface StartChangeRequestExecutionRequest {
38
38
  * <p>The version of the change template document to run during the runbook workflow.</p>
39
39
  * @public
40
40
  */
41
- DocumentVersion?: string;
41
+ DocumentVersion?: string | undefined;
42
42
  /**
43
43
  * <p>A key-value map of parameters that match the declared parameters in the change template
44
44
  * document.</p>
45
45
  * @public
46
46
  */
47
- Parameters?: Record<string, string[]>;
47
+ Parameters?: Record<string, string[]> | undefined;
48
48
  /**
49
49
  * <p>The name of the change request associated with the runbook workflow to be run.</p>
50
50
  * @public
51
51
  */
52
- ChangeRequestName?: string;
52
+ ChangeRequestName?: string | undefined;
53
53
  /**
54
54
  * <p>The user-provided idempotency token. The token must be unique, is case insensitive, enforces
55
55
  * the UUID format, and can't be reused.</p>
56
56
  * @public
57
57
  */
58
- ClientToken?: string;
58
+ ClientToken?: string | undefined;
59
59
  /**
60
60
  * <p>Indicates whether the change request can be approved automatically without the need for
61
61
  * manual approvals.</p>
@@ -70,7 +70,7 @@ export interface StartChangeRequestExecutionRequest {
70
70
  * </note>
71
71
  * @public
72
72
  */
73
- AutoApprove?: boolean;
73
+ AutoApprove?: boolean | undefined;
74
74
  /**
75
75
  * <p>Information about the Automation runbooks that are run during the runbook workflow.</p>
76
76
  * <note>
@@ -100,20 +100,20 @@ export interface StartChangeRequestExecutionRequest {
100
100
  * </ul>
101
101
  * @public
102
102
  */
103
- Tags?: Tag[];
103
+ Tags?: Tag[] | undefined;
104
104
  /**
105
105
  * <p>The time that the requester expects the runbook workflow related to the change request to
106
106
  * complete. The time is an estimate only that the requester provides for reviewers.</p>
107
107
  * @public
108
108
  */
109
- ScheduledEndTime?: Date;
109
+ ScheduledEndTime?: Date | undefined;
110
110
  /**
111
111
  * <p>User-provided details about the change. If no details are provided, content specified in the
112
112
  * <b>Template information</b> section of the associated change template
113
113
  * is added.</p>
114
114
  * @public
115
115
  */
116
- ChangeDetails?: string;
116
+ ChangeDetails?: string | undefined;
117
117
  }
118
118
  /**
119
119
  * @public
@@ -124,7 +124,7 @@ export interface StartChangeRequestExecutionResult {
124
124
  * operation.) </p>
125
125
  * @public
126
126
  */
127
- AutomationExecutionId?: string;
127
+ AutomationExecutionId?: string | undefined;
128
128
  }
129
129
  /**
130
130
  * @public
@@ -144,19 +144,19 @@ export interface StartSessionRequest {
144
144
  * session</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
145
145
  * @public
146
146
  */
147
- DocumentName?: string;
147
+ DocumentName?: string | undefined;
148
148
  /**
149
149
  * <p>The reason for connecting to the instance. This value is included in the details for the
150
150
  * Amazon CloudWatch Events event created when you start the session.</p>
151
151
  * @public
152
152
  */
153
- Reason?: string;
153
+ Reason?: string | undefined;
154
154
  /**
155
155
  * <p>The values you want to specify for the parameters defined in the Session
156
156
  * document.</p>
157
157
  * @public
158
158
  */
159
- Parameters?: Record<string, string[]>;
159
+ Parameters?: Record<string, string[]> | undefined;
160
160
  }
161
161
  /**
162
162
  * @public
@@ -166,14 +166,14 @@ export interface StartSessionResponse {
166
166
  * <p>The ID of the session.</p>
167
167
  * @public
168
168
  */
169
- SessionId?: string;
169
+ SessionId?: string | undefined;
170
170
  /**
171
171
  * <p>An encrypted token value containing session and caller information. This token is used to
172
172
  * authenticate the connection to the managed node, and is valid only long enough to ensure the
173
173
  * connection is successful. Never share your session's token.</p>
174
174
  * @public
175
175
  */
176
- TokenValue?: string;
176
+ TokenValue?: string | undefined;
177
177
  /**
178
178
  * <p>A URL back to SSM Agent on the managed node that the Session Manager client uses to send commands and
179
179
  * receive output from the node. Format: <code>wss://ssmmessages.<b>region</b>.amazonaws.com/v1/data-channel/<b>session-id</b>?stream=(input|output)</code>
@@ -188,7 +188,7 @@ export interface StartSessionResponse {
188
188
  * <code>1a2b3c4dEXAMPLE</code>.</p>
189
189
  * @public
190
190
  */
191
- StreamUrl?: string;
191
+ StreamUrl?: string | undefined;
192
192
  }
193
193
  /**
194
194
  * <p>The specified target managed node for the session isn't fully configured for use with Session Manager.
@@ -201,7 +201,7 @@ export interface StartSessionResponse {
201
201
  export declare class TargetNotConnected extends __BaseException {
202
202
  readonly name: "TargetNotConnected";
203
203
  readonly $fault: "client";
204
- Message?: string;
204
+ Message?: string | undefined;
205
205
  /**
206
206
  * @internal
207
207
  */
@@ -214,7 +214,7 @@ export declare class TargetNotConnected extends __BaseException {
214
214
  export declare class InvalidAutomationStatusUpdateException extends __BaseException {
215
215
  readonly name: "InvalidAutomationStatusUpdateException";
216
216
  readonly $fault: "client";
217
- Message?: string;
217
+ Message?: string | undefined;
218
218
  /**
219
219
  * @internal
220
220
  */
@@ -246,7 +246,7 @@ export interface StopAutomationExecutionRequest {
246
246
  * type is Cancel.</p>
247
247
  * @public
248
248
  */
249
- Type?: StopType;
249
+ Type?: StopType | undefined;
250
250
  }
251
251
  /**
252
252
  * @public
@@ -271,7 +271,7 @@ export interface TerminateSessionResponse {
271
271
  * <p>The ID of the session that has been terminated.</p>
272
272
  * @public
273
273
  */
274
- SessionId?: string;
274
+ SessionId?: string | undefined;
275
275
  }
276
276
  /**
277
277
  * @public
@@ -306,12 +306,12 @@ export interface UnlabelParameterVersionResult {
306
306
  * <p>A list of all labels deleted from the parameter.</p>
307
307
  * @public
308
308
  */
309
- RemovedLabels?: string[];
309
+ RemovedLabels?: string[] | undefined;
310
310
  /**
311
311
  * <p>The labels that aren't attached to the given parameter version.</p>
312
312
  * @public
313
313
  */
314
- InvalidLabels?: string[];
314
+ InvalidLabels?: string[] | undefined;
315
315
  }
316
316
  /**
317
317
  * <p>You have reached the maximum number versions allowed for an association. Each association
@@ -321,7 +321,7 @@ export interface UnlabelParameterVersionResult {
321
321
  export declare class AssociationVersionLimitExceeded extends __BaseException {
322
322
  readonly name: "AssociationVersionLimitExceeded";
323
323
  readonly $fault: "client";
324
- Message?: string;
324
+ Message?: string | undefined;
325
325
  /**
326
326
  * @internal
327
327
  */
@@ -334,7 +334,7 @@ export declare class AssociationVersionLimitExceeded extends __BaseException {
334
334
  export declare class InvalidUpdate extends __BaseException {
335
335
  readonly name: "InvalidUpdate";
336
336
  readonly $fault: "client";
337
- Message?: string;
337
+ Message?: string | undefined;
338
338
  /**
339
339
  * @internal
340
340
  */
@@ -355,7 +355,7 @@ export interface UpdateAssociationRequest {
355
355
  * <code>\{\{ssm:parameter-name\}\}</code>.</p>
356
356
  * @public
357
357
  */
358
- Parameters?: Record<string, string[]>;
358
+ Parameters?: Record<string, string[]> | undefined;
359
359
  /**
360
360
  * <p>The document version you want update for the association. </p>
361
361
  * <important>
@@ -367,17 +367,17 @@ export interface UpdateAssociationRequest {
367
367
  * </important>
368
368
  * @public
369
369
  */
370
- DocumentVersion?: string;
370
+ DocumentVersion?: string | undefined;
371
371
  /**
372
372
  * <p>The cron expression used to schedule the association that you want to update.</p>
373
373
  * @public
374
374
  */
375
- ScheduleExpression?: string;
375
+ ScheduleExpression?: string | undefined;
376
376
  /**
377
377
  * <p>An S3 bucket where you want to store the results of this request.</p>
378
378
  * @public
379
379
  */
380
- OutputLocation?: InstanceAssociationOutputLocation;
380
+ OutputLocation?: InstanceAssociationOutputLocation | undefined;
381
381
  /**
382
382
  * <p>The name of the SSM Command document or Automation runbook that contains the configuration
383
383
  * information for the managed node.</p>
@@ -398,31 +398,31 @@ export interface UpdateAssociationRequest {
398
398
  * <code>My-Document</code>.</p>
399
399
  * @public
400
400
  */
401
- Name?: string;
401
+ Name?: string | undefined;
402
402
  /**
403
403
  * <p>The targets of the association.</p>
404
404
  * @public
405
405
  */
406
- Targets?: Target[];
406
+ Targets?: Target[] | undefined;
407
407
  /**
408
408
  * <p>The name of the association that you want to update.</p>
409
409
  * @public
410
410
  */
411
- AssociationName?: string;
411
+ AssociationName?: string | undefined;
412
412
  /**
413
413
  * <p>This parameter is provided for concurrency control purposes. You must specify the latest
414
414
  * association version in the service. If you want to ensure that this request succeeds, either
415
415
  * specify <code>$LATEST</code>, or omit this parameter.</p>
416
416
  * @public
417
417
  */
418
- AssociationVersion?: string;
418
+ AssociationVersion?: string | undefined;
419
419
  /**
420
420
  * <p>Choose the parameter that will define how your automation will branch out. This target is
421
421
  * required for associations that use an Automation runbook and target resources by using rate
422
422
  * controls. Automation is a capability of Amazon Web Services Systems Manager.</p>
423
423
  * @public
424
424
  */
425
- AutomationTargetParameterName?: string;
425
+ AutomationTargetParameterName?: string | undefined;
426
426
  /**
427
427
  * <p>The number of errors that are allowed before the system stops sending requests to run the
428
428
  * association on additional targets. You can specify either an absolute number of errors, for
@@ -437,7 +437,7 @@ export interface UpdateAssociationRequest {
437
437
  * so that executions proceed one at a time.</p>
438
438
  * @public
439
439
  */
440
- MaxErrors?: string;
440
+ MaxErrors?: string | undefined;
441
441
  /**
442
442
  * <p>The maximum number of targets allowed to run the association at the same time. You can
443
443
  * specify a number, for example 10, or a percentage of the target set, for example 10%. The default
@@ -448,12 +448,12 @@ export interface UpdateAssociationRequest {
448
448
  * specified for <code>MaxConcurrency</code>.</p>
449
449
  * @public
450
450
  */
451
- MaxConcurrency?: string;
451
+ MaxConcurrency?: string | undefined;
452
452
  /**
453
453
  * <p>The severity level to assign to the association.</p>
454
454
  * @public
455
455
  */
456
- ComplianceSeverity?: AssociationComplianceSeverity;
456
+ ComplianceSeverity?: AssociationComplianceSeverity | undefined;
457
457
  /**
458
458
  * <p>The mode for generating association compliance. You can specify <code>AUTO</code> or
459
459
  * <code>MANUAL</code>. In <code>AUTO</code> mode, the system uses the status of the association
@@ -467,7 +467,7 @@ export interface UpdateAssociationRequest {
467
467
  * <p>By default, all associations use <code>AUTO</code> mode.</p>
468
468
  * @public
469
469
  */
470
- SyncCompliance?: AssociationSyncCompliance;
470
+ SyncCompliance?: AssociationSyncCompliance | undefined;
471
471
  /**
472
472
  * <p>By default, when you update an association, the system runs it immediately after it is
473
473
  * updated and then according to the schedule you specified. Specify this option if you don't want
@@ -486,7 +486,7 @@ export interface UpdateAssociationRequest {
486
486
  * association to run immediately after updating it and according to the interval specified.</p>
487
487
  * @public
488
488
  */
489
- ApplyOnlyAtCronInterval?: boolean;
489
+ ApplyOnlyAtCronInterval?: boolean | undefined;
490
490
  /**
491
491
  * <p>The names or Amazon Resource Names (ARNs) of the Change Calendar type documents you want to
492
492
  * gate your associations under. The associations only run when that change calendar is open. For
@@ -494,14 +494,14 @@ export interface UpdateAssociationRequest {
494
494
  * Calendar</a>.</p>
495
495
  * @public
496
496
  */
497
- CalendarNames?: string[];
497
+ CalendarNames?: string[] | undefined;
498
498
  /**
499
499
  * <p>A location is a combination of Amazon Web Services Regions and Amazon Web Services accounts where you want to run the
500
500
  * association. Use this action to update an association in multiple Regions and multiple
501
501
  * accounts.</p>
502
502
  * @public
503
503
  */
504
- TargetLocations?: TargetLocation[];
504
+ TargetLocations?: TargetLocation[] | undefined;
505
505
  /**
506
506
  * <p>Number of days to wait after the scheduled day to run an association. For example, if you
507
507
  * specified a cron schedule of <code>cron(0 0 ? * THU#2 *)</code>, you could specify an offset of 3
@@ -514,7 +514,7 @@ export interface UpdateAssociationRequest {
514
514
  * </note>
515
515
  * @public
516
516
  */
517
- ScheduleOffset?: number;
517
+ ScheduleOffset?: number | undefined;
518
518
  /**
519
519
  * <p>The number of hours the association can run before it is canceled. Duration applies to
520
520
  * associations that are currently running, and any pending and in progress commands on all targets.
@@ -535,19 +535,19 @@ export interface UpdateAssociationRequest {
535
535
  * </ul>
536
536
  * @public
537
537
  */
538
- Duration?: number;
538
+ Duration?: number | undefined;
539
539
  /**
540
540
  * <p>A key-value mapping of document parameters to target resources. Both Targets and TargetMaps
541
541
  * can't be specified together.</p>
542
542
  * @public
543
543
  */
544
- TargetMaps?: Record<string, string[]>[];
544
+ TargetMaps?: Record<string, string[]>[] | undefined;
545
545
  /**
546
546
  * <p>The details for the CloudWatch alarm you want to apply to an automation or
547
547
  * command.</p>
548
548
  * @public
549
549
  */
550
- AlarmConfiguration?: AlarmConfiguration;
550
+ AlarmConfiguration?: AlarmConfiguration | undefined;
551
551
  }
552
552
  /**
553
553
  * @public
@@ -557,7 +557,7 @@ export interface UpdateAssociationResult {
557
557
  * <p>The description of the association that was updated.</p>
558
558
  * @public
559
559
  */
560
- AssociationDescription?: AssociationDescription;
560
+ AssociationDescription?: AssociationDescription | undefined;
561
561
  }
562
562
  /**
563
563
  * <p>The updated status is the same as the current status.</p>
@@ -599,7 +599,7 @@ export interface UpdateAssociationStatusResult {
599
599
  * <p>Information about the association.</p>
600
600
  * @public
601
601
  */
602
- AssociationDescription?: AssociationDescription;
602
+ AssociationDescription?: AssociationDescription | undefined;
603
603
  }
604
604
  /**
605
605
  * <p>The document has too many versions. Delete one or more document versions and try
@@ -609,7 +609,7 @@ export interface UpdateAssociationStatusResult {
609
609
  export declare class DocumentVersionLimitExceeded extends __BaseException {
610
610
  readonly name: "DocumentVersionLimitExceeded";
611
611
  readonly $fault: "client";
612
- Message?: string;
612
+ Message?: string | undefined;
613
613
  /**
614
614
  * @internal
615
615
  */
@@ -623,7 +623,7 @@ export declare class DocumentVersionLimitExceeded extends __BaseException {
623
623
  export declare class DuplicateDocumentContent extends __BaseException {
624
624
  readonly name: "DuplicateDocumentContent";
625
625
  readonly $fault: "client";
626
- Message?: string;
626
+ Message?: string | undefined;
627
627
  /**
628
628
  * @internal
629
629
  */
@@ -637,7 +637,7 @@ export declare class DuplicateDocumentContent extends __BaseException {
637
637
  export declare class DuplicateDocumentVersionName extends __BaseException {
638
638
  readonly name: "DuplicateDocumentVersionName";
639
639
  readonly $fault: "client";
640
- Message?: string;
640
+ Message?: string | undefined;
641
641
  /**
642
642
  * @internal
643
643
  */
@@ -656,7 +656,7 @@ export interface UpdateDocumentRequest {
656
656
  * <p>A list of key-value pairs that describe attachments to a version of a document.</p>
657
657
  * @public
658
658
  */
659
- Attachments?: AttachmentsSource[];
659
+ Attachments?: AttachmentsSource[] | undefined;
660
660
  /**
661
661
  * <p>The name of the SSM document that you want to update.</p>
662
662
  * @public
@@ -668,14 +668,14 @@ export interface UpdateDocumentRequest {
668
668
  * the existing value is applied to the new document version.</p>
669
669
  * @public
670
670
  */
671
- DisplayName?: string;
671
+ DisplayName?: string | undefined;
672
672
  /**
673
673
  * <p>An optional field specifying the version of the artifact you are updating with the document.
674
674
  * For example, 12.6. This value is unique across all versions of a document, and can't be
675
675
  * changed.</p>
676
676
  * @public
677
677
  */
678
- VersionName?: string;
678
+ VersionName?: string | undefined;
679
679
  /**
680
680
  * <p>The version of the document that you want to update. Currently, Systems Manager supports updating only
681
681
  * the latest version of the document. You can specify the version number of the latest version or
@@ -687,18 +687,18 @@ export interface UpdateDocumentRequest {
687
687
  * </note>
688
688
  * @public
689
689
  */
690
- DocumentVersion?: string;
690
+ DocumentVersion?: string | undefined;
691
691
  /**
692
692
  * <p>Specify the document format for the new document version. Systems Manager supports JSON and YAML
693
693
  * documents. JSON is the default format.</p>
694
694
  * @public
695
695
  */
696
- DocumentFormat?: DocumentFormat;
696
+ DocumentFormat?: DocumentFormat | undefined;
697
697
  /**
698
698
  * <p>Specify a new target type for the document.</p>
699
699
  * @public
700
700
  */
701
- TargetType?: string;
701
+ TargetType?: string | undefined;
702
702
  }
703
703
  /**
704
704
  * @public
@@ -708,7 +708,7 @@ export interface UpdateDocumentResult {
708
708
  * <p>A description of the document that was updated.</p>
709
709
  * @public
710
710
  */
711
- DocumentDescription?: DocumentDescription;
711
+ DocumentDescription?: DocumentDescription | undefined;
712
712
  }
713
713
  /**
714
714
  * @public
@@ -734,17 +734,17 @@ export interface DocumentDefaultVersionDescription {
734
734
  * <p>The name of the document.</p>
735
735
  * @public
736
736
  */
737
- Name?: string;
737
+ Name?: string | undefined;
738
738
  /**
739
739
  * <p>The default version of the document.</p>
740
740
  * @public
741
741
  */
742
- DefaultVersion?: string;
742
+ DefaultVersion?: string | undefined;
743
743
  /**
744
744
  * <p>The default version of the artifact associated with the document.</p>
745
745
  * @public
746
746
  */
747
- DefaultVersionName?: string;
747
+ DefaultVersionName?: string | undefined;
748
748
  }
749
749
  /**
750
750
  * @public
@@ -754,7 +754,7 @@ export interface UpdateDocumentDefaultVersionResult {
754
754
  * <p>The description of a custom document that you want to set as the default version.</p>
755
755
  * @public
756
756
  */
757
- Description?: DocumentDefaultVersionDescription;
757
+ Description?: DocumentDefaultVersionDescription | undefined;
758
758
  }
759
759
  /**
760
760
  * @public
@@ -784,7 +784,7 @@ export interface DocumentReviews {
784
784
  * <p>A comment entered by a user in your organization about the document review request.</p>
785
785
  * @public
786
786
  */
787
- Comment?: DocumentReviewCommentSource[];
787
+ Comment?: DocumentReviewCommentSource[] | undefined;
788
788
  }
789
789
  /**
790
790
  * @public
@@ -799,7 +799,7 @@ export interface UpdateDocumentMetadataRequest {
799
799
  * <p>The version of a change template in which to update approval metadata.</p>
800
800
  * @public
801
801
  */
802
- DocumentVersion?: string;
802
+ DocumentVersion?: string | undefined;
803
803
  /**
804
804
  * <p>The change template review details to update.</p>
805
805
  * @public
@@ -824,12 +824,12 @@ export interface UpdateMaintenanceWindowRequest {
824
824
  * <p>The name of the maintenance window.</p>
825
825
  * @public
826
826
  */
827
- Name?: string;
827
+ Name?: string | undefined;
828
828
  /**
829
829
  * <p>An optional description for the update request.</p>
830
830
  * @public
831
831
  */
832
- Description?: string;
832
+ Description?: string | undefined;
833
833
  /**
834
834
  * <p>The date and time, in ISO-8601 Extended format, for when you want the maintenance window to
835
835
  * become active. <code>StartDate</code> allows you to delay activation of the maintenance window
@@ -840,19 +840,19 @@ export interface UpdateMaintenanceWindowRequest {
840
840
  * </note>
841
841
  * @public
842
842
  */
843
- StartDate?: string;
843
+ StartDate?: string | undefined;
844
844
  /**
845
845
  * <p>The date and time, in ISO-8601 Extended format, for when you want the maintenance window to
846
846
  * become inactive. <code>EndDate</code> allows you to set a date and time in the future when the
847
847
  * maintenance window will no longer run.</p>
848
848
  * @public
849
849
  */
850
- EndDate?: string;
850
+ EndDate?: string | undefined;
851
851
  /**
852
852
  * <p>The schedule of the maintenance window in the form of a cron or rate expression.</p>
853
853
  * @public
854
854
  */
855
- Schedule?: string;
855
+ Schedule?: string | undefined;
856
856
  /**
857
857
  * <p>The time zone that the scheduled maintenance window executions are based on, in Internet
858
858
  * Assigned Numbers Authority (IANA) format. For example: "America/Los_Angeles", "UTC", or
@@ -860,7 +860,7 @@ export interface UpdateMaintenanceWindowRequest {
860
860
  * Zone Database</a> on the IANA website.</p>
861
861
  * @public
862
862
  */
863
- ScheduleTimezone?: string;
863
+ ScheduleTimezone?: string | undefined;
864
864
  /**
865
865
  * <p>The number of days to wait after the date and time specified by a cron expression before
866
866
  * running the maintenance window.</p>
@@ -873,35 +873,35 @@ export interface UpdateMaintenanceWindowRequest {
873
873
  * later.</p>
874
874
  * @public
875
875
  */
876
- ScheduleOffset?: number;
876
+ ScheduleOffset?: number | undefined;
877
877
  /**
878
878
  * <p>The duration of the maintenance window in hours.</p>
879
879
  * @public
880
880
  */
881
- Duration?: number;
881
+ Duration?: number | undefined;
882
882
  /**
883
883
  * <p>The number of hours before the end of the maintenance window that Amazon Web Services Systems Manager stops scheduling
884
884
  * new tasks for execution.</p>
885
885
  * @public
886
886
  */
887
- Cutoff?: number;
887
+ Cutoff?: number | undefined;
888
888
  /**
889
889
  * <p>Whether targets must be registered with the maintenance window before tasks can be defined
890
890
  * for those targets.</p>
891
891
  * @public
892
892
  */
893
- AllowUnassociatedTargets?: boolean;
893
+ AllowUnassociatedTargets?: boolean | undefined;
894
894
  /**
895
895
  * <p>Whether the maintenance window is enabled.</p>
896
896
  * @public
897
897
  */
898
- Enabled?: boolean;
898
+ Enabled?: boolean | undefined;
899
899
  /**
900
900
  * <p>If <code>True</code>, then all fields that are required by the <a>CreateMaintenanceWindow</a> operation are also required for this API request. Optional
901
901
  * fields that aren't specified are set to null. </p>
902
902
  * @public
903
903
  */
904
- Replace?: boolean;
904
+ Replace?: boolean | undefined;
905
905
  }
906
906
  /**
907
907
  * @public
@@ -911,34 +911,34 @@ export interface UpdateMaintenanceWindowResult {
911
911
  * <p>The ID of the created maintenance window.</p>
912
912
  * @public
913
913
  */
914
- WindowId?: string;
914
+ WindowId?: string | undefined;
915
915
  /**
916
916
  * <p>The name of the maintenance window.</p>
917
917
  * @public
918
918
  */
919
- Name?: string;
919
+ Name?: string | undefined;
920
920
  /**
921
921
  * <p>An optional description of the update.</p>
922
922
  * @public
923
923
  */
924
- Description?: string;
924
+ Description?: string | undefined;
925
925
  /**
926
926
  * <p>The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled
927
927
  * to become active. The maintenance window won't run before this specified time.</p>
928
928
  * @public
929
929
  */
930
- StartDate?: string;
930
+ StartDate?: string | undefined;
931
931
  /**
932
932
  * <p>The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled
933
933
  * to become inactive. The maintenance window won't run after this specified time.</p>
934
934
  * @public
935
935
  */
936
- EndDate?: string;
936
+ EndDate?: string | undefined;
937
937
  /**
938
938
  * <p>The schedule of the maintenance window in the form of a cron or rate expression.</p>
939
939
  * @public
940
940
  */
941
- Schedule?: string;
941
+ Schedule?: string | undefined;
942
942
  /**
943
943
  * <p>The time zone that the scheduled maintenance window executions are based on, in Internet
944
944
  * Assigned Numbers Authority (IANA) format. For example: "America/Los_Angeles", "UTC", or
@@ -946,35 +946,35 @@ export interface UpdateMaintenanceWindowResult {
946
946
  * Zone Database</a> on the IANA website.</p>
947
947
  * @public
948
948
  */
949
- ScheduleTimezone?: string;
949
+ ScheduleTimezone?: string | undefined;
950
950
  /**
951
951
  * <p>The number of days to wait to run a maintenance window after the scheduled cron expression
952
952
  * date and time.</p>
953
953
  * @public
954
954
  */
955
- ScheduleOffset?: number;
955
+ ScheduleOffset?: number | undefined;
956
956
  /**
957
957
  * <p>The duration of the maintenance window in hours.</p>
958
958
  * @public
959
959
  */
960
- Duration?: number;
960
+ Duration?: number | undefined;
961
961
  /**
962
962
  * <p>The number of hours before the end of the maintenance window that Amazon Web Services Systems Manager stops scheduling
963
963
  * new tasks for execution.</p>
964
964
  * @public
965
965
  */
966
- Cutoff?: number;
966
+ Cutoff?: number | undefined;
967
967
  /**
968
968
  * <p>Whether targets must be registered with the maintenance window before tasks can be defined
969
969
  * for those targets.</p>
970
970
  * @public
971
971
  */
972
- AllowUnassociatedTargets?: boolean;
972
+ AllowUnassociatedTargets?: boolean | undefined;
973
973
  /**
974
974
  * <p>Whether the maintenance window is enabled.</p>
975
975
  * @public
976
976
  */
977
- Enabled?: boolean;
977
+ Enabled?: boolean | undefined;
978
978
  }
979
979
  /**
980
980
  * @public
@@ -994,29 +994,29 @@ export interface UpdateMaintenanceWindowTargetRequest {
994
994
  * <p>The targets to add or replace.</p>
995
995
  * @public
996
996
  */
997
- Targets?: Target[];
997
+ Targets?: Target[] | undefined;
998
998
  /**
999
999
  * <p>User-provided value that will be included in any Amazon CloudWatch Events events raised while
1000
1000
  * running tasks for these targets in this maintenance window.</p>
1001
1001
  * @public
1002
1002
  */
1003
- OwnerInformation?: string;
1003
+ OwnerInformation?: string | undefined;
1004
1004
  /**
1005
1005
  * <p>A name for the update.</p>
1006
1006
  * @public
1007
1007
  */
1008
- Name?: string;
1008
+ Name?: string | undefined;
1009
1009
  /**
1010
1010
  * <p>An optional description for the update.</p>
1011
1011
  * @public
1012
1012
  */
1013
- Description?: string;
1013
+ Description?: string | undefined;
1014
1014
  /**
1015
1015
  * <p>If <code>True</code>, then all fields that are required by the <a>RegisterTargetWithMaintenanceWindow</a> operation are also required for this API
1016
1016
  * request. Optional fields that aren't specified are set to null.</p>
1017
1017
  * @public
1018
1018
  */
1019
- Replace?: boolean;
1019
+ Replace?: boolean | undefined;
1020
1020
  }
1021
1021
  /**
1022
1022
  * @public
@@ -1026,32 +1026,32 @@ export interface UpdateMaintenanceWindowTargetResult {
1026
1026
  * <p>The maintenance window ID specified in the update request.</p>
1027
1027
  * @public
1028
1028
  */
1029
- WindowId?: string;
1029
+ WindowId?: string | undefined;
1030
1030
  /**
1031
1031
  * <p>The target ID specified in the update request.</p>
1032
1032
  * @public
1033
1033
  */
1034
- WindowTargetId?: string;
1034
+ WindowTargetId?: string | undefined;
1035
1035
  /**
1036
1036
  * <p>The updated targets.</p>
1037
1037
  * @public
1038
1038
  */
1039
- Targets?: Target[];
1039
+ Targets?: Target[] | undefined;
1040
1040
  /**
1041
1041
  * <p>The updated owner.</p>
1042
1042
  * @public
1043
1043
  */
1044
- OwnerInformation?: string;
1044
+ OwnerInformation?: string | undefined;
1045
1045
  /**
1046
1046
  * <p>The updated name.</p>
1047
1047
  * @public
1048
1048
  */
1049
- Name?: string;
1049
+ Name?: string | undefined;
1050
1050
  /**
1051
1051
  * <p>The updated description.</p>
1052
1052
  * @public
1053
1053
  */
1054
- Description?: string;
1054
+ Description?: string | undefined;
1055
1055
  }
1056
1056
  /**
1057
1057
  * @public
@@ -1081,12 +1081,12 @@ export interface UpdateMaintenanceWindowTaskRequest {
1081
1081
  * </note>
1082
1082
  * @public
1083
1083
  */
1084
- Targets?: Target[];
1084
+ Targets?: Target[] | undefined;
1085
1085
  /**
1086
1086
  * <p>The task ARN to modify.</p>
1087
1087
  * @public
1088
1088
  */
1089
- TaskArn?: string;
1089
+ TaskArn?: string | undefined;
1090
1090
  /**
1091
1091
  * <p>The Amazon Resource Name (ARN) of the IAM service role for
1092
1092
  * Amazon Web Services Systems Manager to assume when running a maintenance window task. If you do not specify a
@@ -1100,7 +1100,7 @@ export interface UpdateMaintenanceWindowTaskRequest {
1100
1100
  * <i>Amazon Web Services Systems Manager User Guide</i>.</p>
1101
1101
  * @public
1102
1102
  */
1103
- ServiceRoleArn?: string;
1103
+ ServiceRoleArn?: string | undefined;
1104
1104
  /**
1105
1105
  * <p>The parameters to modify.</p>
1106
1106
  * <note>
@@ -1115,7 +1115,7 @@ export interface UpdateMaintenanceWindowTaskRequest {
1115
1115
  * <p>Value: an array of strings, each string is between 1 and 255 characters</p>
1116
1116
  * @public
1117
1117
  */
1118
- TaskParameters?: Record<string, MaintenanceWindowTaskParameterValueExpression>;
1118
+ TaskParameters?: Record<string, MaintenanceWindowTaskParameterValueExpression> | undefined;
1119
1119
  /**
1120
1120
  * <p>The parameters that the task should use during execution. Populate only the fields that
1121
1121
  * match the task type. All other fields should be empty.</p>
@@ -1131,13 +1131,13 @@ export interface UpdateMaintenanceWindowTaskRequest {
1131
1131
  * </important>
1132
1132
  * @public
1133
1133
  */
1134
- TaskInvocationParameters?: MaintenanceWindowTaskInvocationParameters;
1134
+ TaskInvocationParameters?: MaintenanceWindowTaskInvocationParameters | undefined;
1135
1135
  /**
1136
1136
  * <p>The new task priority to specify. The lower the number, the higher the priority. Tasks that
1137
1137
  * have the same priority are scheduled in parallel.</p>
1138
1138
  * @public
1139
1139
  */
1140
- Priority?: number;
1140
+ Priority?: number | undefined;
1141
1141
  /**
1142
1142
  * <p>The new <code>MaxConcurrency</code> value you want to specify. <code>MaxConcurrency</code>
1143
1143
  * is the number of targets that are allowed to run this task, in parallel.</p>
@@ -1151,7 +1151,7 @@ export interface UpdateMaintenanceWindowTaskRequest {
1151
1151
  * </note>
1152
1152
  * @public
1153
1153
  */
1154
- MaxConcurrency?: string;
1154
+ MaxConcurrency?: string | undefined;
1155
1155
  /**
1156
1156
  * <p>The new <code>MaxErrors</code> value to specify. <code>MaxErrors</code> is the maximum
1157
1157
  * number of errors that are allowed before the task stops being scheduled.</p>
@@ -1165,7 +1165,7 @@ export interface UpdateMaintenanceWindowTaskRequest {
1165
1165
  * </note>
1166
1166
  * @public
1167
1167
  */
1168
- MaxErrors?: string;
1168
+ MaxErrors?: string | undefined;
1169
1169
  /**
1170
1170
  * <p>The new logging location in Amazon S3 to specify.</p>
1171
1171
  * <note>
@@ -1177,23 +1177,23 @@ export interface UpdateMaintenanceWindowTaskRequest {
1177
1177
  * </note>
1178
1178
  * @public
1179
1179
  */
1180
- LoggingInfo?: LoggingInfo;
1180
+ LoggingInfo?: LoggingInfo | undefined;
1181
1181
  /**
1182
1182
  * <p>The new task name to specify.</p>
1183
1183
  * @public
1184
1184
  */
1185
- Name?: string;
1185
+ Name?: string | undefined;
1186
1186
  /**
1187
1187
  * <p>The new task description to specify.</p>
1188
1188
  * @public
1189
1189
  */
1190
- Description?: string;
1190
+ Description?: string | undefined;
1191
1191
  /**
1192
1192
  * <p>If True, then all fields that are required by the <a>RegisterTaskWithMaintenanceWindow</a> operation are also required for this API request.
1193
1193
  * Optional fields that aren't specified are set to null.</p>
1194
1194
  * @public
1195
1195
  */
1196
- Replace?: boolean;
1196
+ Replace?: boolean | undefined;
1197
1197
  /**
1198
1198
  * <p>Indicates whether tasks should continue to run after the cutoff time specified in the
1199
1199
  * maintenance windows is reached. </p>
@@ -1223,12 +1223,12 @@ export interface UpdateMaintenanceWindowTaskRequest {
1223
1223
  * </ul>
1224
1224
  * @public
1225
1225
  */
1226
- CutoffBehavior?: MaintenanceWindowTaskCutoffBehavior;
1226
+ CutoffBehavior?: MaintenanceWindowTaskCutoffBehavior | undefined;
1227
1227
  /**
1228
1228
  * <p>The CloudWatch alarm you want to apply to your maintenance window task.</p>
1229
1229
  * @public
1230
1230
  */
1231
- AlarmConfiguration?: AlarmConfiguration;
1231
+ AlarmConfiguration?: AlarmConfiguration | undefined;
1232
1232
  }
1233
1233
  /**
1234
1234
  * @public
@@ -1238,22 +1238,22 @@ export interface UpdateMaintenanceWindowTaskResult {
1238
1238
  * <p>The ID of the maintenance window that was updated.</p>
1239
1239
  * @public
1240
1240
  */
1241
- WindowId?: string;
1241
+ WindowId?: string | undefined;
1242
1242
  /**
1243
1243
  * <p>The task ID of the maintenance window that was updated.</p>
1244
1244
  * @public
1245
1245
  */
1246
- WindowTaskId?: string;
1246
+ WindowTaskId?: string | undefined;
1247
1247
  /**
1248
1248
  * <p>The updated target values.</p>
1249
1249
  * @public
1250
1250
  */
1251
- Targets?: Target[];
1251
+ Targets?: Target[] | undefined;
1252
1252
  /**
1253
1253
  * <p>The updated task ARN value.</p>
1254
1254
  * @public
1255
1255
  */
1256
- TaskArn?: string;
1256
+ TaskArn?: string | undefined;
1257
1257
  /**
1258
1258
  * <p>The Amazon Resource Name (ARN) of the IAM service role for
1259
1259
  * Amazon Web Services Systems Manager to assume when running a maintenance window task. If you do not specify a
@@ -1267,7 +1267,7 @@ export interface UpdateMaintenanceWindowTaskResult {
1267
1267
  * <i>Amazon Web Services Systems Manager User Guide</i>.</p>
1268
1268
  * @public
1269
1269
  */
1270
- ServiceRoleArn?: string;
1270
+ ServiceRoleArn?: string | undefined;
1271
1271
  /**
1272
1272
  * <p>The updated parameter values.</p>
1273
1273
  * <note>
@@ -1279,27 +1279,27 @@ export interface UpdateMaintenanceWindowTaskResult {
1279
1279
  * </note>
1280
1280
  * @public
1281
1281
  */
1282
- TaskParameters?: Record<string, MaintenanceWindowTaskParameterValueExpression>;
1282
+ TaskParameters?: Record<string, MaintenanceWindowTaskParameterValueExpression> | undefined;
1283
1283
  /**
1284
1284
  * <p>The updated parameter values.</p>
1285
1285
  * @public
1286
1286
  */
1287
- TaskInvocationParameters?: MaintenanceWindowTaskInvocationParameters;
1287
+ TaskInvocationParameters?: MaintenanceWindowTaskInvocationParameters | undefined;
1288
1288
  /**
1289
1289
  * <p>The updated priority value.</p>
1290
1290
  * @public
1291
1291
  */
1292
- Priority?: number;
1292
+ Priority?: number | undefined;
1293
1293
  /**
1294
1294
  * <p>The updated <code>MaxConcurrency</code> value.</p>
1295
1295
  * @public
1296
1296
  */
1297
- MaxConcurrency?: string;
1297
+ MaxConcurrency?: string | undefined;
1298
1298
  /**
1299
1299
  * <p>The updated <code>MaxErrors</code> value.</p>
1300
1300
  * @public
1301
1301
  */
1302
- MaxErrors?: string;
1302
+ MaxErrors?: string | undefined;
1303
1303
  /**
1304
1304
  * <p>The updated logging information in Amazon S3.</p>
1305
1305
  * <note>
@@ -1311,29 +1311,29 @@ export interface UpdateMaintenanceWindowTaskResult {
1311
1311
  * </note>
1312
1312
  * @public
1313
1313
  */
1314
- LoggingInfo?: LoggingInfo;
1314
+ LoggingInfo?: LoggingInfo | undefined;
1315
1315
  /**
1316
1316
  * <p>The updated task name.</p>
1317
1317
  * @public
1318
1318
  */
1319
- Name?: string;
1319
+ Name?: string | undefined;
1320
1320
  /**
1321
1321
  * <p>The updated task description.</p>
1322
1322
  * @public
1323
1323
  */
1324
- Description?: string;
1324
+ Description?: string | undefined;
1325
1325
  /**
1326
1326
  * <p>The specification for whether tasks should continue to run after the cutoff time specified
1327
1327
  * in the maintenance windows is reached. </p>
1328
1328
  * @public
1329
1329
  */
1330
- CutoffBehavior?: MaintenanceWindowTaskCutoffBehavior;
1330
+ CutoffBehavior?: MaintenanceWindowTaskCutoffBehavior | undefined;
1331
1331
  /**
1332
1332
  * <p>The details for the CloudWatch alarm you applied to your maintenance window
1333
1333
  * task.</p>
1334
1334
  * @public
1335
1335
  */
1336
- AlarmConfiguration?: AlarmConfiguration;
1336
+ AlarmConfiguration?: AlarmConfiguration | undefined;
1337
1337
  }
1338
1338
  /**
1339
1339
  * @public
@@ -1370,7 +1370,7 @@ export interface UpdateOpsItemRequest {
1370
1370
  * <p>User-defined text that contains information about the OpsItem, in Markdown format. </p>
1371
1371
  * @public
1372
1372
  */
1373
- Description?: string;
1373
+ Description?: string | undefined;
1374
1374
  /**
1375
1375
  * <p>Add new keys or edit existing key-value pairs of the OperationalData map in the OpsItem
1376
1376
  * object.</p>
@@ -1395,35 +1395,35 @@ export interface UpdateOpsItemRequest {
1395
1395
  * manually</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
1396
1396
  * @public
1397
1397
  */
1398
- OperationalData?: Record<string, OpsItemDataValue>;
1398
+ OperationalData?: Record<string, OpsItemDataValue> | undefined;
1399
1399
  /**
1400
1400
  * <p>Keys that you want to remove from the OperationalData map.</p>
1401
1401
  * @public
1402
1402
  */
1403
- OperationalDataToDelete?: string[];
1403
+ OperationalDataToDelete?: string[] | undefined;
1404
1404
  /**
1405
1405
  * <p>The Amazon Resource Name (ARN) of an SNS topic where notifications are sent when this
1406
1406
  * OpsItem is edited or changed.</p>
1407
1407
  * @public
1408
1408
  */
1409
- Notifications?: OpsItemNotification[];
1409
+ Notifications?: OpsItemNotification[] | undefined;
1410
1410
  /**
1411
1411
  * <p>The importance of this OpsItem in relation to other OpsItems in the system.</p>
1412
1412
  * @public
1413
1413
  */
1414
- Priority?: number;
1414
+ Priority?: number | undefined;
1415
1415
  /**
1416
1416
  * <p>One or more OpsItems that share something in common with the current OpsItems. For example,
1417
1417
  * related OpsItems can include OpsItems with similar error messages, impacted resources, or
1418
1418
  * statuses for the impacted resource.</p>
1419
1419
  * @public
1420
1420
  */
1421
- RelatedOpsItems?: RelatedOpsItem[];
1421
+ RelatedOpsItems?: RelatedOpsItem[] | undefined;
1422
1422
  /**
1423
1423
  * <p>The OpsItem status. For more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-working-with-OpsItems-editing-details.html">Editing OpsItem details</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
1424
1424
  * @public
1425
1425
  */
1426
- Status?: OpsItemStatus;
1426
+ Status?: OpsItemStatus | undefined;
1427
1427
  /**
1428
1428
  * <p>The ID of the OpsItem.</p>
1429
1429
  * @public
@@ -1433,46 +1433,46 @@ export interface UpdateOpsItemRequest {
1433
1433
  * <p>A short heading that describes the nature of the OpsItem and the impacted resource.</p>
1434
1434
  * @public
1435
1435
  */
1436
- Title?: string;
1436
+ Title?: string | undefined;
1437
1437
  /**
1438
1438
  * <p>Specify a new category for an OpsItem.</p>
1439
1439
  * @public
1440
1440
  */
1441
- Category?: string;
1441
+ Category?: string | undefined;
1442
1442
  /**
1443
1443
  * <p>Specify a new severity for an OpsItem.</p>
1444
1444
  * @public
1445
1445
  */
1446
- Severity?: string;
1446
+ Severity?: string | undefined;
1447
1447
  /**
1448
1448
  * <p>The time a runbook workflow started. Currently reported only for the OpsItem type
1449
1449
  * <code>/aws/changerequest</code>.</p>
1450
1450
  * @public
1451
1451
  */
1452
- ActualStartTime?: Date;
1452
+ ActualStartTime?: Date | undefined;
1453
1453
  /**
1454
1454
  * <p>The time a runbook workflow ended. Currently reported only for the OpsItem type
1455
1455
  * <code>/aws/changerequest</code>.</p>
1456
1456
  * @public
1457
1457
  */
1458
- ActualEndTime?: Date;
1458
+ ActualEndTime?: Date | undefined;
1459
1459
  /**
1460
1460
  * <p>The time specified in a change request for a runbook workflow to start. Currently supported
1461
1461
  * only for the OpsItem type <code>/aws/changerequest</code>.</p>
1462
1462
  * @public
1463
1463
  */
1464
- PlannedStartTime?: Date;
1464
+ PlannedStartTime?: Date | undefined;
1465
1465
  /**
1466
1466
  * <p>The time specified in a change request for a runbook workflow to end. Currently supported
1467
1467
  * only for the OpsItem type <code>/aws/changerequest</code>.</p>
1468
1468
  * @public
1469
1469
  */
1470
- PlannedEndTime?: Date;
1470
+ PlannedEndTime?: Date | undefined;
1471
1471
  /**
1472
1472
  * <p>The OpsItem Amazon Resource Name (ARN).</p>
1473
1473
  * @public
1474
1474
  */
1475
- OpsItemArn?: string;
1475
+ OpsItemArn?: string | undefined;
1476
1476
  }
1477
1477
  /**
1478
1478
  * @public
@@ -1505,12 +1505,12 @@ export interface UpdateOpsMetadataRequest {
1505
1505
  * <p>Metadata to add to an OpsMetadata object.</p>
1506
1506
  * @public
1507
1507
  */
1508
- MetadataToUpdate?: Record<string, MetadataValue>;
1508
+ MetadataToUpdate?: Record<string, MetadataValue> | undefined;
1509
1509
  /**
1510
1510
  * <p>The metadata keys to delete from the OpsMetadata object. </p>
1511
1511
  * @public
1512
1512
  */
1513
- KeysToDelete?: string[];
1513
+ KeysToDelete?: string[] | undefined;
1514
1514
  }
1515
1515
  /**
1516
1516
  * @public
@@ -1520,7 +1520,7 @@ export interface UpdateOpsMetadataResult {
1520
1520
  * <p>The Amazon Resource Name (ARN) of the OpsMetadata Object that was updated.</p>
1521
1521
  * @public
1522
1522
  */
1523
- OpsMetadataArn?: string;
1523
+ OpsMetadataArn?: string | undefined;
1524
1524
  }
1525
1525
  /**
1526
1526
  * @public
@@ -1535,17 +1535,17 @@ export interface UpdatePatchBaselineRequest {
1535
1535
  * <p>The name of the patch baseline.</p>
1536
1536
  * @public
1537
1537
  */
1538
- Name?: string;
1538
+ Name?: string | undefined;
1539
1539
  /**
1540
1540
  * <p>A set of global filters used to include patches in the baseline.</p>
1541
1541
  * @public
1542
1542
  */
1543
- GlobalFilters?: PatchFilterGroup;
1543
+ GlobalFilters?: PatchFilterGroup | undefined;
1544
1544
  /**
1545
1545
  * <p>A set of rules used to include patches in the baseline.</p>
1546
1546
  * @public
1547
1547
  */
1548
- ApprovalRules?: PatchRuleGroup;
1548
+ ApprovalRules?: PatchRuleGroup | undefined;
1549
1549
  /**
1550
1550
  * <p>A list of explicitly approved patches for the baseline.</p>
1551
1551
  * <p>For information about accepted formats for lists of approved patches and rejected patches,
@@ -1553,19 +1553,19 @@ export interface UpdatePatchBaselineRequest {
1553
1553
  * name formats for approved and rejected patch lists</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
1554
1554
  * @public
1555
1555
  */
1556
- ApprovedPatches?: string[];
1556
+ ApprovedPatches?: string[] | undefined;
1557
1557
  /**
1558
1558
  * <p>Assigns a new compliance severity level to an existing patch baseline.</p>
1559
1559
  * @public
1560
1560
  */
1561
- ApprovedPatchesComplianceLevel?: PatchComplianceLevel;
1561
+ ApprovedPatchesComplianceLevel?: PatchComplianceLevel | undefined;
1562
1562
  /**
1563
1563
  * <p>Indicates whether the list of approved patches includes non-security updates that should be
1564
1564
  * applied to the managed nodes. The default value is <code>false</code>. Applies to Linux managed
1565
1565
  * nodes only.</p>
1566
1566
  * @public
1567
1567
  */
1568
- ApprovedPatchesEnableNonSecurity?: boolean;
1568
+ ApprovedPatchesEnableNonSecurity?: boolean | undefined;
1569
1569
  /**
1570
1570
  * <p>A list of explicitly rejected patches for the baseline.</p>
1571
1571
  * <p>For information about accepted formats for lists of approved patches and rejected patches,
@@ -1573,7 +1573,7 @@ export interface UpdatePatchBaselineRequest {
1573
1573
  * name formats for approved and rejected patch lists</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
1574
1574
  * @public
1575
1575
  */
1576
- RejectedPatches?: string[];
1576
+ RejectedPatches?: string[] | undefined;
1577
1577
  /**
1578
1578
  * <p>The action for Patch Manager to take on patches included in the
1579
1579
  * <code>RejectedPackages</code> list.</p>
@@ -1604,25 +1604,25 @@ export interface UpdatePatchBaselineRequest {
1604
1604
  * </dl>
1605
1605
  * @public
1606
1606
  */
1607
- RejectedPatchesAction?: PatchAction;
1607
+ RejectedPatchesAction?: PatchAction | undefined;
1608
1608
  /**
1609
1609
  * <p>A description of the patch baseline.</p>
1610
1610
  * @public
1611
1611
  */
1612
- Description?: string;
1612
+ Description?: string | undefined;
1613
1613
  /**
1614
1614
  * <p>Information about the patches to use to update the managed nodes, including target operating
1615
1615
  * systems and source repositories. Applies to Linux managed nodes only.</p>
1616
1616
  * @public
1617
1617
  */
1618
- Sources?: PatchSource[];
1618
+ Sources?: PatchSource[] | undefined;
1619
1619
  /**
1620
1620
  * <p>If True, then all fields that are required by the <a>CreatePatchBaseline</a>
1621
1621
  * operation are also required for this API request. Optional fields that aren't specified are set
1622
1622
  * to null.</p>
1623
1623
  * @public
1624
1624
  */
1625
- Replace?: boolean;
1625
+ Replace?: boolean | undefined;
1626
1626
  }
1627
1627
  /**
1628
1628
  * @public
@@ -1632,78 +1632,78 @@ export interface UpdatePatchBaselineResult {
1632
1632
  * <p>The ID of the deleted patch baseline.</p>
1633
1633
  * @public
1634
1634
  */
1635
- BaselineId?: string;
1635
+ BaselineId?: string | undefined;
1636
1636
  /**
1637
1637
  * <p>The name of the patch baseline.</p>
1638
1638
  * @public
1639
1639
  */
1640
- Name?: string;
1640
+ Name?: string | undefined;
1641
1641
  /**
1642
1642
  * <p>The operating system rule used by the updated patch baseline.</p>
1643
1643
  * @public
1644
1644
  */
1645
- OperatingSystem?: OperatingSystem;
1645
+ OperatingSystem?: OperatingSystem | undefined;
1646
1646
  /**
1647
1647
  * <p>A set of global filters used to exclude patches from the baseline.</p>
1648
1648
  * @public
1649
1649
  */
1650
- GlobalFilters?: PatchFilterGroup;
1650
+ GlobalFilters?: PatchFilterGroup | undefined;
1651
1651
  /**
1652
1652
  * <p>A set of rules used to include patches in the baseline.</p>
1653
1653
  * @public
1654
1654
  */
1655
- ApprovalRules?: PatchRuleGroup;
1655
+ ApprovalRules?: PatchRuleGroup | undefined;
1656
1656
  /**
1657
1657
  * <p>A list of explicitly approved patches for the baseline.</p>
1658
1658
  * @public
1659
1659
  */
1660
- ApprovedPatches?: string[];
1660
+ ApprovedPatches?: string[] | undefined;
1661
1661
  /**
1662
1662
  * <p>The compliance severity level assigned to the patch baseline after the update
1663
1663
  * completed.</p>
1664
1664
  * @public
1665
1665
  */
1666
- ApprovedPatchesComplianceLevel?: PatchComplianceLevel;
1666
+ ApprovedPatchesComplianceLevel?: PatchComplianceLevel | undefined;
1667
1667
  /**
1668
1668
  * <p>Indicates whether the list of approved patches includes non-security updates that should be
1669
1669
  * applied to the managed nodes. The default value is <code>false</code>. Applies to Linux managed
1670
1670
  * nodes only.</p>
1671
1671
  * @public
1672
1672
  */
1673
- ApprovedPatchesEnableNonSecurity?: boolean;
1673
+ ApprovedPatchesEnableNonSecurity?: boolean | undefined;
1674
1674
  /**
1675
1675
  * <p>A list of explicitly rejected patches for the baseline.</p>
1676
1676
  * @public
1677
1677
  */
1678
- RejectedPatches?: string[];
1678
+ RejectedPatches?: string[] | undefined;
1679
1679
  /**
1680
1680
  * <p>The action specified to take on patches included in the <code>RejectedPatches</code> list. A
1681
1681
  * patch can be allowed only if it is a dependency of another package, or blocked entirely along
1682
1682
  * with packages that include it as a dependency.</p>
1683
1683
  * @public
1684
1684
  */
1685
- RejectedPatchesAction?: PatchAction;
1685
+ RejectedPatchesAction?: PatchAction | undefined;
1686
1686
  /**
1687
1687
  * <p>The date when the patch baseline was created.</p>
1688
1688
  * @public
1689
1689
  */
1690
- CreatedDate?: Date;
1690
+ CreatedDate?: Date | undefined;
1691
1691
  /**
1692
1692
  * <p>The date when the patch baseline was last modified.</p>
1693
1693
  * @public
1694
1694
  */
1695
- ModifiedDate?: Date;
1695
+ ModifiedDate?: Date | undefined;
1696
1696
  /**
1697
1697
  * <p>A description of the patch baseline.</p>
1698
1698
  * @public
1699
1699
  */
1700
- Description?: string;
1700
+ Description?: string | undefined;
1701
1701
  /**
1702
1702
  * <p>Information about the patches to use to update the managed nodes, including target operating
1703
1703
  * systems and source repositories. Applies to Linux managed nodes only.</p>
1704
1704
  * @public
1705
1705
  */
1706
- Sources?: PatchSource[];
1706
+ Sources?: PatchSource[] | undefined;
1707
1707
  }
1708
1708
  /**
1709
1709
  * <p>Another <code>UpdateResourceDataSync</code> request is being processed. Wait a few minutes
@@ -1713,7 +1713,7 @@ export interface UpdatePatchBaselineResult {
1713
1713
  export declare class ResourceDataSyncConflictException extends __BaseException {
1714
1714
  readonly name: "ResourceDataSyncConflictException";
1715
1715
  readonly $fault: "client";
1716
- Message?: string;
1716
+ Message?: string | undefined;
1717
1717
  /**
1718
1718
  * @internal
1719
1719
  */
@@ -1861,18 +1861,18 @@ export interface InventoryAggregator {
1861
1861
  * <p>The inventory type and attribute name for aggregation.</p>
1862
1862
  * @public
1863
1863
  */
1864
- Expression?: string;
1864
+ Expression?: string | undefined;
1865
1865
  /**
1866
1866
  * <p>Nested aggregators to further refine aggregation for an inventory type.</p>
1867
1867
  * @public
1868
1868
  */
1869
- Aggregators?: InventoryAggregator[];
1869
+ Aggregators?: InventoryAggregator[] | undefined;
1870
1870
  /**
1871
1871
  * <p>A user-defined set of one or more filters on which to aggregate inventory data. Groups
1872
1872
  * return a count of resources that match and don't match the specified criteria.</p>
1873
1873
  * @public
1874
1874
  */
1875
- Groups?: InventoryGroup[];
1875
+ Groups?: InventoryGroup[] | undefined;
1876
1876
  }
1877
1877
  /**
1878
1878
  * <p>One or more aggregators for viewing counts of OpsData using different dimensions such as
@@ -1886,32 +1886,32 @@ export interface OpsAggregator {
1886
1886
  * summary.</p>
1887
1887
  * @public
1888
1888
  */
1889
- AggregatorType?: string;
1889
+ AggregatorType?: string | undefined;
1890
1890
  /**
1891
1891
  * <p>The data type name to use for viewing counts of OpsData.</p>
1892
1892
  * @public
1893
1893
  */
1894
- TypeName?: string;
1894
+ TypeName?: string | undefined;
1895
1895
  /**
1896
1896
  * <p>The name of an OpsData attribute on which to limit the count of OpsData.</p>
1897
1897
  * @public
1898
1898
  */
1899
- AttributeName?: string;
1899
+ AttributeName?: string | undefined;
1900
1900
  /**
1901
1901
  * <p>The aggregator value.</p>
1902
1902
  * @public
1903
1903
  */
1904
- Values?: Record<string, string>;
1904
+ Values?: Record<string, string> | undefined;
1905
1905
  /**
1906
1906
  * <p>The aggregator filters.</p>
1907
1907
  * @public
1908
1908
  */
1909
- Filters?: OpsFilter[];
1909
+ Filters?: OpsFilter[] | undefined;
1910
1910
  /**
1911
1911
  * <p>A nested aggregator for viewing counts of OpsData.</p>
1912
1912
  * @public
1913
1913
  */
1914
- Aggregators?: OpsAggregator[];
1914
+ Aggregators?: OpsAggregator[] | undefined;
1915
1915
  }
1916
1916
  /**
1917
1917
  * @public
@@ -1921,7 +1921,7 @@ export interface GetInventoryRequest {
1921
1921
  * <p>One or more filters. Use a filter to return a more specific list of results.</p>
1922
1922
  * @public
1923
1923
  */
1924
- Filters?: InventoryFilter[];
1924
+ Filters?: InventoryFilter[] | undefined;
1925
1925
  /**
1926
1926
  * <p>Returns counts of inventory types based on one or more expressions. For example, if you
1927
1927
  * aggregate by using an expression that uses the <code>AWS:InstanceInformation.PlatformType</code>
@@ -1929,24 +1929,24 @@ export interface GetInventoryRequest {
1929
1929
  * fleet.</p>
1930
1930
  * @public
1931
1931
  */
1932
- Aggregators?: InventoryAggregator[];
1932
+ Aggregators?: InventoryAggregator[] | undefined;
1933
1933
  /**
1934
1934
  * <p>The list of inventory item types to return.</p>
1935
1935
  * @public
1936
1936
  */
1937
- ResultAttributes?: ResultAttribute[];
1937
+ ResultAttributes?: ResultAttribute[] | undefined;
1938
1938
  /**
1939
1939
  * <p>The token for the next set of items to return. (You received this token from a previous
1940
1940
  * call.)</p>
1941
1941
  * @public
1942
1942
  */
1943
- NextToken?: string;
1943
+ NextToken?: string | undefined;
1944
1944
  /**
1945
1945
  * <p>The maximum number of items to return for this call. The call also returns a token that you
1946
1946
  * can specify in a subsequent call to get the next set of results.</p>
1947
1947
  * @public
1948
1948
  */
1949
- MaxResults?: number;
1949
+ MaxResults?: number | undefined;
1950
1950
  }
1951
1951
  /**
1952
1952
  * @public
@@ -1956,33 +1956,33 @@ export interface GetOpsSummaryRequest {
1956
1956
  * <p>Specify the name of a resource data sync to get.</p>
1957
1957
  * @public
1958
1958
  */
1959
- SyncName?: string;
1959
+ SyncName?: string | undefined;
1960
1960
  /**
1961
1961
  * <p>Optional filters used to scope down the returned OpsData. </p>
1962
1962
  * @public
1963
1963
  */
1964
- Filters?: OpsFilter[];
1964
+ Filters?: OpsFilter[] | undefined;
1965
1965
  /**
1966
1966
  * <p>Optional aggregators that return counts of OpsData based on one or more expressions.</p>
1967
1967
  * @public
1968
1968
  */
1969
- Aggregators?: OpsAggregator[];
1969
+ Aggregators?: OpsAggregator[] | undefined;
1970
1970
  /**
1971
1971
  * <p>The OpsData data type to return.</p>
1972
1972
  * @public
1973
1973
  */
1974
- ResultAttributes?: OpsResultAttribute[];
1974
+ ResultAttributes?: OpsResultAttribute[] | undefined;
1975
1975
  /**
1976
1976
  * <p>A token to start the list. Use this token to get the next set of results. </p>
1977
1977
  * @public
1978
1978
  */
1979
- NextToken?: string;
1979
+ NextToken?: string | undefined;
1980
1980
  /**
1981
1981
  * <p>The maximum number of items to return for this call. The call also returns a token that you
1982
1982
  * can specify in a subsequent call to get the next set of results.</p>
1983
1983
  * @public
1984
1984
  */
1985
- MaxResults?: number;
1985
+ MaxResults?: number | undefined;
1986
1986
  }
1987
1987
  /**
1988
1988
  * @internal