@aws-sdk/client-route53-recovery-readiness 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.
@@ -29,7 +29,7 @@ export interface CellOutput {
29
29
  * <p>Tags on the resources.</p>
30
30
  * @public
31
31
  */
32
- Tags?: Record<string, string>;
32
+ Tags?: Record<string, string> | undefined;
33
33
  }
34
34
  /**
35
35
  * <p>Readiness rule information, including the resource type, rule ID, and rule description.</p>
@@ -61,7 +61,7 @@ export interface Message {
61
61
  * <p>The text of a readiness check message.</p>
62
62
  * @public
63
63
  */
64
- MessageText?: string;
64
+ MessageText?: string | undefined;
65
65
  }
66
66
  /**
67
67
  * <p>A readiness check.</p>
@@ -77,7 +77,7 @@ export interface ReadinessCheckOutput {
77
77
  * <p>Name of a readiness check.</p>
78
78
  * @public
79
79
  */
80
- ReadinessCheckName?: string;
80
+ ReadinessCheckName?: string | undefined;
81
81
  /**
82
82
  * <p>Name of the resource set to be checked.</p>
83
83
  * @public
@@ -87,7 +87,7 @@ export interface ReadinessCheckOutput {
87
87
  * <p>A collection of tags associated with a resource.</p>
88
88
  * @public
89
89
  */
90
- Tags?: Record<string, string>;
90
+ Tags?: Record<string, string> | undefined;
91
91
  }
92
92
  /**
93
93
  * @public
@@ -112,12 +112,12 @@ export interface ReadinessCheckSummary {
112
112
  * <p>The readiness status of this readiness check.</p>
113
113
  * @public
114
114
  */
115
- Readiness?: Readiness;
115
+ Readiness?: Readiness | undefined;
116
116
  /**
117
117
  * <p>The name of a readiness check.</p>
118
118
  * @public
119
119
  */
120
- ReadinessCheckName?: string;
120
+ ReadinessCheckName?: string | undefined;
121
121
  }
122
122
  /**
123
123
  * <p>Recommendations that are provided to make an application more recovery resilient.</p>
@@ -154,7 +154,7 @@ export interface RecoveryGroupOutput {
154
154
  * <p>The tags associated with the recovery group.</p>
155
155
  * @public
156
156
  */
157
- Tags?: Record<string, string>;
157
+ Tags?: Record<string, string> | undefined;
158
158
  }
159
159
  /**
160
160
  * <p>The Network Load Balancer resource that a DNS target resource points to.</p>
@@ -165,7 +165,7 @@ export interface NLBResource {
165
165
  * <p>The Network Load Balancer resource Amazon Resource Name (ARN).</p>
166
166
  * @public
167
167
  */
168
- Arn?: string;
168
+ Arn?: string | undefined;
169
169
  }
170
170
  /**
171
171
  * <p>The Route 53 resource that a DNS target resource record points to.</p>
@@ -176,12 +176,12 @@ export interface R53ResourceRecord {
176
176
  * <p>The DNS target domain name.</p>
177
177
  * @public
178
178
  */
179
- DomainName?: string;
179
+ DomainName?: string | undefined;
180
180
  /**
181
181
  * <p>The Route 53 Resource Record Set ID.</p>
182
182
  * @public
183
183
  */
184
- RecordSetId?: string;
184
+ RecordSetId?: string | undefined;
185
185
  }
186
186
  /**
187
187
  * <p>The target resource that the Route 53 record points to.</p>
@@ -192,12 +192,12 @@ export interface TargetResource {
192
192
  * <p>The Network Load Balancer Resource.</p>
193
193
  * @public
194
194
  */
195
- NLBResource?: NLBResource;
195
+ NLBResource?: NLBResource | undefined;
196
196
  /**
197
197
  * <p>The Route 53 resource.</p>
198
198
  * @public
199
199
  */
200
- R53Resource?: R53ResourceRecord;
200
+ R53Resource?: R53ResourceRecord | undefined;
201
201
  }
202
202
  /**
203
203
  * <p>A component for DNS/routing control readiness checks and architecture checks.</p>
@@ -208,27 +208,27 @@ export interface DNSTargetResource {
208
208
  * <p>The domain name that acts as an ingress point to a portion of the customer application.</p>
209
209
  * @public
210
210
  */
211
- DomainName?: string;
211
+ DomainName?: string | undefined;
212
212
  /**
213
213
  * <p>The hosted zone Amazon Resource Name (ARN) that contains the DNS record with the provided name of the target resource.</p>
214
214
  * @public
215
215
  */
216
- HostedZoneArn?: string;
216
+ HostedZoneArn?: string | undefined;
217
217
  /**
218
218
  * <p>The Route 53 record set ID that uniquely identifies a DNS record, given a name and a type.</p>
219
219
  * @public
220
220
  */
221
- RecordSetId?: string;
221
+ RecordSetId?: string | undefined;
222
222
  /**
223
223
  * <p>The type of DNS record of the target resource.</p>
224
224
  * @public
225
225
  */
226
- RecordType?: string;
226
+ RecordType?: string | undefined;
227
227
  /**
228
228
  * <p>The target resource of the DNS target resource.</p>
229
229
  * @public
230
230
  */
231
- TargetResource?: TargetResource;
231
+ TargetResource?: TargetResource | undefined;
232
232
  }
233
233
  /**
234
234
  * <p>The resource element of a resource set.</p>
@@ -239,22 +239,22 @@ export interface Resource {
239
239
  * <p>The component identifier of the resource, generated when DNS target resource is used.</p>
240
240
  * @public
241
241
  */
242
- ComponentId?: string;
242
+ ComponentId?: string | undefined;
243
243
  /**
244
244
  * <p>The DNS target resource.</p>
245
245
  * @public
246
246
  */
247
- DnsTargetResource?: DNSTargetResource;
247
+ DnsTargetResource?: DNSTargetResource | undefined;
248
248
  /**
249
249
  * <p>A list of recovery group Amazon Resource Names (ARNs) and cell ARNs that this resource is contained within.</p>
250
250
  * @public
251
251
  */
252
- ReadinessScopes?: string[];
252
+ ReadinessScopes?: string[] | undefined;
253
253
  /**
254
254
  * <p>The Amazon Resource Name (ARN) of the Amazon Web Services resource.</p>
255
255
  * @public
256
256
  */
257
- ResourceArn?: string;
257
+ ResourceArn?: string | undefined;
258
258
  }
259
259
  /**
260
260
  * <p>The result of a successful Resource request, with status for an individual resource.</p>
@@ -265,7 +265,7 @@ export interface ResourceResult {
265
265
  * <p>The component id of the resource.</p>
266
266
  * @public
267
267
  */
268
- ComponentId?: string;
268
+ ComponentId?: string | undefined;
269
269
  /**
270
270
  * <p>The time (UTC) that the resource was last checked for readiness, in ISO-8601 format.</p>
271
271
  * @public
@@ -280,7 +280,7 @@ export interface ResourceResult {
280
280
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
281
281
  * @public
282
282
  */
283
- ResourceArn?: string;
283
+ ResourceArn?: string | undefined;
284
284
  }
285
285
  /**
286
286
  * <p>A collection of resources of the same type.</p>
@@ -311,7 +311,7 @@ export interface ResourceSetOutput {
311
311
  * <p>A collection of tags associated with a resource.</p>
312
312
  * @public
313
313
  */
314
- Tags?: Record<string, string>;
314
+ Tags?: Record<string, string> | undefined;
315
315
  }
316
316
  /**
317
317
  * <p>The result of a successful Rule request, with status for an individual rule.</p>
@@ -346,7 +346,7 @@ export interface RuleResult {
346
346
  export declare class AccessDeniedException extends __BaseException {
347
347
  readonly name: "AccessDeniedException";
348
348
  readonly $fault: "client";
349
- Message?: string;
349
+ Message?: string | undefined;
350
350
  /**
351
351
  * @internal
352
352
  */
@@ -359,7 +359,7 @@ export declare class AccessDeniedException extends __BaseException {
359
359
  export declare class ConflictException extends __BaseException {
360
360
  readonly name: "ConflictException";
361
361
  readonly $fault: "client";
362
- Message?: string;
362
+ Message?: string | undefined;
363
363
  /**
364
364
  * @internal
365
365
  */
@@ -378,12 +378,12 @@ export interface CreateCellRequest {
378
378
  * <p>A list of cell Amazon Resource Names (ARNs) contained within this cell, for use in nested cells. For example, Availability Zones within specific Amazon Web Services Regions.</p>
379
379
  * @public
380
380
  */
381
- Cells?: string[];
381
+ Cells?: string[] | undefined;
382
382
  /**
383
383
  * <p>A collection of tags associated with a resource.</p>
384
384
  * @public
385
385
  */
386
- Tags?: Record<string, string>;
386
+ Tags?: Record<string, string> | undefined;
387
387
  }
388
388
  /**
389
389
  * @public
@@ -393,27 +393,27 @@ export interface CreateCellResponse {
393
393
  * <p>The Amazon Resource Name (ARN) for the cell.</p>
394
394
  * @public
395
395
  */
396
- CellArn?: string;
396
+ CellArn?: string | undefined;
397
397
  /**
398
398
  * <p>The name of the cell.</p>
399
399
  * @public
400
400
  */
401
- CellName?: string;
401
+ CellName?: string | undefined;
402
402
  /**
403
403
  * <p>A list of cell ARNs.</p>
404
404
  * @public
405
405
  */
406
- Cells?: string[];
406
+ Cells?: string[] | undefined;
407
407
  /**
408
408
  * <p>The readiness scope for the cell, which can be a cell Amazon Resource Name (ARN) or a recovery group ARN. This is a list but currently can have only one element.</p>
409
409
  * @public
410
410
  */
411
- ParentReadinessScopes?: string[];
411
+ ParentReadinessScopes?: string[] | undefined;
412
412
  /**
413
413
  * <p>Tags on the resources.</p>
414
414
  * @public
415
415
  */
416
- Tags?: Record<string, string>;
416
+ Tags?: Record<string, string> | undefined;
417
417
  }
418
418
  /**
419
419
  * An unexpected error occurred.
@@ -422,7 +422,7 @@ export interface CreateCellResponse {
422
422
  export declare class InternalServerException extends __BaseException {
423
423
  readonly name: "InternalServerException";
424
424
  readonly $fault: "server";
425
- Message?: string;
425
+ Message?: string | undefined;
426
426
  /**
427
427
  * @internal
428
428
  */
@@ -435,7 +435,7 @@ export declare class InternalServerException extends __BaseException {
435
435
  export declare class ThrottlingException extends __BaseException {
436
436
  readonly name: "ThrottlingException";
437
437
  readonly $fault: "client";
438
- Message?: string;
438
+ Message?: string | undefined;
439
439
  /**
440
440
  * @internal
441
441
  */
@@ -448,7 +448,7 @@ export declare class ThrottlingException extends __BaseException {
448
448
  export declare class ValidationException extends __BaseException {
449
449
  readonly name: "ValidationException";
450
450
  readonly $fault: "client";
451
- Message?: string;
451
+ Message?: string | undefined;
452
452
  /**
453
453
  * @internal
454
454
  */
@@ -472,7 +472,7 @@ export interface CreateCrossAccountAuthorizationResponse {
472
472
  * <p>The cross-account authorization.</p>
473
473
  * @public
474
474
  */
475
- CrossAccountAuthorization?: string;
475
+ CrossAccountAuthorization?: string | undefined;
476
476
  }
477
477
  /**
478
478
  * @public
@@ -492,7 +492,7 @@ export interface CreateReadinessCheckRequest {
492
492
  * <p>A collection of tags associated with a resource.</p>
493
493
  * @public
494
494
  */
495
- Tags?: Record<string, string>;
495
+ Tags?: Record<string, string> | undefined;
496
496
  }
497
497
  /**
498
498
  * @public
@@ -502,22 +502,22 @@ export interface CreateReadinessCheckResponse {
502
502
  * <p>The Amazon Resource Name (ARN) associated with a readiness check.</p>
503
503
  * @public
504
504
  */
505
- ReadinessCheckArn?: string;
505
+ ReadinessCheckArn?: string | undefined;
506
506
  /**
507
507
  * <p>Name of a readiness check.</p>
508
508
  * @public
509
509
  */
510
- ReadinessCheckName?: string;
510
+ ReadinessCheckName?: string | undefined;
511
511
  /**
512
512
  * <p>Name of the resource set to be checked.</p>
513
513
  * @public
514
514
  */
515
- ResourceSet?: string;
515
+ ResourceSet?: string | undefined;
516
516
  /**
517
517
  * <p>A collection of tags associated with a resource.</p>
518
518
  * @public
519
519
  */
520
- Tags?: Record<string, string>;
520
+ Tags?: Record<string, string> | undefined;
521
521
  }
522
522
  /**
523
523
  * @public
@@ -527,7 +527,7 @@ export interface CreateRecoveryGroupRequest {
527
527
  * <p>A list of the cell Amazon Resource Names (ARNs) in the recovery group.</p>
528
528
  * @public
529
529
  */
530
- Cells?: string[];
530
+ Cells?: string[] | undefined;
531
531
  /**
532
532
  * <p>The name of the recovery group to create.</p>
533
533
  * @public
@@ -537,7 +537,7 @@ export interface CreateRecoveryGroupRequest {
537
537
  * <p>A collection of tags associated with a resource.</p>
538
538
  * @public
539
539
  */
540
- Tags?: Record<string, string>;
540
+ Tags?: Record<string, string> | undefined;
541
541
  }
542
542
  /**
543
543
  * @public
@@ -547,22 +547,22 @@ export interface CreateRecoveryGroupResponse {
547
547
  * <p>A list of a cell's Amazon Resource Names (ARNs).</p>
548
548
  * @public
549
549
  */
550
- Cells?: string[];
550
+ Cells?: string[] | undefined;
551
551
  /**
552
552
  * <p>The Amazon Resource Name (ARN) for the recovery group.</p>
553
553
  * @public
554
554
  */
555
- RecoveryGroupArn?: string;
555
+ RecoveryGroupArn?: string | undefined;
556
556
  /**
557
557
  * <p>The name of the recovery group.</p>
558
558
  * @public
559
559
  */
560
- RecoveryGroupName?: string;
560
+ RecoveryGroupName?: string | undefined;
561
561
  /**
562
562
  * <p>The tags associated with the recovery group.</p>
563
563
  * @public
564
564
  */
565
- Tags?: Record<string, string>;
565
+ Tags?: Record<string, string> | undefined;
566
566
  }
567
567
  /**
568
568
  * @public
@@ -587,7 +587,7 @@ export interface CreateResourceSetRequest {
587
587
  * <p>A tag to associate with the parameters for a resource set.</p>
588
588
  * @public
589
589
  */
590
- Tags?: Record<string, string>;
590
+ Tags?: Record<string, string> | undefined;
591
591
  }
592
592
  /**
593
593
  * @public
@@ -597,27 +597,27 @@ export interface CreateResourceSetResponse {
597
597
  * <p>The Amazon Resource Name (ARN) for the resource set.</p>
598
598
  * @public
599
599
  */
600
- ResourceSetArn?: string;
600
+ ResourceSetArn?: string | undefined;
601
601
  /**
602
602
  * <p>The name of the resource set.</p>
603
603
  * @public
604
604
  */
605
- ResourceSetName?: string;
605
+ ResourceSetName?: string | undefined;
606
606
  /**
607
607
  * <p>The resource type of the resources in the resource set. Enter one of the following values for resource type:</p> <p>AWS::ApiGateway::Stage, AWS::ApiGatewayV2::Stage, AWS::AutoScaling::AutoScalingGroup, AWS::CloudWatch::Alarm, AWS::EC2::CustomerGateway, AWS::DynamoDB::Table, AWS::EC2::Volume, AWS::ElasticLoadBalancing::LoadBalancer, AWS::ElasticLoadBalancingV2::LoadBalancer, AWS::Lambda::Function, AWS::MSK::Cluster, AWS::RDS::DBCluster, AWS::Route53::HealthCheck, AWS::SQS::Queue, AWS::SNS::Topic, AWS::SNS::Subscription, AWS::EC2::VPC, AWS::EC2::VPNConnection, AWS::EC2::VPNGateway, AWS::Route53RecoveryReadiness::DNSTargetResource</p>
608
608
  * @public
609
609
  */
610
- ResourceSetType?: string;
610
+ ResourceSetType?: string | undefined;
611
611
  /**
612
612
  * <p>A list of resource objects.</p>
613
613
  * @public
614
614
  */
615
- Resources?: Resource[];
615
+ Resources?: Resource[] | undefined;
616
616
  /**
617
617
  * <p>A collection of tags associated with a resource.</p>
618
618
  * @public
619
619
  */
620
- Tags?: Record<string, string>;
620
+ Tags?: Record<string, string> | undefined;
621
621
  }
622
622
  /**
623
623
  * @public
@@ -636,7 +636,7 @@ export interface DeleteCellRequest {
636
636
  export declare class ResourceNotFoundException extends __BaseException {
637
637
  readonly name: "ResourceNotFoundException";
638
638
  readonly $fault: "client";
639
- Message?: string;
639
+ Message?: string | undefined;
640
640
  /**
641
641
  * @internal
642
642
  */
@@ -695,12 +695,12 @@ export interface GetArchitectureRecommendationsRequest {
695
695
  * <p>The number of objects that you want to return with this call.</p>
696
696
  * @public
697
697
  */
698
- MaxResults?: number;
698
+ MaxResults?: number | undefined;
699
699
  /**
700
700
  * <p>The token that identifies which batch of results you want to see.</p>
701
701
  * @public
702
702
  */
703
- NextToken?: string;
703
+ NextToken?: string | undefined;
704
704
  /**
705
705
  * <p>The name of a recovery group.</p>
706
706
  * @public
@@ -715,17 +715,17 @@ export interface GetArchitectureRecommendationsResponse {
715
715
  * <p>The time that a recovery group was last assessed for recommendations, in UTC ISO-8601 format.</p>
716
716
  * @public
717
717
  */
718
- LastAuditTimestamp?: Date;
718
+ LastAuditTimestamp?: Date | undefined;
719
719
  /**
720
720
  * <p>The token that identifies which batch of results you want to see.</p>
721
721
  * @public
722
722
  */
723
- NextToken?: string;
723
+ NextToken?: string | undefined;
724
724
  /**
725
725
  * <p>A list of the recommendations for the customer's application.</p>
726
726
  * @public
727
727
  */
728
- Recommendations?: Recommendation[];
728
+ Recommendations?: Recommendation[] | undefined;
729
729
  }
730
730
  /**
731
731
  * @public
@@ -745,27 +745,27 @@ export interface GetCellResponse {
745
745
  * <p>The Amazon Resource Name (ARN) for the cell.</p>
746
746
  * @public
747
747
  */
748
- CellArn?: string;
748
+ CellArn?: string | undefined;
749
749
  /**
750
750
  * <p>The name of the cell.</p>
751
751
  * @public
752
752
  */
753
- CellName?: string;
753
+ CellName?: string | undefined;
754
754
  /**
755
755
  * <p>A list of cell ARNs.</p>
756
756
  * @public
757
757
  */
758
- Cells?: string[];
758
+ Cells?: string[] | undefined;
759
759
  /**
760
760
  * <p>The readiness scope for the cell, which can be a cell Amazon Resource Name (ARN) or a recovery group ARN. This is a list but currently can have only one element.</p>
761
761
  * @public
762
762
  */
763
- ParentReadinessScopes?: string[];
763
+ ParentReadinessScopes?: string[] | undefined;
764
764
  /**
765
765
  * <p>Tags on the resources.</p>
766
766
  * @public
767
767
  */
768
- Tags?: Record<string, string>;
768
+ Tags?: Record<string, string> | undefined;
769
769
  }
770
770
  /**
771
771
  * @public
@@ -780,12 +780,12 @@ export interface GetCellReadinessSummaryRequest {
780
780
  * <p>The number of objects that you want to return with this call.</p>
781
781
  * @public
782
782
  */
783
- MaxResults?: number;
783
+ MaxResults?: number | undefined;
784
784
  /**
785
785
  * <p>The token that identifies which batch of results you want to see.</p>
786
786
  * @public
787
787
  */
788
- NextToken?: string;
788
+ NextToken?: string | undefined;
789
789
  }
790
790
  /**
791
791
  * @public
@@ -795,17 +795,17 @@ export interface GetCellReadinessSummaryResponse {
795
795
  * <p>The token that identifies which batch of results you want to see.</p>
796
796
  * @public
797
797
  */
798
- NextToken?: string;
798
+ NextToken?: string | undefined;
799
799
  /**
800
800
  * <p>The readiness at a cell level.</p>
801
801
  * @public
802
802
  */
803
- Readiness?: Readiness;
803
+ Readiness?: Readiness | undefined;
804
804
  /**
805
805
  * <p>Summaries for the readiness checks that make up the cell.</p>
806
806
  * @public
807
807
  */
808
- ReadinessChecks?: ReadinessCheckSummary[];
808
+ ReadinessChecks?: ReadinessCheckSummary[] | undefined;
809
809
  }
810
810
  /**
811
811
  * @public
@@ -825,22 +825,22 @@ export interface GetReadinessCheckResponse {
825
825
  * <p>The Amazon Resource Name (ARN) associated with a readiness check.</p>
826
826
  * @public
827
827
  */
828
- ReadinessCheckArn?: string;
828
+ ReadinessCheckArn?: string | undefined;
829
829
  /**
830
830
  * <p>Name of a readiness check.</p>
831
831
  * @public
832
832
  */
833
- ReadinessCheckName?: string;
833
+ ReadinessCheckName?: string | undefined;
834
834
  /**
835
835
  * <p>Name of the resource set to be checked.</p>
836
836
  * @public
837
837
  */
838
- ResourceSet?: string;
838
+ ResourceSet?: string | undefined;
839
839
  /**
840
840
  * <p>A collection of tags associated with a resource.</p>
841
841
  * @public
842
842
  */
843
- Tags?: Record<string, string>;
843
+ Tags?: Record<string, string> | undefined;
844
844
  }
845
845
  /**
846
846
  * @public
@@ -850,12 +850,12 @@ export interface GetReadinessCheckResourceStatusRequest {
850
850
  * <p>The number of objects that you want to return with this call.</p>
851
851
  * @public
852
852
  */
853
- MaxResults?: number;
853
+ MaxResults?: number | undefined;
854
854
  /**
855
855
  * <p>The token that identifies which batch of results you want to see.</p>
856
856
  * @public
857
857
  */
858
- NextToken?: string;
858
+ NextToken?: string | undefined;
859
859
  /**
860
860
  * <p>Name of a readiness check.</p>
861
861
  * @public
@@ -875,17 +875,17 @@ export interface GetReadinessCheckResourceStatusResponse {
875
875
  * <p>The token that identifies which batch of results you want to see.</p>
876
876
  * @public
877
877
  */
878
- NextToken?: string;
878
+ NextToken?: string | undefined;
879
879
  /**
880
880
  * <p>The readiness at a rule level.</p>
881
881
  * @public
882
882
  */
883
- Readiness?: Readiness;
883
+ Readiness?: Readiness | undefined;
884
884
  /**
885
885
  * <p>Details of the rule's results.</p>
886
886
  * @public
887
887
  */
888
- Rules?: RuleResult[];
888
+ Rules?: RuleResult[] | undefined;
889
889
  }
890
890
  /**
891
891
  * @public
@@ -895,12 +895,12 @@ export interface GetReadinessCheckStatusRequest {
895
895
  * <p>The number of objects that you want to return with this call.</p>
896
896
  * @public
897
897
  */
898
- MaxResults?: number;
898
+ MaxResults?: number | undefined;
899
899
  /**
900
900
  * <p>The token that identifies which batch of results you want to see.</p>
901
901
  * @public
902
902
  */
903
- NextToken?: string;
903
+ NextToken?: string | undefined;
904
904
  /**
905
905
  * <p>Name of a readiness check.</p>
906
906
  * @public
@@ -915,22 +915,22 @@ export interface GetReadinessCheckStatusResponse {
915
915
  * <p>Top level messages for readiness check status</p>
916
916
  * @public
917
917
  */
918
- Messages?: Message[];
918
+ Messages?: Message[] | undefined;
919
919
  /**
920
920
  * <p>The token that identifies which batch of results you want to see.</p>
921
921
  * @public
922
922
  */
923
- NextToken?: string;
923
+ NextToken?: string | undefined;
924
924
  /**
925
925
  * <p>The readiness at rule level.</p>
926
926
  * @public
927
927
  */
928
- Readiness?: Readiness;
928
+ Readiness?: Readiness | undefined;
929
929
  /**
930
930
  * <p>Summary of the readiness of resources.</p>
931
931
  * @public
932
932
  */
933
- Resources?: ResourceResult[];
933
+ Resources?: ResourceResult[] | undefined;
934
934
  }
935
935
  /**
936
936
  * @public
@@ -950,22 +950,22 @@ export interface GetRecoveryGroupResponse {
950
950
  * <p>A list of a cell's Amazon Resource Names (ARNs).</p>
951
951
  * @public
952
952
  */
953
- Cells?: string[];
953
+ Cells?: string[] | undefined;
954
954
  /**
955
955
  * <p>The Amazon Resource Name (ARN) for the recovery group.</p>
956
956
  * @public
957
957
  */
958
- RecoveryGroupArn?: string;
958
+ RecoveryGroupArn?: string | undefined;
959
959
  /**
960
960
  * <p>The name of the recovery group.</p>
961
961
  * @public
962
962
  */
963
- RecoveryGroupName?: string;
963
+ RecoveryGroupName?: string | undefined;
964
964
  /**
965
965
  * <p>The tags associated with the recovery group.</p>
966
966
  * @public
967
967
  */
968
- Tags?: Record<string, string>;
968
+ Tags?: Record<string, string> | undefined;
969
969
  }
970
970
  /**
971
971
  * @public
@@ -975,12 +975,12 @@ export interface GetRecoveryGroupReadinessSummaryRequest {
975
975
  * <p>The number of objects that you want to return with this call.</p>
976
976
  * @public
977
977
  */
978
- MaxResults?: number;
978
+ MaxResults?: number | undefined;
979
979
  /**
980
980
  * <p>The token that identifies which batch of results you want to see.</p>
981
981
  * @public
982
982
  */
983
- NextToken?: string;
983
+ NextToken?: string | undefined;
984
984
  /**
985
985
  * <p>The name of a recovery group.</p>
986
986
  * @public
@@ -995,17 +995,17 @@ export interface GetRecoveryGroupReadinessSummaryResponse {
995
995
  * <p>The token that identifies which batch of results you want to see.</p>
996
996
  * @public
997
997
  */
998
- NextToken?: string;
998
+ NextToken?: string | undefined;
999
999
  /**
1000
1000
  * <p>The readiness status at a recovery group level.</p>
1001
1001
  * @public
1002
1002
  */
1003
- Readiness?: Readiness;
1003
+ Readiness?: Readiness | undefined;
1004
1004
  /**
1005
1005
  * <p>Summaries of the readiness checks for the recovery group.</p>
1006
1006
  * @public
1007
1007
  */
1008
- ReadinessChecks?: ReadinessCheckSummary[];
1008
+ ReadinessChecks?: ReadinessCheckSummary[] | undefined;
1009
1009
  }
1010
1010
  /**
1011
1011
  * @public
@@ -1025,27 +1025,27 @@ export interface GetResourceSetResponse {
1025
1025
  * <p>The Amazon Resource Name (ARN) for the resource set.</p>
1026
1026
  * @public
1027
1027
  */
1028
- ResourceSetArn?: string;
1028
+ ResourceSetArn?: string | undefined;
1029
1029
  /**
1030
1030
  * <p>The name of the resource set.</p>
1031
1031
  * @public
1032
1032
  */
1033
- ResourceSetName?: string;
1033
+ ResourceSetName?: string | undefined;
1034
1034
  /**
1035
1035
  * <p>The resource type of the resources in the resource set. Enter one of the following values for resource type:</p> <p>AWS::ApiGateway::Stage, AWS::ApiGatewayV2::Stage, AWS::AutoScaling::AutoScalingGroup, AWS::CloudWatch::Alarm, AWS::EC2::CustomerGateway, AWS::DynamoDB::Table, AWS::EC2::Volume, AWS::ElasticLoadBalancing::LoadBalancer, AWS::ElasticLoadBalancingV2::LoadBalancer, AWS::Lambda::Function, AWS::MSK::Cluster, AWS::RDS::DBCluster, AWS::Route53::HealthCheck, AWS::SQS::Queue, AWS::SNS::Topic, AWS::SNS::Subscription, AWS::EC2::VPC, AWS::EC2::VPNConnection, AWS::EC2::VPNGateway, AWS::Route53RecoveryReadiness::DNSTargetResource</p>
1036
1036
  * @public
1037
1037
  */
1038
- ResourceSetType?: string;
1038
+ ResourceSetType?: string | undefined;
1039
1039
  /**
1040
1040
  * <p>A list of resource objects.</p>
1041
1041
  * @public
1042
1042
  */
1043
- Resources?: Resource[];
1043
+ Resources?: Resource[] | undefined;
1044
1044
  /**
1045
1045
  * <p>A collection of tags associated with a resource.</p>
1046
1046
  * @public
1047
1047
  */
1048
- Tags?: Record<string, string>;
1048
+ Tags?: Record<string, string> | undefined;
1049
1049
  }
1050
1050
  /**
1051
1051
  * @public
@@ -1055,12 +1055,12 @@ export interface ListCellsRequest {
1055
1055
  * <p>The number of objects that you want to return with this call.</p>
1056
1056
  * @public
1057
1057
  */
1058
- MaxResults?: number;
1058
+ MaxResults?: number | undefined;
1059
1059
  /**
1060
1060
  * <p>The token that identifies which batch of results you want to see.</p>
1061
1061
  * @public
1062
1062
  */
1063
- NextToken?: string;
1063
+ NextToken?: string | undefined;
1064
1064
  }
1065
1065
  /**
1066
1066
  * @public
@@ -1070,12 +1070,12 @@ export interface ListCellsResponse {
1070
1070
  * <p>A list of cells.</p>
1071
1071
  * @public
1072
1072
  */
1073
- Cells?: CellOutput[];
1073
+ Cells?: CellOutput[] | undefined;
1074
1074
  /**
1075
1075
  * <p>The token that identifies which batch of results you want to see.</p>
1076
1076
  * @public
1077
1077
  */
1078
- NextToken?: string;
1078
+ NextToken?: string | undefined;
1079
1079
  }
1080
1080
  /**
1081
1081
  * @public
@@ -1085,12 +1085,12 @@ export interface ListCrossAccountAuthorizationsRequest {
1085
1085
  * <p>The number of objects that you want to return with this call.</p>
1086
1086
  * @public
1087
1087
  */
1088
- MaxResults?: number;
1088
+ MaxResults?: number | undefined;
1089
1089
  /**
1090
1090
  * <p>The token that identifies which batch of results you want to see.</p>
1091
1091
  * @public
1092
1092
  */
1093
- NextToken?: string;
1093
+ NextToken?: string | undefined;
1094
1094
  }
1095
1095
  /**
1096
1096
  * @public
@@ -1100,12 +1100,12 @@ export interface ListCrossAccountAuthorizationsResponse {
1100
1100
  * <p>A list of cross-account authorizations.</p>
1101
1101
  * @public
1102
1102
  */
1103
- CrossAccountAuthorizations?: string[];
1103
+ CrossAccountAuthorizations?: string[] | undefined;
1104
1104
  /**
1105
1105
  * <p>The token that identifies which batch of results you want to see.</p>
1106
1106
  * @public
1107
1107
  */
1108
- NextToken?: string;
1108
+ NextToken?: string | undefined;
1109
1109
  }
1110
1110
  /**
1111
1111
  * @public
@@ -1115,12 +1115,12 @@ export interface ListReadinessChecksRequest {
1115
1115
  * <p>The number of objects that you want to return with this call.</p>
1116
1116
  * @public
1117
1117
  */
1118
- MaxResults?: number;
1118
+ MaxResults?: number | undefined;
1119
1119
  /**
1120
1120
  * <p>The token that identifies which batch of results you want to see.</p>
1121
1121
  * @public
1122
1122
  */
1123
- NextToken?: string;
1123
+ NextToken?: string | undefined;
1124
1124
  }
1125
1125
  /**
1126
1126
  * @public
@@ -1130,12 +1130,12 @@ export interface ListReadinessChecksResponse {
1130
1130
  * <p>The token that identifies which batch of results you want to see.</p>
1131
1131
  * @public
1132
1132
  */
1133
- NextToken?: string;
1133
+ NextToken?: string | undefined;
1134
1134
  /**
1135
1135
  * <p>A list of readiness checks associated with the account.</p>
1136
1136
  * @public
1137
1137
  */
1138
- ReadinessChecks?: ReadinessCheckOutput[];
1138
+ ReadinessChecks?: ReadinessCheckOutput[] | undefined;
1139
1139
  }
1140
1140
  /**
1141
1141
  * @public
@@ -1145,12 +1145,12 @@ export interface ListRecoveryGroupsRequest {
1145
1145
  * <p>The number of objects that you want to return with this call.</p>
1146
1146
  * @public
1147
1147
  */
1148
- MaxResults?: number;
1148
+ MaxResults?: number | undefined;
1149
1149
  /**
1150
1150
  * <p>The token that identifies which batch of results you want to see.</p>
1151
1151
  * @public
1152
1152
  */
1153
- NextToken?: string;
1153
+ NextToken?: string | undefined;
1154
1154
  }
1155
1155
  /**
1156
1156
  * @public
@@ -1160,12 +1160,12 @@ export interface ListRecoveryGroupsResponse {
1160
1160
  * <p>The token that identifies which batch of results you want to see.</p>
1161
1161
  * @public
1162
1162
  */
1163
- NextToken?: string;
1163
+ NextToken?: string | undefined;
1164
1164
  /**
1165
1165
  * <p>A list of recovery groups.</p>
1166
1166
  * @public
1167
1167
  */
1168
- RecoveryGroups?: RecoveryGroupOutput[];
1168
+ RecoveryGroups?: RecoveryGroupOutput[] | undefined;
1169
1169
  }
1170
1170
  /**
1171
1171
  * @public
@@ -1175,12 +1175,12 @@ export interface ListResourceSetsRequest {
1175
1175
  * <p>The number of objects that you want to return with this call.</p>
1176
1176
  * @public
1177
1177
  */
1178
- MaxResults?: number;
1178
+ MaxResults?: number | undefined;
1179
1179
  /**
1180
1180
  * <p>The token that identifies which batch of results you want to see.</p>
1181
1181
  * @public
1182
1182
  */
1183
- NextToken?: string;
1183
+ NextToken?: string | undefined;
1184
1184
  }
1185
1185
  /**
1186
1186
  * @public
@@ -1190,12 +1190,12 @@ export interface ListResourceSetsResponse {
1190
1190
  * <p>The token that identifies which batch of results you want to see.</p>
1191
1191
  * @public
1192
1192
  */
1193
- NextToken?: string;
1193
+ NextToken?: string | undefined;
1194
1194
  /**
1195
1195
  * <p>A list of resource sets associated with the account.</p>
1196
1196
  * @public
1197
1197
  */
1198
- ResourceSets?: ResourceSetOutput[];
1198
+ ResourceSets?: ResourceSetOutput[] | undefined;
1199
1199
  }
1200
1200
  /**
1201
1201
  * @public
@@ -1205,17 +1205,17 @@ export interface ListRulesRequest {
1205
1205
  * <p>The number of objects that you want to return with this call.</p>
1206
1206
  * @public
1207
1207
  */
1208
- MaxResults?: number;
1208
+ MaxResults?: number | undefined;
1209
1209
  /**
1210
1210
  * <p>The token that identifies which batch of results you want to see.</p>
1211
1211
  * @public
1212
1212
  */
1213
- NextToken?: string;
1213
+ NextToken?: string | undefined;
1214
1214
  /**
1215
1215
  * <p>The resource type that a readiness rule applies to.</p>
1216
1216
  * @public
1217
1217
  */
1218
- ResourceType?: string;
1218
+ ResourceType?: string | undefined;
1219
1219
  }
1220
1220
  /**
1221
1221
  * @public
@@ -1225,12 +1225,12 @@ export interface ListRulesResponse {
1225
1225
  * <p>The token that identifies which batch of results you want to see.</p>
1226
1226
  * @public
1227
1227
  */
1228
- NextToken?: string;
1228
+ NextToken?: string | undefined;
1229
1229
  /**
1230
1230
  * <p>A list of readiness rules for a specific resource type.</p>
1231
1231
  * @public
1232
1232
  */
1233
- Rules?: ListRulesOutput[];
1233
+ Rules?: ListRulesOutput[] | undefined;
1234
1234
  }
1235
1235
  /**
1236
1236
  * @public
@@ -1250,7 +1250,7 @@ export interface ListTagsForResourcesResponse {
1250
1250
  * <p></p>
1251
1251
  * @public
1252
1252
  */
1253
- Tags?: Record<string, string>;
1253
+ Tags?: Record<string, string> | undefined;
1254
1254
  }
1255
1255
  /**
1256
1256
  * @public
@@ -1310,27 +1310,27 @@ export interface UpdateCellResponse {
1310
1310
  * <p>The Amazon Resource Name (ARN) for the cell.</p>
1311
1311
  * @public
1312
1312
  */
1313
- CellArn?: string;
1313
+ CellArn?: string | undefined;
1314
1314
  /**
1315
1315
  * <p>The name of the cell.</p>
1316
1316
  * @public
1317
1317
  */
1318
- CellName?: string;
1318
+ CellName?: string | undefined;
1319
1319
  /**
1320
1320
  * <p>A list of cell ARNs.</p>
1321
1321
  * @public
1322
1322
  */
1323
- Cells?: string[];
1323
+ Cells?: string[] | undefined;
1324
1324
  /**
1325
1325
  * <p>The readiness scope for the cell, which can be a cell Amazon Resource Name (ARN) or a recovery group ARN. This is a list but currently can have only one element.</p>
1326
1326
  * @public
1327
1327
  */
1328
- ParentReadinessScopes?: string[];
1328
+ ParentReadinessScopes?: string[] | undefined;
1329
1329
  /**
1330
1330
  * <p>Tags on the resources.</p>
1331
1331
  * @public
1332
1332
  */
1333
- Tags?: Record<string, string>;
1333
+ Tags?: Record<string, string> | undefined;
1334
1334
  }
1335
1335
  /**
1336
1336
  * <p>Name of a readiness check to describe.</p>
@@ -1356,22 +1356,22 @@ export interface UpdateReadinessCheckResponse {
1356
1356
  * <p>The Amazon Resource Name (ARN) associated with a readiness check.</p>
1357
1357
  * @public
1358
1358
  */
1359
- ReadinessCheckArn?: string;
1359
+ ReadinessCheckArn?: string | undefined;
1360
1360
  /**
1361
1361
  * <p>Name of a readiness check.</p>
1362
1362
  * @public
1363
1363
  */
1364
- ReadinessCheckName?: string;
1364
+ ReadinessCheckName?: string | undefined;
1365
1365
  /**
1366
1366
  * <p>Name of the resource set to be checked.</p>
1367
1367
  * @public
1368
1368
  */
1369
- ResourceSet?: string;
1369
+ ResourceSet?: string | undefined;
1370
1370
  /**
1371
1371
  * <p>A collection of tags associated with a resource.</p>
1372
1372
  * @public
1373
1373
  */
1374
- Tags?: Record<string, string>;
1374
+ Tags?: Record<string, string> | undefined;
1375
1375
  }
1376
1376
  /**
1377
1377
  * <p>Name of a recovery group.</p>
@@ -1397,22 +1397,22 @@ export interface UpdateRecoveryGroupResponse {
1397
1397
  * <p>A list of a cell's Amazon Resource Names (ARNs).</p>
1398
1398
  * @public
1399
1399
  */
1400
- Cells?: string[];
1400
+ Cells?: string[] | undefined;
1401
1401
  /**
1402
1402
  * <p>The Amazon Resource Name (ARN) for the recovery group.</p>
1403
1403
  * @public
1404
1404
  */
1405
- RecoveryGroupArn?: string;
1405
+ RecoveryGroupArn?: string | undefined;
1406
1406
  /**
1407
1407
  * <p>The name of the recovery group.</p>
1408
1408
  * @public
1409
1409
  */
1410
- RecoveryGroupName?: string;
1410
+ RecoveryGroupName?: string | undefined;
1411
1411
  /**
1412
1412
  * <p>The tags associated with the recovery group.</p>
1413
1413
  * @public
1414
1414
  */
1415
- Tags?: Record<string, string>;
1415
+ Tags?: Record<string, string> | undefined;
1416
1416
  }
1417
1417
  /**
1418
1418
  * <p>Name of a resource set.</p>
@@ -1443,25 +1443,25 @@ export interface UpdateResourceSetResponse {
1443
1443
  * <p>The Amazon Resource Name (ARN) for the resource set.</p>
1444
1444
  * @public
1445
1445
  */
1446
- ResourceSetArn?: string;
1446
+ ResourceSetArn?: string | undefined;
1447
1447
  /**
1448
1448
  * <p>The name of the resource set.</p>
1449
1449
  * @public
1450
1450
  */
1451
- ResourceSetName?: string;
1451
+ ResourceSetName?: string | undefined;
1452
1452
  /**
1453
1453
  * <p>The resource type of the resources in the resource set. Enter one of the following values for resource type:</p> <p>AWS::ApiGateway::Stage, AWS::ApiGatewayV2::Stage, AWS::AutoScaling::AutoScalingGroup, AWS::CloudWatch::Alarm, AWS::EC2::CustomerGateway, AWS::DynamoDB::Table, AWS::EC2::Volume, AWS::ElasticLoadBalancing::LoadBalancer, AWS::ElasticLoadBalancingV2::LoadBalancer, AWS::Lambda::Function, AWS::MSK::Cluster, AWS::RDS::DBCluster, AWS::Route53::HealthCheck, AWS::SQS::Queue, AWS::SNS::Topic, AWS::SNS::Subscription, AWS::EC2::VPC, AWS::EC2::VPNConnection, AWS::EC2::VPNGateway, AWS::Route53RecoveryReadiness::DNSTargetResource</p>
1454
1454
  * @public
1455
1455
  */
1456
- ResourceSetType?: string;
1456
+ ResourceSetType?: string | undefined;
1457
1457
  /**
1458
1458
  * <p>A list of resource objects.</p>
1459
1459
  * @public
1460
1460
  */
1461
- Resources?: Resource[];
1461
+ Resources?: Resource[] | undefined;
1462
1462
  /**
1463
1463
  * <p>A collection of tags associated with a resource.</p>
1464
1464
  * @public
1465
1465
  */
1466
- Tags?: Record<string, string>;
1466
+ Tags?: Record<string, string> | undefined;
1467
1467
  }