@aws-sdk/client-synthetics 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.
@@ -30,14 +30,14 @@ export interface S3EncryptionConfig {
30
30
  * </p>
31
31
  * @public
32
32
  */
33
- EncryptionMode?: EncryptionMode;
33
+ EncryptionMode?: EncryptionMode | undefined;
34
34
  /**
35
35
  * <p>The ARN of the customer-managed KMS key to use, if you specify <code>SSE-KMS</code>
36
36
  * for <code>EncryptionMode</code>
37
37
  * </p>
38
38
  * @public
39
39
  */
40
- KmsKeyArn?: string;
40
+ KmsKeyArn?: string | undefined;
41
41
  }
42
42
  /**
43
43
  * <p>A structure that contains the configuration for canary artifacts, including the
@@ -54,7 +54,7 @@ export interface ArtifactConfigInput {
54
54
  * </p>
55
55
  * @public
56
56
  */
57
- S3Encryption?: S3EncryptionConfig;
57
+ S3Encryption?: S3EncryptionConfig | undefined;
58
58
  }
59
59
  /**
60
60
  * <p>A structure that contains the configuration for canary artifacts, including
@@ -66,7 +66,7 @@ export interface ArtifactConfigOutput {
66
66
  * <p>A structure that contains the configuration of encryption settings for canary artifacts that are stored in Amazon S3. </p>
67
67
  * @public
68
68
  */
69
- S3Encryption?: S3EncryptionConfig;
69
+ S3Encryption?: S3EncryptionConfig | undefined;
70
70
  }
71
71
  /**
72
72
  * @public
@@ -96,7 +96,7 @@ export interface AssociateResourceResponse {
96
96
  export declare class ConflictException extends __BaseException {
97
97
  readonly name: "ConflictException";
98
98
  readonly $fault: "client";
99
- Message?: string;
99
+ Message?: string | undefined;
100
100
  /**
101
101
  * @internal
102
102
  */
@@ -109,7 +109,7 @@ export declare class ConflictException extends __BaseException {
109
109
  export declare class InternalServerException extends __BaseException {
110
110
  readonly name: "InternalServerException";
111
111
  readonly $fault: "server";
112
- Message?: string;
112
+ Message?: string | undefined;
113
113
  /**
114
114
  * @internal
115
115
  */
@@ -122,7 +122,7 @@ export declare class InternalServerException extends __BaseException {
122
122
  export declare class ResourceNotFoundException extends __BaseException {
123
123
  readonly name: "ResourceNotFoundException";
124
124
  readonly $fault: "client";
125
- Message?: string;
125
+ Message?: string | undefined;
126
126
  /**
127
127
  * @internal
128
128
  */
@@ -135,7 +135,7 @@ export declare class ResourceNotFoundException extends __BaseException {
135
135
  export declare class ServiceQuotaExceededException extends __BaseException {
136
136
  readonly name: "ServiceQuotaExceededException";
137
137
  readonly $fault: "client";
138
- Message?: string;
138
+ Message?: string | undefined;
139
139
  /**
140
140
  * @internal
141
141
  */
@@ -148,7 +148,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
148
148
  export declare class ValidationException extends __BaseException {
149
149
  readonly name: "ValidationException";
150
150
  readonly $fault: "client";
151
- Message?: string;
151
+ Message?: string | undefined;
152
152
  /**
153
153
  * @internal
154
154
  */
@@ -161,7 +161,7 @@ export declare class ValidationException extends __BaseException {
161
161
  export declare class BadRequestException extends __BaseException {
162
162
  readonly name: "BadRequestException";
163
163
  readonly $fault: "client";
164
- Message?: string;
164
+ Message?: string | undefined;
165
165
  /**
166
166
  * @internal
167
167
  */
@@ -187,7 +187,7 @@ export interface BaseScreenshot {
187
187
  * </p>
188
188
  * @public
189
189
  */
190
- IgnoreCoordinates?: string[];
190
+ IgnoreCoordinates?: string[] | undefined;
191
191
  }
192
192
  /**
193
193
  * <p>This structure contains information about the canary's Lambda handler and
@@ -199,12 +199,12 @@ export interface CanaryCodeOutput {
199
199
  * <p>The ARN of the Lambda layer where Synthetics stores the canary script code.</p>
200
200
  * @public
201
201
  */
202
- SourceLocationArn?: string;
202
+ SourceLocationArn?: string | undefined;
203
203
  /**
204
204
  * <p>The entry point to use for the source code when running the canary.</p>
205
205
  * @public
206
206
  */
207
- Handler?: string;
207
+ Handler?: string | undefined;
208
208
  }
209
209
  /**
210
210
  * @public
@@ -227,18 +227,18 @@ export interface CanaryRunConfigOutput {
227
227
  * <p>How long the canary is allowed to run before it must stop.</p>
228
228
  * @public
229
229
  */
230
- TimeoutInSeconds?: number;
230
+ TimeoutInSeconds?: number | undefined;
231
231
  /**
232
232
  * <p>The maximum amount of memory available to the canary while it is running, in MB. This value
233
233
  * must be a multiple of 64.</p>
234
234
  * @public
235
235
  */
236
- MemoryInMB?: number;
236
+ MemoryInMB?: number | undefined;
237
237
  /**
238
238
  * <p>Displays whether this canary run used active X-Ray tracing. </p>
239
239
  * @public
240
240
  */
241
- ActiveTracing?: boolean;
241
+ ActiveTracing?: boolean | undefined;
242
242
  }
243
243
  /**
244
244
  * <p>How long, in seconds, for the canary to continue making regular runs according to the schedule in the
@@ -263,14 +263,14 @@ export interface CanaryScheduleOutput {
263
263
  * Scheduling canary runs using cron</a>.</p>
264
264
  * @public
265
265
  */
266
- Expression?: string;
266
+ Expression?: string | undefined;
267
267
  /**
268
268
  * <p>How long, in seconds, for the canary to continue making regular runs after it
269
269
  * was created. The runs are performed according to the schedule in the
270
270
  * <code>Expression</code> value.</p>
271
271
  * @public
272
272
  */
273
- DurationInSeconds?: number;
273
+ DurationInSeconds?: number | undefined;
274
274
  }
275
275
  /**
276
276
  * @public
@@ -322,17 +322,17 @@ export interface CanaryStatus {
322
322
  * <p>The current state of the canary.</p>
323
323
  * @public
324
324
  */
325
- State?: CanaryState;
325
+ State?: CanaryState | undefined;
326
326
  /**
327
327
  * <p>If the canary has insufficient permissions to run, this field provides more details.</p>
328
328
  * @public
329
329
  */
330
- StateReason?: string;
330
+ StateReason?: string | undefined;
331
331
  /**
332
332
  * <p>If the canary cannot run or has failed, this field displays the reason.</p>
333
333
  * @public
334
334
  */
335
- StateReasonCode?: CanaryStateReasonCode;
335
+ StateReasonCode?: CanaryStateReasonCode | undefined;
336
336
  }
337
337
  /**
338
338
  * <p>This structure contains information about when the canary was created and modified.</p>
@@ -343,22 +343,22 @@ export interface CanaryTimeline {
343
343
  * <p>The date and time the canary was created.</p>
344
344
  * @public
345
345
  */
346
- Created?: Date;
346
+ Created?: Date | undefined;
347
347
  /**
348
348
  * <p>The date and time the canary was most recently modified.</p>
349
349
  * @public
350
350
  */
351
- LastModified?: Date;
351
+ LastModified?: Date | undefined;
352
352
  /**
353
353
  * <p>The date and time that the canary's most recent run started.</p>
354
354
  * @public
355
355
  */
356
- LastStarted?: Date;
356
+ LastStarted?: Date | undefined;
357
357
  /**
358
358
  * <p>The date and time that the canary's most recent run ended.</p>
359
359
  * @public
360
360
  */
361
- LastStopped?: Date;
361
+ LastStopped?: Date | undefined;
362
362
  }
363
363
  /**
364
364
  * <p>If this canary performs visual monitoring by comparing screenshots, this structure contains the ID of the canary run that is used as the baseline for screenshots, and the coordinates
@@ -371,13 +371,13 @@ export interface VisualReferenceOutput {
371
371
  * <p>An array of screenshots that are used as the baseline for comparisons during visual monitoring.</p>
372
372
  * @public
373
373
  */
374
- BaseScreenshots?: BaseScreenshot[];
374
+ BaseScreenshots?: BaseScreenshot[] | undefined;
375
375
  /**
376
376
  * <p>The ID of the canary run that produced the baseline screenshots
377
377
  * that are used for visual monitoring comparisons by this canary.</p>
378
378
  * @public
379
379
  */
380
- BaseCanaryRunId?: string;
380
+ BaseCanaryRunId?: string | undefined;
381
381
  }
382
382
  /**
383
383
  * <p>If this canary is to test an endpoint in a VPC, this structure contains
@@ -391,17 +391,17 @@ export interface VpcConfigOutput {
391
391
  * <p>The IDs of the VPC where this canary is to run.</p>
392
392
  * @public
393
393
  */
394
- VpcId?: string;
394
+ VpcId?: string | undefined;
395
395
  /**
396
396
  * <p>The IDs of the subnets where this canary is to run.</p>
397
397
  * @public
398
398
  */
399
- SubnetIds?: string[];
399
+ SubnetIds?: string[] | undefined;
400
400
  /**
401
401
  * <p>The IDs of the security groups for this canary.</p>
402
402
  * @public
403
403
  */
404
- SecurityGroupIds?: string[];
404
+ SecurityGroupIds?: string[] | undefined;
405
405
  }
406
406
  /**
407
407
  * <p>This structure contains all information about one canary in your account.</p>
@@ -412,75 +412,75 @@ export interface Canary {
412
412
  * <p>The unique ID of this canary.</p>
413
413
  * @public
414
414
  */
415
- Id?: string;
415
+ Id?: string | undefined;
416
416
  /**
417
417
  * <p>The name of the canary.</p>
418
418
  * @public
419
419
  */
420
- Name?: string;
420
+ Name?: string | undefined;
421
421
  /**
422
422
  * <p>This structure contains information about the canary's Lambda handler and
423
423
  * where its code is stored by CloudWatch Synthetics.</p>
424
424
  * @public
425
425
  */
426
- Code?: CanaryCodeOutput;
426
+ Code?: CanaryCodeOutput | undefined;
427
427
  /**
428
428
  * <p>The ARN of the IAM role used to run the canary. This role must include <code>lambda.amazonaws.com</code> as a principal in the trust
429
429
  * policy.</p>
430
430
  * @public
431
431
  */
432
- ExecutionRoleArn?: string;
432
+ ExecutionRoleArn?: string | undefined;
433
433
  /**
434
434
  * <p>A structure that contains information about how often the canary is to run, and when
435
435
  * these runs are to stop.</p>
436
436
  * @public
437
437
  */
438
- Schedule?: CanaryScheduleOutput;
438
+ Schedule?: CanaryScheduleOutput | undefined;
439
439
  /**
440
440
  * <p>A structure that contains information about a canary run.</p>
441
441
  * @public
442
442
  */
443
- RunConfig?: CanaryRunConfigOutput;
443
+ RunConfig?: CanaryRunConfigOutput | undefined;
444
444
  /**
445
445
  * <p>The number of days to retain data about successful runs of this canary.</p>
446
446
  * @public
447
447
  */
448
- SuccessRetentionPeriodInDays?: number;
448
+ SuccessRetentionPeriodInDays?: number | undefined;
449
449
  /**
450
450
  * <p>The number of days to retain data about failed runs of this canary.</p>
451
451
  * @public
452
452
  */
453
- FailureRetentionPeriodInDays?: number;
453
+ FailureRetentionPeriodInDays?: number | undefined;
454
454
  /**
455
455
  * <p>A structure that contains information about the canary's status.</p>
456
456
  * @public
457
457
  */
458
- Status?: CanaryStatus;
458
+ Status?: CanaryStatus | undefined;
459
459
  /**
460
460
  * <p>A structure that contains information about when the canary was created, modified, and
461
461
  * most recently run.</p>
462
462
  * @public
463
463
  */
464
- Timeline?: CanaryTimeline;
464
+ Timeline?: CanaryTimeline | undefined;
465
465
  /**
466
466
  * <p>The location in Amazon S3 where Synthetics stores artifacts from the runs of this
467
467
  * canary. Artifacts include the log file, screenshots, and HAR files.</p>
468
468
  * @public
469
469
  */
470
- ArtifactS3Location?: string;
470
+ ArtifactS3Location?: string | undefined;
471
471
  /**
472
472
  * <p>The ARN of the Lambda function that is used as your canary's engine. For more information
473
473
  * about Lambda ARN format, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-api-permissions-ref.html">Resources and Conditions for Lambda Actions</a>.</p>
474
474
  * @public
475
475
  */
476
- EngineArn?: string;
476
+ EngineArn?: string | undefined;
477
477
  /**
478
478
  * <p>Specifies the runtime version to use for the canary. For more information about
479
479
  * runtime versions, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_Library.html">
480
480
  * Canary Runtime Versions</a>.</p>
481
481
  * @public
482
482
  */
483
- RuntimeVersion?: string;
483
+ RuntimeVersion?: string | undefined;
484
484
  /**
485
485
  * <p>If this canary is to test an endpoint in a VPC, this structure contains
486
486
  * information about the subnets and security groups of the VPC endpoint.
@@ -488,13 +488,13 @@ export interface Canary {
488
488
  * Running a Canary in a VPC</a>.</p>
489
489
  * @public
490
490
  */
491
- VpcConfig?: VpcConfigOutput;
491
+ VpcConfig?: VpcConfigOutput | undefined;
492
492
  /**
493
493
  * <p>If this canary performs visual monitoring by comparing screenshots, this structure contains the ID of the canary run to use as the baseline for screenshots, and the coordinates
494
494
  * of any parts of the screen to ignore during the visual monitoring comparison.</p>
495
495
  * @public
496
496
  */
497
- VisualReference?: VisualReferenceOutput;
497
+ VisualReference?: VisualReferenceOutput | undefined;
498
498
  /**
499
499
  * <p>Specifies whether to also delete the Lambda functions and layers used by this canary
500
500
  * when the canary is deleted. If it is <code>AUTOMATIC</code>, the Lambda functions and layers will be deleted
@@ -504,18 +504,18 @@ export interface Canary {
504
504
  * determines whether the Lambda functions and layers will be deleted.</p>
505
505
  * @public
506
506
  */
507
- ProvisionedResourceCleanup?: ProvisionedResourceCleanupSetting;
507
+ ProvisionedResourceCleanup?: ProvisionedResourceCleanupSetting | undefined;
508
508
  /**
509
509
  * <p>The list of key-value pairs that are associated with the canary.</p>
510
510
  * @public
511
511
  */
512
- Tags?: Record<string, string>;
512
+ Tags?: Record<string, string> | undefined;
513
513
  /**
514
514
  * <p>A structure that contains the configuration for canary artifacts, including
515
515
  * the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3.</p>
516
516
  * @public
517
517
  */
518
- ArtifactConfig?: ArtifactConfigOutput;
518
+ ArtifactConfig?: ArtifactConfigOutput | undefined;
519
519
  }
520
520
  /**
521
521
  * @public
@@ -551,19 +551,19 @@ export interface CanaryRunStatus {
551
551
  * <p>The current state of the run.</p>
552
552
  * @public
553
553
  */
554
- State?: CanaryRunState;
554
+ State?: CanaryRunState | undefined;
555
555
  /**
556
556
  * <p>If run of the canary failed, this field contains the reason for the error.</p>
557
557
  * @public
558
558
  */
559
- StateReason?: string;
559
+ StateReason?: string | undefined;
560
560
  /**
561
561
  * <p>If this value is <code>CANARY_FAILURE</code>, an exception occurred in the
562
562
  * canary code. If this value is <code>EXECUTION_FAILURE</code>, an exception occurred in
563
563
  * CloudWatch Synthetics.</p>
564
564
  * @public
565
565
  */
566
- StateReasonCode?: CanaryRunStateReasonCode;
566
+ StateReasonCode?: CanaryRunStateReasonCode | undefined;
567
567
  }
568
568
  /**
569
569
  * <p>This structure contains the start and end times of a single canary run.</p>
@@ -574,12 +574,12 @@ export interface CanaryRunTimeline {
574
574
  * <p>The start time of the run.</p>
575
575
  * @public
576
576
  */
577
- Started?: Date;
577
+ Started?: Date | undefined;
578
578
  /**
579
579
  * <p>The end time of the run.</p>
580
580
  * @public
581
581
  */
582
- Completed?: Date;
582
+ Completed?: Date | undefined;
583
583
  }
584
584
  /**
585
585
  * <p>This structure contains the details about one run of one canary.</p>
@@ -590,28 +590,28 @@ export interface CanaryRun {
590
590
  * <p>A unique ID that identifies this canary run.</p>
591
591
  * @public
592
592
  */
593
- Id?: string;
593
+ Id?: string | undefined;
594
594
  /**
595
595
  * <p>The name of the canary.</p>
596
596
  * @public
597
597
  */
598
- Name?: string;
598
+ Name?: string | undefined;
599
599
  /**
600
600
  * <p>The status of this run.</p>
601
601
  * @public
602
602
  */
603
- Status?: CanaryRunStatus;
603
+ Status?: CanaryRunStatus | undefined;
604
604
  /**
605
605
  * <p>A structure that contains the start and end times of this run.</p>
606
606
  * @public
607
607
  */
608
- Timeline?: CanaryRunTimeline;
608
+ Timeline?: CanaryRunTimeline | undefined;
609
609
  /**
610
610
  * <p>The location where the canary stored artifacts from the run. Artifacts include
611
611
  * the log file, screenshots, and HAR files.</p>
612
612
  * @public
613
613
  */
614
- ArtifactS3Location?: string;
614
+ ArtifactS3Location?: string | undefined;
615
615
  }
616
616
  /**
617
617
  * <p>This structure contains information about the most recent run of a single canary.</p>
@@ -622,12 +622,12 @@ export interface CanaryLastRun {
622
622
  * <p>The name of the canary.</p>
623
623
  * @public
624
624
  */
625
- CanaryName?: string;
625
+ CanaryName?: string | undefined;
626
626
  /**
627
627
  * <p>The results from this canary's most recent run.</p>
628
628
  * @public
629
629
  */
630
- LastRun?: CanaryRun;
630
+ LastRun?: CanaryRun | undefined;
631
631
  }
632
632
  /**
633
633
  * <p>Use this structure to input your script code for the canary. This structure contains the
@@ -660,17 +660,17 @@ export interface CanaryCodeInput {
660
660
  * start of the bucket name.</p>
661
661
  * @public
662
662
  */
663
- S3Bucket?: string;
663
+ S3Bucket?: string | undefined;
664
664
  /**
665
665
  * <p>The S3 key of your script. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingObjects.html">Working with Amazon S3 Objects</a>.</p>
666
666
  * @public
667
667
  */
668
- S3Key?: string;
668
+ S3Key?: string | undefined;
669
669
  /**
670
670
  * <p>The S3 version ID of your script.</p>
671
671
  * @public
672
672
  */
673
- S3Version?: string;
673
+ S3Version?: string | undefined;
674
674
  /**
675
675
  * <p>If you input your canary script directly into the canary instead of referring to an S3
676
676
  * location, the value of this parameter is the base64-encoded contents of the .zip file that
@@ -679,7 +679,7 @@ export interface CanaryCodeInput {
679
679
  * directly with this parameter.</p>
680
680
  * @public
681
681
  */
682
- ZipFile?: Uint8Array;
682
+ ZipFile?: Uint8Array | undefined;
683
683
  /**
684
684
  * <p>The entry point to use for the source code when running the canary. For canaries that use the
685
685
  * <code>syn-python-selenium-1.0</code> runtime
@@ -710,12 +710,12 @@ export interface CanaryRunConfigInput {
710
710
  * frequency of the canary is used as this value, up to a maximum of 14 minutes.</p>
711
711
  * @public
712
712
  */
713
- TimeoutInSeconds?: number;
713
+ TimeoutInSeconds?: number | undefined;
714
714
  /**
715
715
  * <p>The maximum amount of memory available to the canary while it is running, in MB. This value must be a multiple of 64.</p>
716
716
  * @public
717
717
  */
718
- MemoryInMB?: number;
718
+ MemoryInMB?: number | undefined;
719
719
  /**
720
720
  * <p>Specifies whether this canary is to use active X-Ray tracing when it runs. Active tracing
721
721
  * enables
@@ -727,7 +727,7 @@ export interface CanaryRunConfigInput {
727
727
  * or later for their canary runtime.</p>
728
728
  * @public
729
729
  */
730
- ActiveTracing?: boolean;
730
+ ActiveTracing?: boolean | undefined;
731
731
  /**
732
732
  * <p>Specifies the keys and values to use for any environment variables
733
733
  * used in the canary script. Use the following format:</p>
@@ -743,7 +743,7 @@ export interface CanaryRunConfigInput {
743
743
  * </important>
744
744
  * @public
745
745
  */
746
- EnvironmentVariables?: Record<string, string>;
746
+ EnvironmentVariables?: Record<string, string> | undefined;
747
747
  }
748
748
  /**
749
749
  * <p>This structure specifies how often a canary is to make runs and the date and time
@@ -775,7 +775,7 @@ export interface CanaryScheduleInput {
775
775
  * making runs until you stop it. If you omit this field, the default of 0 is used.</p>
776
776
  * @public
777
777
  */
778
- DurationInSeconds?: number;
778
+ DurationInSeconds?: number | undefined;
779
779
  }
780
780
  /**
781
781
  * @public
@@ -800,12 +800,12 @@ export interface VpcConfigInput {
800
800
  * <p>The IDs of the subnets where this canary is to run.</p>
801
801
  * @public
802
802
  */
803
- SubnetIds?: string[];
803
+ SubnetIds?: string[] | undefined;
804
804
  /**
805
805
  * <p>The IDs of the security groups for this canary.</p>
806
806
  * @public
807
807
  */
808
- SecurityGroupIds?: string[];
808
+ SecurityGroupIds?: string[] | undefined;
809
809
  }
810
810
  /**
811
811
  * @public
@@ -895,19 +895,19 @@ export interface CreateCanaryRequest {
895
895
  * </important>
896
896
  * @public
897
897
  */
898
- RunConfig?: CanaryRunConfigInput;
898
+ RunConfig?: CanaryRunConfigInput | undefined;
899
899
  /**
900
900
  * <p>The number of days to retain data about successful runs of this canary. If you omit
901
901
  * this field, the default of 31 days is used. The valid range is 1 to 455 days.</p>
902
902
  * @public
903
903
  */
904
- SuccessRetentionPeriodInDays?: number;
904
+ SuccessRetentionPeriodInDays?: number | undefined;
905
905
  /**
906
906
  * <p>The number of days to retain data about failed runs of this canary. If you omit
907
907
  * this field, the default of 31 days is used. The valid range is 1 to 455 days.</p>
908
908
  * @public
909
909
  */
910
- FailureRetentionPeriodInDays?: number;
910
+ FailureRetentionPeriodInDays?: number | undefined;
911
911
  /**
912
912
  * <p>Specifies the runtime version to use for the canary. For a list of valid
913
913
  * runtime versions and more information about
@@ -923,7 +923,7 @@ export interface CreateCanaryRequest {
923
923
  * Running a Canary in a VPC</a>.</p>
924
924
  * @public
925
925
  */
926
- VpcConfig?: VpcConfigInput;
926
+ VpcConfig?: VpcConfigInput | undefined;
927
927
  /**
928
928
  * <p>To have the tags that you apply to this canary also be applied to the Lambda function that
929
929
  * the canary uses, specify this parameter with the value <code>lambda-function</code>.</p>
@@ -931,7 +931,7 @@ export interface CreateCanaryRequest {
931
931
  * parameter, the canary creation fails.</p>
932
932
  * @public
933
933
  */
934
- ResourcesToReplicateTags?: ResourceToTag[];
934
+ ResourcesToReplicateTags?: ResourceToTag[] | undefined;
935
935
  /**
936
936
  * <p>Specifies whether to also delete the Lambda functions and layers used by this canary
937
937
  * when the canary is deleted. If you omit this parameter, the default of <code>AUTOMATIC</code> is used, which means
@@ -941,7 +941,7 @@ export interface CreateCanaryRequest {
941
941
  * determines whether the Lambda functions and layers will be deleted.</p>
942
942
  * @public
943
943
  */
944
- ProvisionedResourceCleanup?: ProvisionedResourceCleanupSetting;
944
+ ProvisionedResourceCleanup?: ProvisionedResourceCleanupSetting | undefined;
945
945
  /**
946
946
  * <p>A list of key-value pairs to associate with the canary.
947
947
  * You can associate as many as 50 tags with a canary.</p>
@@ -953,13 +953,13 @@ export interface CreateCanaryRequest {
953
953
  * the canary uses, specify this parameter with the value <code>lambda-function</code>.</p>
954
954
  * @public
955
955
  */
956
- Tags?: Record<string, string>;
956
+ Tags?: Record<string, string> | undefined;
957
957
  /**
958
958
  * <p>A structure that contains the configuration for canary artifacts, including
959
959
  * the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3.</p>
960
960
  * @public
961
961
  */
962
- ArtifactConfig?: ArtifactConfigInput;
962
+ ArtifactConfig?: ArtifactConfigInput | undefined;
963
963
  }
964
964
  /**
965
965
  * @public
@@ -969,7 +969,7 @@ export interface CreateCanaryResponse {
969
969
  * <p>The full details about the canary you have created.</p>
970
970
  * @public
971
971
  */
972
- Canary?: Canary;
972
+ Canary?: Canary | undefined;
973
973
  }
974
974
  /**
975
975
  * <p>One of the input resources is larger than is allowed.</p>
@@ -978,7 +978,7 @@ export interface CreateCanaryResponse {
978
978
  export declare class RequestEntityTooLargeException extends __BaseException {
979
979
  readonly name: "RequestEntityTooLargeException";
980
980
  readonly $fault: "client";
981
- Message?: string;
981
+ Message?: string | undefined;
982
982
  /**
983
983
  * @internal
984
984
  */
@@ -1003,7 +1003,7 @@ export interface CreateGroupRequest {
1003
1003
  * certain tag values.</p>
1004
1004
  * @public
1005
1005
  */
1006
- Tags?: Record<string, string>;
1006
+ Tags?: Record<string, string> | undefined;
1007
1007
  }
1008
1008
  /**
1009
1009
  * <p>This structure contains information about one group.</p>
@@ -1014,32 +1014,32 @@ export interface Group {
1014
1014
  * <p>The unique ID of the group.</p>
1015
1015
  * @public
1016
1016
  */
1017
- Id?: string;
1017
+ Id?: string | undefined;
1018
1018
  /**
1019
1019
  * <p>The name of the group.</p>
1020
1020
  * @public
1021
1021
  */
1022
- Name?: string;
1022
+ Name?: string | undefined;
1023
1023
  /**
1024
1024
  * <p>The ARN of the group.</p>
1025
1025
  * @public
1026
1026
  */
1027
- Arn?: string;
1027
+ Arn?: string | undefined;
1028
1028
  /**
1029
1029
  * <p>The list of key-value pairs that are associated with the canary.</p>
1030
1030
  * @public
1031
1031
  */
1032
- Tags?: Record<string, string>;
1032
+ Tags?: Record<string, string> | undefined;
1033
1033
  /**
1034
1034
  * <p>The date and time that the group was created.</p>
1035
1035
  * @public
1036
1036
  */
1037
- CreatedTime?: Date;
1037
+ CreatedTime?: Date | undefined;
1038
1038
  /**
1039
1039
  * <p>The date and time that the group was most recently updated.</p>
1040
1040
  * @public
1041
1041
  */
1042
- LastModifiedTime?: Date;
1042
+ LastModifiedTime?: Date | undefined;
1043
1043
  }
1044
1044
  /**
1045
1045
  * @public
@@ -1049,7 +1049,7 @@ export interface CreateGroupResponse {
1049
1049
  * <p>A structure that contains information about the group that was just created.</p>
1050
1050
  * @public
1051
1051
  */
1052
- Group?: Group;
1052
+ Group?: Group | undefined;
1053
1053
  }
1054
1054
  /**
1055
1055
  * @public
@@ -1069,7 +1069,7 @@ export interface DeleteCanaryRequest {
1069
1069
  * <p>Type: Boolean</p>
1070
1070
  * @public
1071
1071
  */
1072
- DeleteLambda?: boolean;
1072
+ DeleteLambda?: boolean | undefined;
1073
1073
  }
1074
1074
  /**
1075
1075
  * @public
@@ -1102,13 +1102,13 @@ export interface DescribeCanariesRequest {
1102
1102
  * set of results.</p>
1103
1103
  * @public
1104
1104
  */
1105
- NextToken?: string;
1105
+ NextToken?: string | undefined;
1106
1106
  /**
1107
1107
  * <p>Specify this parameter to limit how many canaries are returned each time you use
1108
1108
  * the <code>DescribeCanaries</code> operation. If you omit this parameter, the default of 20 is used.</p>
1109
1109
  * @public
1110
1110
  */
1111
- MaxResults?: number;
1111
+ MaxResults?: number | undefined;
1112
1112
  /**
1113
1113
  * <p>Use this parameter to return only canaries that match the names that you specify here. You can
1114
1114
  * specify as many as five canary names.</p>
@@ -1121,7 +1121,7 @@ export interface DescribeCanariesRequest {
1121
1121
  * Limiting a user to viewing specific canaries</a>.</p>
1122
1122
  * @public
1123
1123
  */
1124
- Names?: string[];
1124
+ Names?: string[] | undefined;
1125
1125
  }
1126
1126
  /**
1127
1127
  * @public
@@ -1132,14 +1132,14 @@ export interface DescribeCanariesResponse {
1132
1132
  * one canary.</p>
1133
1133
  * @public
1134
1134
  */
1135
- Canaries?: Canary[];
1135
+ Canaries?: Canary[] | undefined;
1136
1136
  /**
1137
1137
  * <p>A token that indicates that there is more data
1138
1138
  * available. You can use this token in a subsequent <code>DescribeCanaries</code> operation to retrieve the next
1139
1139
  * set of results.</p>
1140
1140
  * @public
1141
1141
  */
1142
- NextToken?: string;
1142
+ NextToken?: string | undefined;
1143
1143
  }
1144
1144
  /**
1145
1145
  * @public
@@ -1151,13 +1151,13 @@ export interface DescribeCanariesLastRunRequest {
1151
1151
  * set of results.</p>
1152
1152
  * @public
1153
1153
  */
1154
- NextToken?: string;
1154
+ NextToken?: string | undefined;
1155
1155
  /**
1156
1156
  * <p>Specify this parameter to limit how many runs are returned each time you use
1157
1157
  * the <code>DescribeLastRun</code> operation. If you omit this parameter, the default of 100 is used.</p>
1158
1158
  * @public
1159
1159
  */
1160
- MaxResults?: number;
1160
+ MaxResults?: number | undefined;
1161
1161
  /**
1162
1162
  * <p>Use this parameter to return only canaries that match the names that you specify here. You can
1163
1163
  * specify as many as five canary names.</p>
@@ -1170,7 +1170,7 @@ export interface DescribeCanariesLastRunRequest {
1170
1170
  * Limiting a user to viewing specific canaries</a>.</p>
1171
1171
  * @public
1172
1172
  */
1173
- Names?: string[];
1173
+ Names?: string[] | undefined;
1174
1174
  }
1175
1175
  /**
1176
1176
  * @public
@@ -1181,14 +1181,14 @@ export interface DescribeCanariesLastRunResponse {
1181
1181
  * canary.</p>
1182
1182
  * @public
1183
1183
  */
1184
- CanariesLastRun?: CanaryLastRun[];
1184
+ CanariesLastRun?: CanaryLastRun[] | undefined;
1185
1185
  /**
1186
1186
  * <p>A token that indicates that there is more data
1187
1187
  * available. You can use this token in a subsequent <code>DescribeCanariesLastRun</code> operation to retrieve the next
1188
1188
  * set of results.</p>
1189
1189
  * @public
1190
1190
  */
1191
- NextToken?: string;
1191
+ NextToken?: string | undefined;
1192
1192
  }
1193
1193
  /**
1194
1194
  * @public
@@ -1200,13 +1200,13 @@ export interface DescribeRuntimeVersionsRequest {
1200
1200
  * set of results.</p>
1201
1201
  * @public
1202
1202
  */
1203
- NextToken?: string;
1203
+ NextToken?: string | undefined;
1204
1204
  /**
1205
1205
  * <p>Specify this parameter to limit how many runs are returned each time you use
1206
1206
  * the <code>DescribeRuntimeVersions</code> operation. If you omit this parameter, the default of 100 is used.</p>
1207
1207
  * @public
1208
1208
  */
1209
- MaxResults?: number;
1209
+ MaxResults?: number | undefined;
1210
1210
  }
1211
1211
  /**
1212
1212
  * <p>This structure contains information about one canary runtime version. For more information about
@@ -1221,22 +1221,22 @@ export interface RuntimeVersion {
1221
1221
  * Canary Runtime Versions</a>.</p>
1222
1222
  * @public
1223
1223
  */
1224
- VersionName?: string;
1224
+ VersionName?: string | undefined;
1225
1225
  /**
1226
1226
  * <p>A description of the runtime version, created by Amazon.</p>
1227
1227
  * @public
1228
1228
  */
1229
- Description?: string;
1229
+ Description?: string | undefined;
1230
1230
  /**
1231
1231
  * <p>The date that the runtime version was released.</p>
1232
1232
  * @public
1233
1233
  */
1234
- ReleaseDate?: Date;
1234
+ ReleaseDate?: Date | undefined;
1235
1235
  /**
1236
1236
  * <p>If this runtime version is deprecated, this value is the date of deprecation.</p>
1237
1237
  * @public
1238
1238
  */
1239
- DeprecationDate?: Date;
1239
+ DeprecationDate?: Date | undefined;
1240
1240
  }
1241
1241
  /**
1242
1242
  * @public
@@ -1247,14 +1247,14 @@ export interface DescribeRuntimeVersionsResponse {
1247
1247
  * version.</p>
1248
1248
  * @public
1249
1249
  */
1250
- RuntimeVersions?: RuntimeVersion[];
1250
+ RuntimeVersions?: RuntimeVersion[] | undefined;
1251
1251
  /**
1252
1252
  * <p>A token that indicates that there is more data
1253
1253
  * available. You can use this token in a subsequent <code>DescribeRuntimeVersions</code> operation to retrieve the next
1254
1254
  * set of results.</p>
1255
1255
  * @public
1256
1256
  */
1257
- NextToken?: string;
1257
+ NextToken?: string | undefined;
1258
1258
  }
1259
1259
  /**
1260
1260
  * @public
@@ -1295,7 +1295,7 @@ export interface GetCanaryResponse {
1295
1295
  * <p>A structure that contains the full information about the canary.</p>
1296
1296
  * @public
1297
1297
  */
1298
- Canary?: Canary;
1298
+ Canary?: Canary | undefined;
1299
1299
  }
1300
1300
  /**
1301
1301
  * @public
@@ -1312,13 +1312,13 @@ export interface GetCanaryRunsRequest {
1312
1312
  * set of results.</p>
1313
1313
  * @public
1314
1314
  */
1315
- NextToken?: string;
1315
+ NextToken?: string | undefined;
1316
1316
  /**
1317
1317
  * <p>Specify this parameter to limit how many runs are returned each time you use
1318
1318
  * the <code>GetCanaryRuns</code> operation. If you omit this parameter, the default of 100 is used.</p>
1319
1319
  * @public
1320
1320
  */
1321
- MaxResults?: number;
1321
+ MaxResults?: number | undefined;
1322
1322
  }
1323
1323
  /**
1324
1324
  * @public
@@ -1329,7 +1329,7 @@ export interface GetCanaryRunsResponse {
1329
1329
  * retrieved canary runs.</p>
1330
1330
  * @public
1331
1331
  */
1332
- CanaryRuns?: CanaryRun[];
1332
+ CanaryRuns?: CanaryRun[] | undefined;
1333
1333
  /**
1334
1334
  * <p>A token that indicates that there is more data
1335
1335
  * available. You can use this token in a subsequent <code>GetCanaryRuns</code>
@@ -1337,7 +1337,7 @@ export interface GetCanaryRunsResponse {
1337
1337
  * set of results.</p>
1338
1338
  * @public
1339
1339
  */
1340
- NextToken?: string;
1340
+ NextToken?: string | undefined;
1341
1341
  }
1342
1342
  /**
1343
1343
  * @public
@@ -1358,7 +1358,7 @@ export interface GetGroupResponse {
1358
1358
  * <p>A structure that contains information about the group.</p>
1359
1359
  * @public
1360
1360
  */
1361
- Group?: Group;
1361
+ Group?: Group | undefined;
1362
1362
  }
1363
1363
  /**
1364
1364
  * <p>A structure containing some information about a group.</p>
@@ -1369,17 +1369,17 @@ export interface GroupSummary {
1369
1369
  * <p>The unique ID of the group.</p>
1370
1370
  * @public
1371
1371
  */
1372
- Id?: string;
1372
+ Id?: string | undefined;
1373
1373
  /**
1374
1374
  * <p>The name of the group.</p>
1375
1375
  * @public
1376
1376
  */
1377
- Name?: string;
1377
+ Name?: string | undefined;
1378
1378
  /**
1379
1379
  * <p>The ARN of the group.</p>
1380
1380
  * @public
1381
1381
  */
1382
- Arn?: string;
1382
+ Arn?: string | undefined;
1383
1383
  }
1384
1384
  /**
1385
1385
  * <p>An internal failure occurred. Try the operation again.</p>
@@ -1388,7 +1388,7 @@ export interface GroupSummary {
1388
1388
  export declare class InternalFailureException extends __BaseException {
1389
1389
  readonly name: "InternalFailureException";
1390
1390
  readonly $fault: "server";
1391
- Message?: string;
1391
+ Message?: string | undefined;
1392
1392
  /**
1393
1393
  * @internal
1394
1394
  */
@@ -1404,13 +1404,13 @@ export interface ListAssociatedGroupsRequest {
1404
1404
  * set of results.</p>
1405
1405
  * @public
1406
1406
  */
1407
- NextToken?: string;
1407
+ NextToken?: string | undefined;
1408
1408
  /**
1409
1409
  * <p>Specify this parameter to limit how many groups are returned each time you use
1410
1410
  * the <code>ListAssociatedGroups</code> operation. If you omit this parameter, the default of 20 is used.</p>
1411
1411
  * @public
1412
1412
  */
1413
- MaxResults?: number;
1413
+ MaxResults?: number | undefined;
1414
1414
  /**
1415
1415
  * <p>The ARN of the canary that you want to view groups for.</p>
1416
1416
  * @public
@@ -1425,14 +1425,14 @@ export interface ListAssociatedGroupsResponse {
1425
1425
  * <p>An array of structures that contain information about the groups that this canary is associated with.</p>
1426
1426
  * @public
1427
1427
  */
1428
- Groups?: GroupSummary[];
1428
+ Groups?: GroupSummary[] | undefined;
1429
1429
  /**
1430
1430
  * <p>A token that indicates that there is more data
1431
1431
  * available. You can use this token in a subsequent <code>ListAssociatedGroups</code> operation to retrieve the next
1432
1432
  * set of results.</p>
1433
1433
  * @public
1434
1434
  */
1435
- NextToken?: string;
1435
+ NextToken?: string | undefined;
1436
1436
  }
1437
1437
  /**
1438
1438
  * @public
@@ -1444,13 +1444,13 @@ export interface ListGroupResourcesRequest {
1444
1444
  * set of results.</p>
1445
1445
  * @public
1446
1446
  */
1447
- NextToken?: string;
1447
+ NextToken?: string | undefined;
1448
1448
  /**
1449
1449
  * <p>Specify this parameter to limit how many canary ARNs are returned each time you use
1450
1450
  * the <code>ListGroupResources</code> operation. If you omit this parameter, the default of 20 is used.</p>
1451
1451
  * @public
1452
1452
  */
1453
- MaxResults?: number;
1453
+ MaxResults?: number | undefined;
1454
1454
  /**
1455
1455
  * <p>Specifies the group to return information for. You can specify the group name, the ARN, or the
1456
1456
  * group ID as the <code>GroupIdentifier</code>.</p>
@@ -1466,14 +1466,14 @@ export interface ListGroupResourcesResponse {
1466
1466
  * <p>An array of ARNs. These ARNs are for the canaries that are associated with the group.</p>
1467
1467
  * @public
1468
1468
  */
1469
- Resources?: string[];
1469
+ Resources?: string[] | undefined;
1470
1470
  /**
1471
1471
  * <p>A token that indicates that there is more data
1472
1472
  * available. You can use this token in a subsequent <code>ListGroupResources</code> operation to retrieve the next
1473
1473
  * set of results.</p>
1474
1474
  * @public
1475
1475
  */
1476
- NextToken?: string;
1476
+ NextToken?: string | undefined;
1477
1477
  }
1478
1478
  /**
1479
1479
  * @public
@@ -1485,13 +1485,13 @@ export interface ListGroupsRequest {
1485
1485
  * set of results.</p>
1486
1486
  * @public
1487
1487
  */
1488
- NextToken?: string;
1488
+ NextToken?: string | undefined;
1489
1489
  /**
1490
1490
  * <p>Specify this parameter to limit how many groups are returned each time you use
1491
1491
  * the <code>ListGroups</code> operation. If you omit this parameter, the default of 20 is used.</p>
1492
1492
  * @public
1493
1493
  */
1494
- MaxResults?: number;
1494
+ MaxResults?: number | undefined;
1495
1495
  }
1496
1496
  /**
1497
1497
  * @public
@@ -1501,14 +1501,14 @@ export interface ListGroupsResponse {
1501
1501
  * <p>An array of structures that each contain information about one group.</p>
1502
1502
  * @public
1503
1503
  */
1504
- Groups?: GroupSummary[];
1504
+ Groups?: GroupSummary[] | undefined;
1505
1505
  /**
1506
1506
  * <p>A token that indicates that there is more data
1507
1507
  * available. You can use this token in a subsequent <code>ListGroups</code> operation to retrieve the next
1508
1508
  * set of results.</p>
1509
1509
  * @public
1510
1510
  */
1511
- NextToken?: string;
1511
+ NextToken?: string | undefined;
1512
1512
  }
1513
1513
  /**
1514
1514
  * @public
@@ -1535,7 +1535,7 @@ export interface ListTagsForResourceResponse {
1535
1535
  * <p>The list of tag keys and values associated with the resource that you specified.</p>
1536
1536
  * @public
1537
1537
  */
1538
- Tags?: Record<string, string>;
1538
+ Tags?: Record<string, string> | undefined;
1539
1539
  }
1540
1540
  /**
1541
1541
  * <p>The specified resource was not found.</p>
@@ -1544,7 +1544,7 @@ export interface ListTagsForResourceResponse {
1544
1544
  export declare class NotFoundException extends __BaseException {
1545
1545
  readonly name: "NotFoundException";
1546
1546
  readonly $fault: "client";
1547
- Message?: string;
1547
+ Message?: string | undefined;
1548
1548
  /**
1549
1549
  * @internal
1550
1550
  */
@@ -1557,7 +1557,7 @@ export declare class NotFoundException extends __BaseException {
1557
1557
  export declare class TooManyRequestsException extends __BaseException {
1558
1558
  readonly name: "TooManyRequestsException";
1559
1559
  readonly $fault: "client";
1560
- Message?: string;
1560
+ Message?: string | undefined;
1561
1561
  /**
1562
1562
  * @internal
1563
1563
  */
@@ -1665,7 +1665,7 @@ export interface VisualReferenceInput {
1665
1665
  * visual monitoring, remove it from this array.</p>
1666
1666
  * @public
1667
1667
  */
1668
- BaseScreenshots?: BaseScreenshot[];
1668
+ BaseScreenshots?: BaseScreenshot[] | undefined;
1669
1669
  /**
1670
1670
  * <p>Specifies which canary run to use the screenshots from as the baseline for future visual monitoring with this canary. Valid values are
1671
1671
  * <code>nextrun</code> to use the screenshots from the next run after this update is made, <code>lastrun</code> to use the screenshots from the most recent run
@@ -1693,7 +1693,7 @@ export interface UpdateCanaryRequest {
1693
1693
  * </p>
1694
1694
  * @public
1695
1695
  */
1696
- Code?: CanaryCodeInput;
1696
+ Code?: CanaryCodeInput | undefined;
1697
1697
  /**
1698
1698
  * <p>The ARN of the IAM role to be used to run the canary. This role must already exist,
1699
1699
  * and must include <code>lambda.amazonaws.com</code> as a principal in the trust
@@ -1737,7 +1737,7 @@ export interface UpdateCanaryRequest {
1737
1737
  * </ul>
1738
1738
  * @public
1739
1739
  */
1740
- ExecutionRoleArn?: string;
1740
+ ExecutionRoleArn?: string | undefined;
1741
1741
  /**
1742
1742
  * <p>Specifies the runtime version to use for the canary.
1743
1743
  * For a list of valid runtime versions and for more information about
@@ -1745,13 +1745,13 @@ export interface UpdateCanaryRequest {
1745
1745
  * Canary Runtime Versions</a>.</p>
1746
1746
  * @public
1747
1747
  */
1748
- RuntimeVersion?: string;
1748
+ RuntimeVersion?: string | undefined;
1749
1749
  /**
1750
1750
  * <p>A structure that contains information about how often the canary is to run, and when
1751
1751
  * these runs are to stop.</p>
1752
1752
  * @public
1753
1753
  */
1754
- Schedule?: CanaryScheduleInput;
1754
+ Schedule?: CanaryScheduleInput | undefined;
1755
1755
  /**
1756
1756
  * <p>A structure that contains the timeout value that is used for each individual run of the
1757
1757
  * canary.</p>
@@ -1761,17 +1761,17 @@ export interface UpdateCanaryRequest {
1761
1761
  * </important>
1762
1762
  * @public
1763
1763
  */
1764
- RunConfig?: CanaryRunConfigInput;
1764
+ RunConfig?: CanaryRunConfigInput | undefined;
1765
1765
  /**
1766
1766
  * <p>The number of days to retain data about successful runs of this canary.</p>
1767
1767
  * @public
1768
1768
  */
1769
- SuccessRetentionPeriodInDays?: number;
1769
+ SuccessRetentionPeriodInDays?: number | undefined;
1770
1770
  /**
1771
1771
  * <p>The number of days to retain data about failed runs of this canary.</p>
1772
1772
  * @public
1773
1773
  */
1774
- FailureRetentionPeriodInDays?: number;
1774
+ FailureRetentionPeriodInDays?: number | undefined;
1775
1775
  /**
1776
1776
  * <p>If this canary is to test an endpoint in a VPC, this structure contains
1777
1777
  * information about the subnet and security groups of the VPC endpoint.
@@ -1779,7 +1779,7 @@ export interface UpdateCanaryRequest {
1779
1779
  * Running a Canary in a VPC</a>.</p>
1780
1780
  * @public
1781
1781
  */
1782
- VpcConfig?: VpcConfigInput;
1782
+ VpcConfig?: VpcConfigInput | undefined;
1783
1783
  /**
1784
1784
  * <p>Defines the screenshots to use as the baseline for comparisons during visual monitoring comparisons during future runs of this canary. If you omit this
1785
1785
  * parameter, no changes are made to any baseline screenshots that the canary might be using already.</p>
@@ -1790,21 +1790,21 @@ export interface UpdateCanaryRequest {
1790
1790
  * </p>
1791
1791
  * @public
1792
1792
  */
1793
- VisualReference?: VisualReferenceInput;
1793
+ VisualReference?: VisualReferenceInput | undefined;
1794
1794
  /**
1795
1795
  * <p>The location in Amazon S3 where Synthetics stores artifacts from the test runs of this canary.
1796
1796
  * Artifacts include the log file, screenshots, and HAR files. The name of the
1797
1797
  * S3 bucket can't include a period (.).</p>
1798
1798
  * @public
1799
1799
  */
1800
- ArtifactS3Location?: string;
1800
+ ArtifactS3Location?: string | undefined;
1801
1801
  /**
1802
1802
  * <p>A structure that contains the configuration for canary artifacts,
1803
1803
  * including the encryption-at-rest settings for artifacts that
1804
1804
  * the canary uploads to Amazon S3.</p>
1805
1805
  * @public
1806
1806
  */
1807
- ArtifactConfig?: ArtifactConfigInput;
1807
+ ArtifactConfig?: ArtifactConfigInput | undefined;
1808
1808
  /**
1809
1809
  * <p>Specifies whether to also delete the Lambda functions and layers used by this canary
1810
1810
  * when the canary is deleted.</p>
@@ -1813,7 +1813,7 @@ export interface UpdateCanaryRequest {
1813
1813
  * determines whether the Lambda functions and layers will be deleted.</p>
1814
1814
  * @public
1815
1815
  */
1816
- ProvisionedResourceCleanup?: ProvisionedResourceCleanupSetting;
1816
+ ProvisionedResourceCleanup?: ProvisionedResourceCleanupSetting | undefined;
1817
1817
  }
1818
1818
  /**
1819
1819
  * @public