@aws-sdk/client-resiliencehub 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.
@@ -103,12 +103,12 @@ export declare class ResourceNotFoundException extends __BaseException {
103
103
  * <p>The identifier of the resource that the exception applies to.</p>
104
104
  * @public
105
105
  */
106
- resourceId?: string;
106
+ resourceId?: string | undefined;
107
107
  /**
108
108
  * <p>The type of the resource that the exception applies to.</p>
109
109
  * @public
110
110
  */
111
- resourceType?: string;
111
+ resourceType?: string | undefined;
112
112
  /**
113
113
  * @internal
114
114
  */
@@ -125,7 +125,7 @@ export declare class ThrottlingException extends __BaseException {
125
125
  * <p>The number of seconds to wait before retrying the operation.</p>
126
126
  * @public
127
127
  */
128
- retryAfterSeconds?: number;
128
+ retryAfterSeconds?: number | undefined;
129
129
  /**
130
130
  * @internal
131
131
  */
@@ -326,12 +326,12 @@ export interface PhysicalResourceId {
326
326
  * <p>The Amazon Web Services Region that the physical resource is located in.</p>
327
327
  * @public
328
328
  */
329
- awsRegion?: string;
329
+ awsRegion?: string | undefined;
330
330
  /**
331
331
  * <p>The Amazon Web Services account that owns the physical resource.</p>
332
332
  * @public
333
333
  */
334
- awsAccountId?: string;
334
+ awsAccountId?: string | undefined;
335
335
  }
336
336
  /**
337
337
  * <p>Defines a resource mapping.</p>
@@ -342,22 +342,22 @@ export interface ResourceMapping {
342
342
  * <p>Name of the resource that this resource is mapped to when the <code>mappingType</code> is <code>Resource</code>.</p>
343
343
  * @public
344
344
  */
345
- resourceName?: string;
345
+ resourceName?: string | undefined;
346
346
  /**
347
347
  * <p>Name of the CloudFormation stack this resource is mapped to when the <code>mappingType</code> is <code>CfnStack</code>.</p>
348
348
  * @public
349
349
  */
350
- logicalStackName?: string;
350
+ logicalStackName?: string | undefined;
351
351
  /**
352
352
  * <p>Name of the application this resource is mapped to when the <code>mappingType</code> is <code>AppRegistryApp</code>.</p>
353
353
  * @public
354
354
  */
355
- appRegistryAppName?: string;
355
+ appRegistryAppName?: string | undefined;
356
356
  /**
357
357
  * <p>Name of the Resource Groups that this resource is mapped to when the <code>mappingType</code> is <code>ResourceGroup</code>.</p>
358
358
  * @public
359
359
  */
360
- resourceGroupName?: string;
360
+ resourceGroupName?: string | undefined;
361
361
  /**
362
362
  * <p>Specifies the type of resource mapping.</p>
363
363
  * @public
@@ -372,7 +372,7 @@ export interface ResourceMapping {
372
372
  * <p>Name of the Terraform source that this resource is mapped to when the <code>mappingType</code> is <code>Terraform</code>.</p>
373
373
  * @public
374
374
  */
375
- terraformSourceName?: string;
375
+ terraformSourceName?: string | undefined;
376
376
  /**
377
377
  * <p>Name of the Amazon Elastic Kubernetes Service cluster and namespace that this resource is mapped to when the <code>mappingType</code> is
378
378
  * <code>EKS</code>.</p>
@@ -381,7 +381,7 @@ export interface ResourceMapping {
381
381
  * </note>
382
382
  * @public
383
383
  */
384
- eksSourceName?: string;
384
+ eksSourceName?: string | undefined;
385
385
  }
386
386
  /**
387
387
  * @public
@@ -446,12 +446,12 @@ export declare class ConflictException extends __BaseException {
446
446
  * <p>The identifier of the resource that the exception applies to.</p>
447
447
  * @public
448
448
  */
449
- resourceId?: string;
449
+ resourceId?: string | undefined;
450
450
  /**
451
451
  * <p>The type of the resource that the exception applies to.</p>
452
452
  * @public
453
453
  */
454
- resourceType?: string;
454
+ resourceType?: string | undefined;
455
455
  /**
456
456
  * @internal
457
457
  */
@@ -492,32 +492,32 @@ export interface RecommendationItem {
492
492
  * <p>Identifier of the resource.</p>
493
493
  * @public
494
494
  */
495
- resourceId?: string;
495
+ resourceId?: string | undefined;
496
496
  /**
497
497
  * <p>Identifier of the target account.</p>
498
498
  * @public
499
499
  */
500
- targetAccountId?: string;
500
+ targetAccountId?: string | undefined;
501
501
  /**
502
502
  * <p>The target region.</p>
503
503
  * @public
504
504
  */
505
- targetRegion?: string;
505
+ targetRegion?: string | undefined;
506
506
  /**
507
507
  * <p>Specifies if the recommendation has already been implemented.</p>
508
508
  * @public
509
509
  */
510
- alreadyImplemented?: boolean;
510
+ alreadyImplemented?: boolean | undefined;
511
511
  /**
512
512
  * <p>Indicates if an operational recommendation item is excluded.</p>
513
513
  * @public
514
514
  */
515
- excluded?: boolean;
515
+ excluded?: boolean | undefined;
516
516
  /**
517
517
  * <p>Indicates the reason for excluding an operational recommendation.</p>
518
518
  * @public
519
519
  */
520
- excludeReason?: ExcludeRecommendationReason;
520
+ excludeReason?: ExcludeRecommendationReason | undefined;
521
521
  }
522
522
  /**
523
523
  * @public
@@ -572,7 +572,7 @@ export interface AlarmRecommendation {
572
572
  * <p>Description of the alarm recommendation.</p>
573
573
  * @public
574
574
  */
575
- description?: string;
575
+ description?: string | undefined;
576
576
  /**
577
577
  * <p>Type of alarm recommendation.</p>
578
578
  * @public
@@ -585,27 +585,27 @@ export interface AlarmRecommendation {
585
585
  * item in the <code>appComponentNames</code> list.</p>
586
586
  * @public
587
587
  */
588
- appComponentName?: string;
588
+ appComponentName?: string | undefined;
589
589
  /**
590
590
  * <p>List of CloudWatch alarm recommendations.</p>
591
591
  * @public
592
592
  */
593
- items?: RecommendationItem[];
593
+ items?: RecommendationItem[] | undefined;
594
594
  /**
595
595
  * <p>The prerequisite for the alarm recommendation.</p>
596
596
  * @public
597
597
  */
598
- prerequisite?: string;
598
+ prerequisite?: string | undefined;
599
599
  /**
600
600
  * <p>List of Application Component names for the CloudWatch alarm recommendation.</p>
601
601
  * @public
602
602
  */
603
- appComponentNames?: string[];
603
+ appComponentNames?: string[] | undefined;
604
604
  /**
605
605
  * <p>Status of the recommended Amazon CloudWatch alarm.</p>
606
606
  * @public
607
607
  */
608
- recommendationStatus?: RecommendationStatus;
608
+ recommendationStatus?: RecommendationStatus | undefined;
609
609
  }
610
610
  /**
611
611
  * @public
@@ -688,7 +688,7 @@ export interface EventSubscription {
688
688
  * <i>Amazon Web Services General Reference</i> guide.</p>
689
689
  * @public
690
690
  */
691
- snsTopicArn?: string;
691
+ snsTopicArn?: string | undefined;
692
692
  }
693
693
  /**
694
694
  * @public
@@ -734,7 +734,7 @@ export interface PermissionModel {
734
734
  * </note>
735
735
  * @public
736
736
  */
737
- invokerRoleName?: string;
737
+ invokerRoleName?: string | undefined;
738
738
  /**
739
739
  * <p>Defines a list of role Amazon Resource Names (ARNs) to be used in other accounts. These
740
740
  * ARNs are used for querying purposes while importing resources and assessing your
@@ -754,7 +754,7 @@ export interface PermissionModel {
754
754
  * </note>
755
755
  * @public
756
756
  */
757
- crossAccountRoleArns?: string[];
757
+ crossAccountRoleArns?: string[] | undefined;
758
758
  }
759
759
  /**
760
760
  * @public
@@ -791,7 +791,7 @@ export interface App {
791
791
  * <p>Optional description for an application.</p>
792
792
  * @public
793
793
  */
794
- description?: string;
794
+ description?: string | undefined;
795
795
  /**
796
796
  * <p>Amazon Resource Name (ARN) of the resiliency policy. The format for this ARN is:
797
797
  * arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:resiliency-policy/<code>policy-id</code>. For more information about ARNs,
@@ -800,7 +800,7 @@ export interface App {
800
800
  * <i>Amazon Web Services General Reference</i> guide.</p>
801
801
  * @public
802
802
  */
803
- policyArn?: string;
803
+ policyArn?: string | undefined;
804
804
  /**
805
805
  * <p>Date and time when the app was created.</p>
806
806
  * @public
@@ -810,44 +810,44 @@ export interface App {
810
810
  * <p>Status of the application.</p>
811
811
  * @public
812
812
  */
813
- status?: AppStatusType;
813
+ status?: AppStatusType | undefined;
814
814
  /**
815
815
  * <p>Current status of compliance for the resiliency policy.</p>
816
816
  * @public
817
817
  */
818
- complianceStatus?: AppComplianceStatusType;
818
+ complianceStatus?: AppComplianceStatusType | undefined;
819
819
  /**
820
820
  * <p>Date and time the most recent compliance evaluation.</p>
821
821
  * @public
822
822
  */
823
- lastAppComplianceEvaluationTime?: Date;
823
+ lastAppComplianceEvaluationTime?: Date | undefined;
824
824
  /**
825
825
  * <p>Current resiliency score for the application.</p>
826
826
  * @public
827
827
  */
828
- resiliencyScore?: number;
828
+ resiliencyScore?: number | undefined;
829
829
  /**
830
830
  * <p>Date and time the most recent resiliency score evaluation.</p>
831
831
  * @public
832
832
  */
833
- lastResiliencyScoreEvaluationTime?: Date;
833
+ lastResiliencyScoreEvaluationTime?: Date | undefined;
834
834
  /**
835
835
  * <p>Tags assigned to the resource. A tag is a label that you assign to an Amazon Web Services resource.
836
836
  * Each tag consists of a key/value pair.</p>
837
837
  * @public
838
838
  */
839
- tags?: Record<string, string>;
839
+ tags?: Record<string, string> | undefined;
840
840
  /**
841
841
  * <p>Assessment execution schedule with 'Daily' or 'Disabled' values. </p>
842
842
  * @public
843
843
  */
844
- assessmentSchedule?: AppAssessmentScheduleType;
844
+ assessmentSchedule?: AppAssessmentScheduleType | undefined;
845
845
  /**
846
846
  * <p>Defines the roles and credentials that Resilience Hub would use while creating the
847
847
  * application, importing its resources, and running an assessment.</p>
848
848
  * @public
849
849
  */
850
- permissionModel?: PermissionModel;
850
+ permissionModel?: PermissionModel | undefined;
851
851
  /**
852
852
  * <p>The list of events you would like to subscribe and get notification for. Currently,
853
853
  * Resilience Hub supports notifications only for <b>Drift
@@ -855,28 +855,28 @@ export interface App {
855
855
  * events.</p>
856
856
  * @public
857
857
  */
858
- eventSubscriptions?: EventSubscription[];
858
+ eventSubscriptions?: EventSubscription[] | undefined;
859
859
  /**
860
860
  * <p>Indicates if compliance drifts (deviations) were detected while running an assessment for
861
861
  * your application.</p>
862
862
  * @public
863
863
  */
864
- driftStatus?: AppDriftStatusType;
864
+ driftStatus?: AppDriftStatusType | undefined;
865
865
  /**
866
866
  * <p>Indicates the last time that a drift was evaluated.</p>
867
867
  * @public
868
868
  */
869
- lastDriftEvaluationTime?: Date;
869
+ lastDriftEvaluationTime?: Date | undefined;
870
870
  /**
871
871
  * <p>Recovery Time Objective (RTO) in seconds.</p>
872
872
  * @public
873
873
  */
874
- rtoInSecs?: number;
874
+ rtoInSecs?: number | undefined;
875
875
  /**
876
876
  * <p>Recovery Point Objective (RPO) in seconds.</p>
877
877
  * @public
878
878
  */
879
- rpoInSecs?: number;
879
+ rpoInSecs?: number | undefined;
880
880
  /**
881
881
  * <p>Amazon Resource Name (ARN) of Resource Groups group that is integrated with an AppRegistry application. For more information about ARNs,
882
882
  * see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
@@ -884,7 +884,7 @@ export interface App {
884
884
  * <i>Amazon Web Services General Reference</i> guide.</p>
885
885
  * @public
886
886
  */
887
- awsApplicationArn?: string;
887
+ awsApplicationArn?: string | undefined;
888
888
  }
889
889
  /**
890
890
  * @public
@@ -937,37 +937,37 @@ export interface DisruptionCompliance {
937
937
  * <p>The Recovery Time Objective (RTO) that is achievable, in seconds</p>
938
938
  * @public
939
939
  */
940
- achievableRtoInSecs?: number;
940
+ achievableRtoInSecs?: number | undefined;
941
941
  /**
942
942
  * <p>The current RTO, in seconds.</p>
943
943
  * @public
944
944
  */
945
- currentRtoInSecs?: number;
945
+ currentRtoInSecs?: number | undefined;
946
946
  /**
947
947
  * <p>Reference identifier of the RTO.</p>
948
948
  * @public
949
949
  */
950
- rtoReferenceId?: string;
950
+ rtoReferenceId?: string | undefined;
951
951
  /**
952
952
  * <p>The RTO description.</p>
953
953
  * @public
954
954
  */
955
- rtoDescription?: string;
955
+ rtoDescription?: string | undefined;
956
956
  /**
957
957
  * <p>The current RPO, in seconds.</p>
958
958
  * @public
959
959
  */
960
- currentRpoInSecs?: number;
960
+ currentRpoInSecs?: number | undefined;
961
961
  /**
962
962
  * <p>Reference identifier of the RPO .</p>
963
963
  * @public
964
964
  */
965
- rpoReferenceId?: string;
965
+ rpoReferenceId?: string | undefined;
966
966
  /**
967
967
  * <p>The RPO description.</p>
968
968
  * @public
969
969
  */
970
- rpoDescription?: string;
970
+ rpoDescription?: string | undefined;
971
971
  /**
972
972
  * <p>The current status of compliance for the resiliency policy.</p>
973
973
  * @public
@@ -977,12 +977,12 @@ export interface DisruptionCompliance {
977
977
  * <p>The Recovery Point Objective (RPO) that is achievable, in seconds.</p>
978
978
  * @public
979
979
  */
980
- achievableRpoInSecs?: number;
980
+ achievableRpoInSecs?: number | undefined;
981
981
  /**
982
982
  * <p>The disruption compliance message.</p>
983
983
  * @public
984
984
  */
985
- message?: string;
985
+ message?: string | undefined;
986
986
  }
987
987
  /**
988
988
  * @public
@@ -1125,50 +1125,50 @@ export interface ResiliencyPolicy {
1125
1125
  * <i>Amazon Web Services General Reference</i> guide.</p>
1126
1126
  * @public
1127
1127
  */
1128
- policyArn?: string;
1128
+ policyArn?: string | undefined;
1129
1129
  /**
1130
1130
  * <p>The name of the policy</p>
1131
1131
  * @public
1132
1132
  */
1133
- policyName?: string;
1133
+ policyName?: string | undefined;
1134
1134
  /**
1135
1135
  * <p>The description for the policy.</p>
1136
1136
  * @public
1137
1137
  */
1138
- policyDescription?: string;
1138
+ policyDescription?: string | undefined;
1139
1139
  /**
1140
1140
  * <p>Specifies a high-level geographical location constraint for where your resilience policy
1141
1141
  * data can be stored.</p>
1142
1142
  * @public
1143
1143
  */
1144
- dataLocationConstraint?: DataLocationConstraint;
1144
+ dataLocationConstraint?: DataLocationConstraint | undefined;
1145
1145
  /**
1146
1146
  * <p>The tier for this resiliency policy, ranging from the highest severity
1147
1147
  * (<code>MissionCritical</code>) to lowest (<code>NonCritical</code>).</p>
1148
1148
  * @public
1149
1149
  */
1150
- tier?: ResiliencyPolicyTier;
1150
+ tier?: ResiliencyPolicyTier | undefined;
1151
1151
  /**
1152
1152
  * <p>Specifies the estimated cost tier of the resiliency policy.</p>
1153
1153
  * @public
1154
1154
  */
1155
- estimatedCostTier?: EstimatedCostTier;
1155
+ estimatedCostTier?: EstimatedCostTier | undefined;
1156
1156
  /**
1157
1157
  * <p>The resiliency policy.</p>
1158
1158
  * @public
1159
1159
  */
1160
- policy?: Partial<Record<DisruptionType, FailurePolicy>>;
1160
+ policy?: Partial<Record<DisruptionType, FailurePolicy>> | undefined;
1161
1161
  /**
1162
1162
  * <p>Date and time when the resiliency policy was created.</p>
1163
1163
  * @public
1164
1164
  */
1165
- creationTime?: Date;
1165
+ creationTime?: Date | undefined;
1166
1166
  /**
1167
1167
  * <p>Tags assigned to the resource. A tag is a label that you assign to an Amazon Web Services resource.
1168
1168
  * Each tag consists of a key/value pair.</p>
1169
1169
  * @public
1170
1170
  */
1171
- tags?: Record<string, string>;
1171
+ tags?: Record<string, string> | undefined;
1172
1172
  }
1173
1173
  /**
1174
1174
  * @public
@@ -1195,7 +1195,7 @@ export interface ScoringComponentResiliencyScore {
1195
1195
  * equal to the <code>possibleScore</code>.</p>
1196
1196
  * @public
1197
1197
  */
1198
- score?: number;
1198
+ score?: number | undefined;
1199
1199
  /**
1200
1200
  * <p>Maximum possible score that can be obtained for the scoring component. </p>
1201
1201
  * <p>For example, if the <code>possibleScore</code> is 20 points, it indicates the maximum
@@ -1203,7 +1203,7 @@ export interface ScoringComponentResiliencyScore {
1203
1203
  * implementing all the Resilience Hub recommendations.</p>
1204
1204
  * @public
1205
1205
  */
1206
- possibleScore?: number;
1206
+ possibleScore?: number | undefined;
1207
1207
  /**
1208
1208
  * <p>Number of recommendations that must be implemented to obtain the maximum possible score
1209
1209
  * for the scoring component. For SOPs, alarms, and tests, these are the number of
@@ -1214,14 +1214,14 @@ export interface ScoringComponentResiliencyScore {
1214
1214
  * maximum possible score.</p>
1215
1215
  * @public
1216
1216
  */
1217
- outstandingCount?: number;
1217
+ outstandingCount?: number | undefined;
1218
1218
  /**
1219
1219
  * <p>Number of recommendations that were excluded from the assessment.</p>
1220
1220
  * <p>For example, if the <code>excludedCount</code> for Alarms coverage scoring component is 7,
1221
1221
  * it indicates that 7 Amazon CloudWatch alarms are excluded from the assessment.</p>
1222
1222
  * @public
1223
1223
  */
1224
- excludedCount?: number;
1224
+ excludedCount?: number | undefined;
1225
1225
  }
1226
1226
  /**
1227
1227
  * <p>The overall resiliency score, returned as an object that includes the disruption score and
@@ -1246,7 +1246,7 @@ export interface ResiliencyScore {
1246
1246
  * your application generated by Resilience Hub after running an assessment.</p>
1247
1247
  * @public
1248
1248
  */
1249
- componentScore?: Partial<Record<ResiliencyScoreType, ScoringComponentResiliencyScore>>;
1249
+ componentScore?: Partial<Record<ResiliencyScoreType, ScoringComponentResiliencyScore>> | undefined;
1250
1250
  }
1251
1251
  /**
1252
1252
  * <p> Defines application resource errors. </p>
@@ -1257,17 +1257,17 @@ export interface ResourceError {
1257
1257
  * <p>Identifier of the logical resource. </p>
1258
1258
  * @public
1259
1259
  */
1260
- logicalResourceId?: string;
1260
+ logicalResourceId?: string | undefined;
1261
1261
  /**
1262
1262
  * <p>Identifier of the physical resource. </p>
1263
1263
  * @public
1264
1264
  */
1265
- physicalResourceId?: string;
1265
+ physicalResourceId?: string | undefined;
1266
1266
  /**
1267
1267
  * <p> This is the error message. </p>
1268
1268
  * @public
1269
1269
  */
1270
- reason?: string;
1270
+ reason?: string | undefined;
1271
1271
  }
1272
1272
  /**
1273
1273
  * <p> A list of errors retrieving an application's resources. </p>
@@ -1278,14 +1278,14 @@ export interface ResourceErrorsDetails {
1278
1278
  * <p> A list of errors retrieving an application's resources. </p>
1279
1279
  * @public
1280
1280
  */
1281
- resourceErrors?: ResourceError[];
1281
+ resourceErrors?: ResourceError[] | undefined;
1282
1282
  /**
1283
1283
  * <p> This indicates if there are more errors not listed in the
1284
1284
  * <code>resourceErrors</code>
1285
1285
  * list. </p>
1286
1286
  * @public
1287
1287
  */
1288
- hasMoreErrors?: boolean;
1288
+ hasMoreErrors?: boolean | undefined;
1289
1289
  }
1290
1290
  /**
1291
1291
  * <p>Indicates a specific risk identified in the Resilience Hub assessment and the corresponding recommendation provided to address that risk.</p>
@@ -1308,7 +1308,7 @@ export interface AssessmentRiskRecommendation {
1308
1308
  * </note>
1309
1309
  * @public
1310
1310
  */
1311
- risk?: string;
1311
+ risk?: string | undefined;
1312
1312
  /**
1313
1313
  * <p>Indicates the recommendation provided by the Resilience Hub to address the identified
1314
1314
  * risks in the application.</p>
@@ -1317,7 +1317,7 @@ export interface AssessmentRiskRecommendation {
1317
1317
  * </note>
1318
1318
  * @public
1319
1319
  */
1320
- recommendation?: string;
1320
+ recommendation?: string | undefined;
1321
1321
  /**
1322
1322
  * <p>Indicates the Application Components (AppComponents) that were assessed as part of the
1323
1323
  * assessnent and are associated with the identified risk and recommendation.</p>
@@ -1326,7 +1326,7 @@ export interface AssessmentRiskRecommendation {
1326
1326
  * </note>
1327
1327
  * @public
1328
1328
  */
1329
- appComponents?: string[];
1329
+ appComponents?: string[] | undefined;
1330
1330
  }
1331
1331
  /**
1332
1332
  * <p>Indicates the AI-generated summary for the Resilience Hub assessment, providing a concise overview that highlights the top risks and recommendations.</p>
@@ -1343,7 +1343,7 @@ export interface AssessmentSummary {
1343
1343
  * </note>
1344
1344
  * @public
1345
1345
  */
1346
- summary?: string;
1346
+ summary?: string | undefined;
1347
1347
  /**
1348
1348
  * <p>Indicates the top risks and recommendations identified by the Resilience Hub assessment,
1349
1349
  * each representing a specific risk and the corresponding recommendation to address it.</p>
@@ -1352,7 +1352,7 @@ export interface AssessmentSummary {
1352
1352
  * </note>
1353
1353
  * @public
1354
1354
  */
1355
- riskRecommendations?: AssessmentRiskRecommendation[];
1355
+ riskRecommendations?: AssessmentRiskRecommendation[] | undefined;
1356
1356
  }
1357
1357
  /**
1358
1358
  * <p>Defines an application assessment.</p>
@@ -1367,12 +1367,12 @@ export interface AppAssessment {
1367
1367
  * <i>Amazon Web Services General Reference</i> guide.</p>
1368
1368
  * @public
1369
1369
  */
1370
- appArn?: string;
1370
+ appArn?: string | undefined;
1371
1371
  /**
1372
1372
  * <p>Version of an application.</p>
1373
1373
  * @public
1374
1374
  */
1375
- appVersion?: string;
1375
+ appVersion?: string | undefined;
1376
1376
  /**
1377
1377
  * <p>The entity that invoked the assessment.</p>
1378
1378
  * @public
@@ -1382,22 +1382,22 @@ export interface AppAssessment {
1382
1382
  * <p>Cost for the application.</p>
1383
1383
  * @public
1384
1384
  */
1385
- cost?: Cost;
1385
+ cost?: Cost | undefined;
1386
1386
  /**
1387
1387
  * <p>Current resiliency score for an application.</p>
1388
1388
  * @public
1389
1389
  */
1390
- resiliencyScore?: ResiliencyScore;
1390
+ resiliencyScore?: ResiliencyScore | undefined;
1391
1391
  /**
1392
1392
  * <p>Application compliance against the resiliency policy.</p>
1393
1393
  * @public
1394
1394
  */
1395
- compliance?: Partial<Record<DisruptionType, DisruptionCompliance>>;
1395
+ compliance?: Partial<Record<DisruptionType, DisruptionCompliance>> | undefined;
1396
1396
  /**
1397
1397
  * <p>Current status of the compliance for the resiliency policy.</p>
1398
1398
  * @public
1399
1399
  */
1400
- complianceStatus?: ComplianceStatus;
1400
+ complianceStatus?: ComplianceStatus | undefined;
1401
1401
  /**
1402
1402
  * <p>Current status of the assessment for the resiliency policy.</p>
1403
1403
  * @public
@@ -1407,22 +1407,22 @@ export interface AppAssessment {
1407
1407
  * <p>Starting time for the action.</p>
1408
1408
  * @public
1409
1409
  */
1410
- startTime?: Date;
1410
+ startTime?: Date | undefined;
1411
1411
  /**
1412
1412
  * <p>End time for the action.</p>
1413
1413
  * @public
1414
1414
  */
1415
- endTime?: Date;
1415
+ endTime?: Date | undefined;
1416
1416
  /**
1417
1417
  * <p>Error or warning message from the assessment execution</p>
1418
1418
  * @public
1419
1419
  */
1420
- message?: string;
1420
+ message?: string | undefined;
1421
1421
  /**
1422
1422
  * <p>Name of the assessment.</p>
1423
1423
  * @public
1424
1424
  */
1425
- assessmentName?: string;
1425
+ assessmentName?: string | undefined;
1426
1426
  /**
1427
1427
  * <p>Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
1428
1428
  * arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
@@ -1436,30 +1436,30 @@ export interface AppAssessment {
1436
1436
  * <p>Resiliency policy of an application.</p>
1437
1437
  * @public
1438
1438
  */
1439
- policy?: ResiliencyPolicy;
1439
+ policy?: ResiliencyPolicy | undefined;
1440
1440
  /**
1441
1441
  * <p>Tags assigned to the resource. A tag is a label that you assign to an Amazon Web Services resource.
1442
1442
  * Each tag consists of a key/value pair.</p>
1443
1443
  * @public
1444
1444
  */
1445
- tags?: Record<string, string>;
1445
+ tags?: Record<string, string> | undefined;
1446
1446
  /**
1447
1447
  * <p> A resource error object containing a list of errors retrieving an application's
1448
1448
  * resources. </p>
1449
1449
  * @public
1450
1450
  */
1451
- resourceErrorsDetails?: ResourceErrorsDetails;
1451
+ resourceErrorsDetails?: ResourceErrorsDetails | undefined;
1452
1452
  /**
1453
1453
  * <p>Version name of the published application.</p>
1454
1454
  * @public
1455
1455
  */
1456
- versionName?: string;
1456
+ versionName?: string | undefined;
1457
1457
  /**
1458
1458
  * <p>Indicates if compliance drifts (deviations) were detected while running an assessment for
1459
1459
  * your application.</p>
1460
1460
  * @public
1461
1461
  */
1462
- driftStatus?: DriftStatus;
1462
+ driftStatus?: DriftStatus | undefined;
1463
1463
  /**
1464
1464
  * <p>Indicates the AI-generated summary for the Resilience Hub assessment, providing a concise overview that highlights the top risks and recommendations.</p>
1465
1465
  * <note>
@@ -1467,7 +1467,7 @@ export interface AppAssessment {
1467
1467
  * </note>
1468
1468
  * @public
1469
1469
  */
1470
- summary?: AssessmentSummary;
1470
+ summary?: AssessmentSummary | undefined;
1471
1471
  }
1472
1472
  /**
1473
1473
  * <p>Defines an application assessment summary.</p>
@@ -1482,12 +1482,12 @@ export interface AppAssessmentSummary {
1482
1482
  * <i>Amazon Web Services General Reference</i> guide.</p>
1483
1483
  * @public
1484
1484
  */
1485
- appArn?: string;
1485
+ appArn?: string | undefined;
1486
1486
  /**
1487
1487
  * <p>Version of an application.</p>
1488
1488
  * @public
1489
1489
  */
1490
- appVersion?: string;
1490
+ appVersion?: string | undefined;
1491
1491
  /**
1492
1492
  * <p>Current status of the assessment for the resiliency policy.</p>
1493
1493
  * @public
@@ -1497,27 +1497,27 @@ export interface AppAssessmentSummary {
1497
1497
  * <p>Entity that invoked the assessment.</p>
1498
1498
  * @public
1499
1499
  */
1500
- invoker?: AssessmentInvoker;
1500
+ invoker?: AssessmentInvoker | undefined;
1501
1501
  /**
1502
1502
  * <p>Starting time for the action.</p>
1503
1503
  * @public
1504
1504
  */
1505
- startTime?: Date;
1505
+ startTime?: Date | undefined;
1506
1506
  /**
1507
1507
  * <p>End time for the action.</p>
1508
1508
  * @public
1509
1509
  */
1510
- endTime?: Date;
1510
+ endTime?: Date | undefined;
1511
1511
  /**
1512
1512
  * <p>Message from the assessment run.</p>
1513
1513
  * @public
1514
1514
  */
1515
- message?: string;
1515
+ message?: string | undefined;
1516
1516
  /**
1517
1517
  * <p>Name of the assessment.</p>
1518
1518
  * @public
1519
1519
  */
1520
- assessmentName?: string;
1520
+ assessmentName?: string | undefined;
1521
1521
  /**
1522
1522
  * <p>Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
1523
1523
  * arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
@@ -1532,28 +1532,28 @@ export interface AppAssessmentSummary {
1532
1532
  * status of compliance for the resiliency policy.</p>
1533
1533
  * @public
1534
1534
  */
1535
- complianceStatus?: ComplianceStatus;
1535
+ complianceStatus?: ComplianceStatus | undefined;
1536
1536
  /**
1537
1537
  * <p>Cost for an application.</p>
1538
1538
  * @public
1539
1539
  */
1540
- cost?: Cost;
1540
+ cost?: Cost | undefined;
1541
1541
  /**
1542
1542
  * <p>Current resiliency score for the application.</p>
1543
1543
  * @public
1544
1544
  */
1545
- resiliencyScore?: number;
1545
+ resiliencyScore?: number | undefined;
1546
1546
  /**
1547
1547
  * <p>Name of an application version.</p>
1548
1548
  * @public
1549
1549
  */
1550
- versionName?: string;
1550
+ versionName?: string | undefined;
1551
1551
  /**
1552
1552
  * <p>Indicates if compliance drifts (deviations) were detected while running an assessment for
1553
1553
  * your application.</p>
1554
1554
  * @public
1555
1555
  */
1556
- driftStatus?: DriftStatus;
1556
+ driftStatus?: DriftStatus | undefined;
1557
1557
  }
1558
1558
  /**
1559
1559
  * <p>Defines an Application Component.</p>
@@ -1574,7 +1574,7 @@ export interface AppComponent {
1574
1574
  * <p>Identifier of the Application Component.</p>
1575
1575
  * @public
1576
1576
  */
1577
- id?: string;
1577
+ id?: string | undefined;
1578
1578
  /**
1579
1579
  * <p>Additional configuration parameters for an Resilience Hub application. If you want to implement <code>additionalInfo</code> through the Resilience Hub console rather than using an API call, see <a href="https://docs.aws.amazon.com/resilience-hub/latest/userguide/app-config-param.html">Configure the application configuration parameters</a>.</p>
1580
1580
  * <note>
@@ -1586,7 +1586,7 @@ export interface AppComponent {
1586
1586
  * </note>
1587
1587
  * @public
1588
1588
  */
1589
- additionalInfo?: Record<string, string[]>;
1589
+ additionalInfo?: Record<string, string[]> | undefined;
1590
1590
  }
1591
1591
  /**
1592
1592
  * <p>Defines the compliance of an Application Component against the resiliency policy.</p>
@@ -1597,32 +1597,32 @@ export interface AppComponentCompliance {
1597
1597
  * <p>The cost for the application.</p>
1598
1598
  * @public
1599
1599
  */
1600
- cost?: Cost;
1600
+ cost?: Cost | undefined;
1601
1601
  /**
1602
1602
  * <p>Name of the Application Component.</p>
1603
1603
  * @public
1604
1604
  */
1605
- appComponentName?: string;
1605
+ appComponentName?: string | undefined;
1606
1606
  /**
1607
1607
  * <p>The compliance of the Application Component against the resiliency policy.</p>
1608
1608
  * @public
1609
1609
  */
1610
- compliance?: Partial<Record<DisruptionType, DisruptionCompliance>>;
1610
+ compliance?: Partial<Record<DisruptionType, DisruptionCompliance>> | undefined;
1611
1611
  /**
1612
1612
  * <p>The compliance message.</p>
1613
1613
  * @public
1614
1614
  */
1615
- message?: string;
1615
+ message?: string | undefined;
1616
1616
  /**
1617
1617
  * <p>Status of the action.</p>
1618
1618
  * @public
1619
1619
  */
1620
- status?: ComplianceStatus;
1620
+ status?: ComplianceStatus | undefined;
1621
1621
  /**
1622
1622
  * <p>The current resiliency score for the application.</p>
1623
1623
  * @public
1624
1624
  */
1625
- resiliencyScore?: ResiliencyScore;
1625
+ resiliencyScore?: ResiliencyScore | undefined;
1626
1626
  }
1627
1627
  /**
1628
1628
  * <p>The input source of the namespace that is located on your Amazon Elastic Kubernetes Service
@@ -1665,7 +1665,7 @@ export interface AppInputSource {
1665
1665
  * <p>The name of the input source.</p>
1666
1666
  * @public
1667
1667
  */
1668
- sourceName?: string;
1668
+ sourceName?: string | undefined;
1669
1669
  /**
1670
1670
  * <p>The resource type of the input source.</p>
1671
1671
  * @public
@@ -1678,22 +1678,22 @@ export interface AppInputSource {
1678
1678
  * <i>Amazon Web Services General Reference</i> guide.</p>
1679
1679
  * @public
1680
1680
  */
1681
- sourceArn?: string;
1681
+ sourceArn?: string | undefined;
1682
1682
  /**
1683
1683
  * <p>The name of the Terraform s3 state file.</p>
1684
1684
  * @public
1685
1685
  */
1686
- terraformSource?: TerraformSource;
1686
+ terraformSource?: TerraformSource | undefined;
1687
1687
  /**
1688
1688
  * <p>The number of resources.</p>
1689
1689
  * @public
1690
1690
  */
1691
- resourceCount?: number;
1691
+ resourceCount?: number | undefined;
1692
1692
  /**
1693
1693
  * <p>The namespace on your Amazon Elastic Kubernetes Service cluster.</p>
1694
1694
  * @public
1695
1695
  */
1696
- eksSourceClusterNamespace?: EksSourceClusterNamespace;
1696
+ eksSourceClusterNamespace?: EksSourceClusterNamespace | undefined;
1697
1697
  }
1698
1698
  /**
1699
1699
  * <p>Defines an application summary.</p>
@@ -1718,7 +1718,7 @@ export interface AppSummary {
1718
1718
  * <p>The optional description for an app.</p>
1719
1719
  * @public
1720
1720
  */
1721
- description?: string;
1721
+ description?: string | undefined;
1722
1722
  /**
1723
1723
  * <p>Date and time when the app was created.</p>
1724
1724
  * @public
@@ -1728,43 +1728,43 @@ export interface AppSummary {
1728
1728
  * <p>The current status of compliance for the resiliency policy.</p>
1729
1729
  * @public
1730
1730
  */
1731
- complianceStatus?: AppComplianceStatusType;
1731
+ complianceStatus?: AppComplianceStatusType | undefined;
1732
1732
  /**
1733
1733
  * <p>The current resiliency score for the application.</p>
1734
1734
  * @public
1735
1735
  */
1736
- resiliencyScore?: number;
1736
+ resiliencyScore?: number | undefined;
1737
1737
  /**
1738
1738
  * <p> Assessment execution schedule with 'Daily' or 'Disabled' values. </p>
1739
1739
  * @public
1740
1740
  */
1741
- assessmentSchedule?: AppAssessmentScheduleType;
1741
+ assessmentSchedule?: AppAssessmentScheduleType | undefined;
1742
1742
  /**
1743
1743
  * <p>Status of the application.</p>
1744
1744
  * @public
1745
1745
  */
1746
- status?: AppStatusType;
1746
+ status?: AppStatusType | undefined;
1747
1747
  /**
1748
1748
  * <p>Indicates if compliance drifts (deviations) were detected while running an assessment for
1749
1749
  * your application.</p>
1750
1750
  * @public
1751
1751
  */
1752
- driftStatus?: AppDriftStatusType;
1752
+ driftStatus?: AppDriftStatusType | undefined;
1753
1753
  /**
1754
1754
  * <p>Date and time of the most recent compliance evaluation.</p>
1755
1755
  * @public
1756
1756
  */
1757
- lastAppComplianceEvaluationTime?: Date;
1757
+ lastAppComplianceEvaluationTime?: Date | undefined;
1758
1758
  /**
1759
1759
  * <p>Recovery Time Objective (RTO) in seconds.</p>
1760
1760
  * @public
1761
1761
  */
1762
- rtoInSecs?: number;
1762
+ rtoInSecs?: number | undefined;
1763
1763
  /**
1764
1764
  * <p>Recovery Point Objective (RPO) in seconds.</p>
1765
1765
  * @public
1766
1766
  */
1767
- rpoInSecs?: number;
1767
+ rpoInSecs?: number | undefined;
1768
1768
  /**
1769
1769
  * <p>Amazon Resource Name (ARN) of Resource Groups group that is integrated with an AppRegistry application. For more information about ARNs,
1770
1770
  * see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
@@ -1772,7 +1772,7 @@ export interface AppSummary {
1772
1772
  * <i>Amazon Web Services General Reference</i> guide.</p>
1773
1773
  * @public
1774
1774
  */
1775
- awsApplicationArn?: string;
1775
+ awsApplicationArn?: string | undefined;
1776
1776
  }
1777
1777
  /**
1778
1778
  * <p>Version of an application.</p>
@@ -1788,17 +1788,17 @@ export interface AppVersionSummary {
1788
1788
  * <p>Identifier of the application version.</p>
1789
1789
  * @public
1790
1790
  */
1791
- identifier?: number;
1791
+ identifier?: number | undefined;
1792
1792
  /**
1793
1793
  * <p>Creation time of the application version.</p>
1794
1794
  * @public
1795
1795
  */
1796
- creationTime?: Date;
1796
+ creationTime?: Date | undefined;
1797
1797
  /**
1798
1798
  * <p>Name of the application version.</p>
1799
1799
  * @public
1800
1800
  */
1801
- versionName?: string;
1801
+ versionName?: string | undefined;
1802
1802
  }
1803
1803
  /**
1804
1804
  * <p>Defines the operational recommendation item that needs a status update.</p>
@@ -1809,17 +1809,17 @@ export interface UpdateRecommendationStatusItem {
1809
1809
  * <p>Resource identifier of the operational recommendation item.</p>
1810
1810
  * @public
1811
1811
  */
1812
- resourceId?: string;
1812
+ resourceId?: string | undefined;
1813
1813
  /**
1814
1814
  * <p>Identifier of the target Amazon Web Services account.</p>
1815
1815
  * @public
1816
1816
  */
1817
- targetAccountId?: string;
1817
+ targetAccountId?: string | undefined;
1818
1818
  /**
1819
1819
  * <p>Identifier of the target Amazon Web Services Region.</p>
1820
1820
  * @public
1821
1821
  */
1822
- targetRegion?: string;
1822
+ targetRegion?: string | undefined;
1823
1823
  }
1824
1824
  /**
1825
1825
  * <p>Defines the operational recommendation item that is to be included or excluded.</p>
@@ -1843,7 +1843,7 @@ export interface UpdateRecommendationStatusRequestEntry {
1843
1843
  * <p>The operational recommendation item.</p>
1844
1844
  * @public
1845
1845
  */
1846
- item?: UpdateRecommendationStatusItem;
1846
+ item?: UpdateRecommendationStatusItem | undefined;
1847
1847
  /**
1848
1848
  * <p>Indicates if the operational recommendation needs to be excluded. If set to True, the
1849
1849
  * operational recommendation will be excluded.</p>
@@ -1854,7 +1854,7 @@ export interface UpdateRecommendationStatusRequestEntry {
1854
1854
  * <p>Indicates the reason for excluding an operational recommendation.</p>
1855
1855
  * @public
1856
1856
  */
1857
- excludeReason?: ExcludeRecommendationReason;
1857
+ excludeReason?: ExcludeRecommendationReason | undefined;
1858
1858
  }
1859
1859
  /**
1860
1860
  * @public
@@ -1917,7 +1917,7 @@ export interface BatchUpdateRecommendationStatusSuccessfulEntry {
1917
1917
  * <p>The operational recommendation item.</p>
1918
1918
  * @public
1919
1919
  */
1920
- item?: UpdateRecommendationStatusItem;
1920
+ item?: UpdateRecommendationStatusItem | undefined;
1921
1921
  /**
1922
1922
  * <p>Indicates if the operational recommendation was successfully excluded.</p>
1923
1923
  * @public
@@ -1927,7 +1927,7 @@ export interface BatchUpdateRecommendationStatusSuccessfulEntry {
1927
1927
  * <p>Indicates the reason for excluding an operational recommendation.</p>
1928
1928
  * @public
1929
1929
  */
1930
- excludeReason?: ExcludeRecommendationReason;
1930
+ excludeReason?: ExcludeRecommendationReason | undefined;
1931
1931
  }
1932
1932
  /**
1933
1933
  * @public
@@ -1967,7 +1967,7 @@ export interface CreateAppRequest {
1967
1967
  * <p>The optional description for an app.</p>
1968
1968
  * @public
1969
1969
  */
1970
- description?: string;
1970
+ description?: string | undefined;
1971
1971
  /**
1972
1972
  * <p>Amazon Resource Name (ARN) of the resiliency policy. The format for this ARN is:
1973
1973
  * arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:resiliency-policy/<code>policy-id</code>. For more information about ARNs,
@@ -1976,37 +1976,37 @@ export interface CreateAppRequest {
1976
1976
  * <i>Amazon Web Services General Reference</i> guide.</p>
1977
1977
  * @public
1978
1978
  */
1979
- policyArn?: string;
1979
+ policyArn?: string | undefined;
1980
1980
  /**
1981
1981
  * <p>Tags assigned to the resource. A tag is a label that you assign to an Amazon Web Services resource.
1982
1982
  * Each tag consists of a key/value pair.</p>
1983
1983
  * @public
1984
1984
  */
1985
- tags?: Record<string, string>;
1985
+ tags?: Record<string, string> | undefined;
1986
1986
  /**
1987
1987
  * <p>Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters.
1988
1988
  * You should not reuse the same client token for other API requests.</p>
1989
1989
  * @public
1990
1990
  */
1991
- clientToken?: string;
1991
+ clientToken?: string | undefined;
1992
1992
  /**
1993
1993
  * <p> Assessment execution schedule with 'Daily' or 'Disabled' values. </p>
1994
1994
  * @public
1995
1995
  */
1996
- assessmentSchedule?: AppAssessmentScheduleType;
1996
+ assessmentSchedule?: AppAssessmentScheduleType | undefined;
1997
1997
  /**
1998
1998
  * <p>Defines the roles and credentials that Resilience Hub would use while creating the
1999
1999
  * application, importing its resources, and running an assessment.</p>
2000
2000
  * @public
2001
2001
  */
2002
- permissionModel?: PermissionModel;
2002
+ permissionModel?: PermissionModel | undefined;
2003
2003
  /**
2004
2004
  * <p>The list of events you would like to subscribe and get notification for. Currently,
2005
2005
  * Resilience Hub supports only <b>Drift detected</b> and
2006
2006
  * <b>Scheduled assessment failure</b> events notification.</p>
2007
2007
  * @public
2008
2008
  */
2009
- eventSubscriptions?: EventSubscription[];
2009
+ eventSubscriptions?: EventSubscription[] | undefined;
2010
2010
  /**
2011
2011
  * <p>Amazon Resource Name (ARN) of Resource Groups group that is integrated with an AppRegistry application. For more information about ARNs,
2012
2012
  * see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
@@ -2014,7 +2014,7 @@ export interface CreateAppRequest {
2014
2014
  * <i>Amazon Web Services General Reference</i> guide.</p>
2015
2015
  * @public
2016
2016
  */
2017
- awsApplicationArn?: string;
2017
+ awsApplicationArn?: string | undefined;
2018
2018
  }
2019
2019
  /**
2020
2020
  * @public
@@ -2044,7 +2044,7 @@ export interface CreateAppVersionAppComponentRequest {
2044
2044
  * <p>Identifier of the Application Component.</p>
2045
2045
  * @public
2046
2046
  */
2047
- id?: string;
2047
+ id?: string | undefined;
2048
2048
  /**
2049
2049
  * <p>Name of the Application Component.</p>
2050
2050
  * @public
@@ -2059,13 +2059,13 @@ export interface CreateAppVersionAppComponentRequest {
2059
2059
  * <p>Currently, there is no supported additional information for Application Components.</p>
2060
2060
  * @public
2061
2061
  */
2062
- additionalInfo?: Record<string, string[]>;
2062
+ additionalInfo?: Record<string, string[]> | undefined;
2063
2063
  /**
2064
2064
  * <p>Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters.
2065
2065
  * You should not reuse the same client token for other API requests.</p>
2066
2066
  * @public
2067
2067
  */
2068
- clientToken?: string;
2068
+ clientToken?: string | undefined;
2069
2069
  }
2070
2070
  /**
2071
2071
  * @public
@@ -2089,7 +2089,7 @@ export interface CreateAppVersionAppComponentResponse {
2089
2089
  * <p>List of Application Components that belong to this resource.</p>
2090
2090
  * @public
2091
2091
  */
2092
- appComponent?: AppComponent;
2092
+ appComponent?: AppComponent | undefined;
2093
2093
  }
2094
2094
  /**
2095
2095
  * <p>Defines a logical resource identifier.</p>
@@ -2105,17 +2105,17 @@ export interface LogicalResourceId {
2105
2105
  * <p>The name of the CloudFormation stack this resource belongs to.</p>
2106
2106
  * @public
2107
2107
  */
2108
- logicalStackName?: string;
2108
+ logicalStackName?: string | undefined;
2109
2109
  /**
2110
2110
  * <p>The name of the resource group that this resource belongs to.</p>
2111
2111
  * @public
2112
2112
  */
2113
- resourceGroupName?: string;
2113
+ resourceGroupName?: string | undefined;
2114
2114
  /**
2115
2115
  * <p> The name of the Terraform S3 state file this resource belongs to. </p>
2116
2116
  * @public
2117
2117
  */
2118
- terraformSourceName?: string;
2118
+ terraformSourceName?: string | undefined;
2119
2119
  /**
2120
2120
  * <p>Name of the Amazon Elastic Kubernetes Service cluster and namespace this resource belongs to.</p>
2121
2121
  * <note>
@@ -2123,7 +2123,7 @@ export interface LogicalResourceId {
2123
2123
  * </note>
2124
2124
  * @public
2125
2125
  */
2126
- eksSourceName?: string;
2126
+ eksSourceName?: string | undefined;
2127
2127
  }
2128
2128
  /**
2129
2129
  * @public
@@ -2142,7 +2142,7 @@ export interface CreateAppVersionResourceRequest {
2142
2142
  * <p>Name of the resource.</p>
2143
2143
  * @public
2144
2144
  */
2145
- resourceName?: string;
2145
+ resourceName?: string | undefined;
2146
2146
  /**
2147
2147
  * <p>Logical identifier of the resource.</p>
2148
2148
  * @public
@@ -2157,12 +2157,12 @@ export interface CreateAppVersionResourceRequest {
2157
2157
  * <p>Amazon Web Services region that owns the physical resource.</p>
2158
2158
  * @public
2159
2159
  */
2160
- awsRegion?: string;
2160
+ awsRegion?: string | undefined;
2161
2161
  /**
2162
2162
  * <p>Amazon Web Services account that owns the physical resource.</p>
2163
2163
  * @public
2164
2164
  */
2165
- awsAccountId?: string;
2165
+ awsAccountId?: string | undefined;
2166
2166
  /**
2167
2167
  * <p>Type of resource.</p>
2168
2168
  * @public
@@ -2177,13 +2177,13 @@ export interface CreateAppVersionResourceRequest {
2177
2177
  * <p>Currently, there is no supported additional information for resources.</p>
2178
2178
  * @public
2179
2179
  */
2180
- additionalInfo?: Record<string, string[]>;
2180
+ additionalInfo?: Record<string, string[]> | undefined;
2181
2181
  /**
2182
2182
  * <p>Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters.
2183
2183
  * You should not reuse the same client token for other API requests.</p>
2184
2184
  * @public
2185
2185
  */
2186
- clientToken?: string;
2186
+ clientToken?: string | undefined;
2187
2187
  }
2188
2188
  /**
2189
2189
  * @public
@@ -2207,7 +2207,7 @@ export interface PhysicalResource {
2207
2207
  * <p>The name of the resource.</p>
2208
2208
  * @public
2209
2209
  */
2210
- resourceName?: string;
2210
+ resourceName?: string | undefined;
2211
2211
  /**
2212
2212
  * <p>Logical identifier of the resource.</p>
2213
2213
  * @public
@@ -2227,7 +2227,7 @@ export interface PhysicalResource {
2227
2227
  * <p>The application components that belong to this resource.</p>
2228
2228
  * @public
2229
2229
  */
2230
- appComponents?: AppComponent[];
2230
+ appComponents?: AppComponent[] | undefined;
2231
2231
  /**
2232
2232
  * <p>Additional configuration parameters for an Resilience Hub application. If you want to implement <code>additionalInfo</code> through the Resilience Hub console rather than using an API call, see <a href="https://docs.aws.amazon.com/resilience-hub/latest/userguide/app-config-param.html">Configure the application configuration parameters</a>.</p>
2233
2233
  * <note>
@@ -2239,22 +2239,22 @@ export interface PhysicalResource {
2239
2239
  * </note>
2240
2240
  * @public
2241
2241
  */
2242
- additionalInfo?: Record<string, string[]>;
2242
+ additionalInfo?: Record<string, string[]> | undefined;
2243
2243
  /**
2244
2244
  * <p>Indicates if a resource is included or excluded from the assessment.</p>
2245
2245
  * @public
2246
2246
  */
2247
- excluded?: boolean;
2247
+ excluded?: boolean | undefined;
2248
2248
  /**
2249
2249
  * <p>Type of input source.</p>
2250
2250
  * @public
2251
2251
  */
2252
- sourceType?: ResourceSourceType;
2252
+ sourceType?: ResourceSourceType | undefined;
2253
2253
  /**
2254
2254
  * <p>Name of the parent resource.</p>
2255
2255
  * @public
2256
2256
  */
2257
- parentResourceName?: string;
2257
+ parentResourceName?: string | undefined;
2258
2258
  }
2259
2259
  /**
2260
2260
  * @public
@@ -2278,7 +2278,7 @@ export interface CreateAppVersionResourceResponse {
2278
2278
  * <p>Defines a physical resource. A physical resource is a resource that exists in your account. It can be identified using an Amazon Resource Name (ARN) or a Resilience Hub-native identifier.</p>
2279
2279
  * @public
2280
2280
  */
2281
- physicalResource?: PhysicalResource;
2281
+ physicalResource?: PhysicalResource | undefined;
2282
2282
  }
2283
2283
  /**
2284
2284
  * @public
@@ -2313,7 +2313,7 @@ export interface CreateRecommendationTemplateRequest {
2313
2313
  * <p>Identifiers for the recommendations used to create a recommendation template.</p>
2314
2314
  * @public
2315
2315
  */
2316
- recommendationIds?: string[];
2316
+ recommendationIds?: string[] | undefined;
2317
2317
  /**
2318
2318
  * <p>The format for the recommendation template.</p>
2319
2319
  * <dl>
@@ -2328,7 +2328,7 @@ export interface CreateRecommendationTemplateRequest {
2328
2328
  * </dl>
2329
2329
  * @public
2330
2330
  */
2331
- format?: TemplateFormat;
2331
+ format?: TemplateFormat | undefined;
2332
2332
  /**
2333
2333
  * <p>An array of strings that specify the recommendation template type or types.</p>
2334
2334
  * <dl>
@@ -2347,7 +2347,7 @@ export interface CreateRecommendationTemplateRequest {
2347
2347
  * </dl>
2348
2348
  * @public
2349
2349
  */
2350
- recommendationTypes?: RenderRecommendationType[];
2350
+ recommendationTypes?: RenderRecommendationType[] | undefined;
2351
2351
  /**
2352
2352
  * <p>Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
2353
2353
  * arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
@@ -2367,18 +2367,18 @@ export interface CreateRecommendationTemplateRequest {
2367
2367
  * You should not reuse the same client token for other API requests.</p>
2368
2368
  * @public
2369
2369
  */
2370
- clientToken?: string;
2370
+ clientToken?: string | undefined;
2371
2371
  /**
2372
2372
  * <p>Tags assigned to the resource. A tag is a label that you assign to an Amazon Web Services resource.
2373
2373
  * Each tag consists of a key/value pair.</p>
2374
2374
  * @public
2375
2375
  */
2376
- tags?: Record<string, string>;
2376
+ tags?: Record<string, string> | undefined;
2377
2377
  /**
2378
2378
  * <p>The name of the Amazon S3 bucket that will contain the recommendation template.</p>
2379
2379
  * @public
2380
2380
  */
2381
- bucketName?: string;
2381
+ bucketName?: string | undefined;
2382
2382
  }
2383
2383
  /**
2384
2384
  * @public
@@ -2403,12 +2403,12 @@ export interface S3Location {
2403
2403
  * <p>The name of the Amazon S3 bucket.</p>
2404
2404
  * @public
2405
2405
  */
2406
- bucket?: string;
2406
+ bucket?: string | undefined;
2407
2407
  /**
2408
2408
  * <p>The prefix for the Amazon S3 bucket.</p>
2409
2409
  * @public
2410
2410
  */
2411
- prefix?: string;
2411
+ prefix?: string | undefined;
2412
2412
  }
2413
2413
  /**
2414
2414
  * <p>Defines a recommendation template created with the <a>CreateRecommendationTemplate</a> action.</p>
@@ -2419,7 +2419,7 @@ export interface RecommendationTemplate {
2419
2419
  * <p>The file location of the template.</p>
2420
2420
  * @public
2421
2421
  */
2422
- templatesLocation?: S3Location;
2422
+ templatesLocation?: S3Location | undefined;
2423
2423
  /**
2424
2424
  * <p>Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
2425
2425
  * arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
@@ -2437,12 +2437,12 @@ export interface RecommendationTemplate {
2437
2437
  * <i>Amazon Web Services General Reference</i> guide.</p>
2438
2438
  * @public
2439
2439
  */
2440
- appArn?: string;
2440
+ appArn?: string | undefined;
2441
2441
  /**
2442
2442
  * <p>Identifiers for the recommendations used in the recommendation template.</p>
2443
2443
  * @public
2444
2444
  */
2445
- recommendationIds?: string[];
2445
+ recommendationIds?: string[] | undefined;
2446
2446
  /**
2447
2447
  * <p>An array of strings that specify the recommendation template type or types.</p>
2448
2448
  * <dl>
@@ -2486,7 +2486,7 @@ export interface RecommendationTemplate {
2486
2486
  * <p>Message for the recommendation template.</p>
2487
2487
  * @public
2488
2488
  */
2489
- message?: string;
2489
+ message?: string | undefined;
2490
2490
  /**
2491
2491
  * <p>Status of the action.</p>
2492
2492
  * @public
@@ -2501,23 +2501,23 @@ export interface RecommendationTemplate {
2501
2501
  * <p>The start time for the action.</p>
2502
2502
  * @public
2503
2503
  */
2504
- startTime?: Date;
2504
+ startTime?: Date | undefined;
2505
2505
  /**
2506
2506
  * <p>The end time for the action.</p>
2507
2507
  * @public
2508
2508
  */
2509
- endTime?: Date;
2509
+ endTime?: Date | undefined;
2510
2510
  /**
2511
2511
  * <p>Tags assigned to the resource. A tag is a label that you assign to an Amazon Web Services resource.
2512
2512
  * Each tag consists of a key/value pair.</p>
2513
2513
  * @public
2514
2514
  */
2515
- tags?: Record<string, string>;
2515
+ tags?: Record<string, string> | undefined;
2516
2516
  /**
2517
2517
  * <p>Indicates if replacements are needed.</p>
2518
2518
  * @public
2519
2519
  */
2520
- needsReplacements?: boolean;
2520
+ needsReplacements?: boolean | undefined;
2521
2521
  }
2522
2522
  /**
2523
2523
  * @public
@@ -2528,7 +2528,7 @@ export interface CreateRecommendationTemplateResponse {
2528
2528
  * template's name, format, status, tags, Amazon S3 bucket location, and more.</p>
2529
2529
  * @public
2530
2530
  */
2531
- recommendationTemplate?: RecommendationTemplate;
2531
+ recommendationTemplate?: RecommendationTemplate | undefined;
2532
2532
  }
2533
2533
  /**
2534
2534
  * @public
@@ -2543,13 +2543,13 @@ export interface CreateResiliencyPolicyRequest {
2543
2543
  * <p>The description for the policy.</p>
2544
2544
  * @public
2545
2545
  */
2546
- policyDescription?: string;
2546
+ policyDescription?: string | undefined;
2547
2547
  /**
2548
2548
  * <p>Specifies a high-level geographical location constraint for where your resilience policy
2549
2549
  * data can be stored.</p>
2550
2550
  * @public
2551
2551
  */
2552
- dataLocationConstraint?: DataLocationConstraint;
2552
+ dataLocationConstraint?: DataLocationConstraint | undefined;
2553
2553
  /**
2554
2554
  * <p>The tier for this resiliency policy, ranging from the highest severity
2555
2555
  * (<code>MissionCritical</code>) to lowest (<code>NonCritical</code>).</p>
@@ -2567,13 +2567,13 @@ export interface CreateResiliencyPolicyRequest {
2567
2567
  * You should not reuse the same client token for other API requests.</p>
2568
2568
  * @public
2569
2569
  */
2570
- clientToken?: string;
2570
+ clientToken?: string | undefined;
2571
2571
  /**
2572
2572
  * <p>Tags assigned to the resource. A tag is a label that you assign to an Amazon Web Services resource.
2573
2573
  * Each tag consists of a key/value pair.</p>
2574
2574
  * @public
2575
2575
  */
2576
- tags?: Record<string, string>;
2576
+ tags?: Record<string, string> | undefined;
2577
2577
  }
2578
2578
  /**
2579
2579
  * @public
@@ -2603,13 +2603,13 @@ export interface DeleteAppRequest {
2603
2603
  * <p>A boolean option to force the deletion of an Resilience Hub application. </p>
2604
2604
  * @public
2605
2605
  */
2606
- forceDelete?: boolean;
2606
+ forceDelete?: boolean | undefined;
2607
2607
  /**
2608
2608
  * <p>Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters.
2609
2609
  * You should not reuse the same client token for other API requests.</p>
2610
2610
  * @public
2611
2611
  */
2612
- clientToken?: string;
2612
+ clientToken?: string | undefined;
2613
2613
  }
2614
2614
  /**
2615
2615
  * @public
@@ -2643,7 +2643,7 @@ export interface DeleteAppAssessmentRequest {
2643
2643
  * You should not reuse the same client token for other API requests.</p>
2644
2644
  * @public
2645
2645
  */
2646
- clientToken?: string;
2646
+ clientToken?: string | undefined;
2647
2647
  }
2648
2648
  /**
2649
2649
  * @public
@@ -2685,25 +2685,25 @@ export interface DeleteAppInputSourceRequest {
2685
2685
  * <i>Amazon Web Services General Reference</i> guide.</p>
2686
2686
  * @public
2687
2687
  */
2688
- sourceArn?: string;
2688
+ sourceArn?: string | undefined;
2689
2689
  /**
2690
2690
  * <p>The imported Terraform s3 state file you want to remove from the Resilience Hub
2691
2691
  * application.</p>
2692
2692
  * @public
2693
2693
  */
2694
- terraformSource?: TerraformSource;
2694
+ terraformSource?: TerraformSource | undefined;
2695
2695
  /**
2696
2696
  * <p>Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters.
2697
2697
  * You should not reuse the same client token for other API requests.</p>
2698
2698
  * @public
2699
2699
  */
2700
- clientToken?: string;
2700
+ clientToken?: string | undefined;
2701
2701
  /**
2702
2702
  * <p>The namespace on your Amazon Elastic Kubernetes Service cluster that you want to delete from the
2703
2703
  * Resilience Hub application.</p>
2704
2704
  * @public
2705
2705
  */
2706
- eksSourceClusterNamespace?: EksSourceClusterNamespace;
2706
+ eksSourceClusterNamespace?: EksSourceClusterNamespace | undefined;
2707
2707
  }
2708
2708
  /**
2709
2709
  * @public
@@ -2717,12 +2717,12 @@ export interface DeleteAppInputSourceResponse {
2717
2717
  * <i>Amazon Web Services General Reference</i> guide.</p>
2718
2718
  * @public
2719
2719
  */
2720
- appArn?: string;
2720
+ appArn?: string | undefined;
2721
2721
  /**
2722
2722
  * <p>Name of the input source from where the application resource is imported from.</p>
2723
2723
  * @public
2724
2724
  */
2725
- appInputSource?: AppInputSource;
2725
+ appInputSource?: AppInputSource | undefined;
2726
2726
  }
2727
2727
  /**
2728
2728
  * @public
@@ -2747,7 +2747,7 @@ export interface DeleteAppVersionAppComponentRequest {
2747
2747
  * You should not reuse the same client token for other API requests.</p>
2748
2748
  * @public
2749
2749
  */
2750
- clientToken?: string;
2750
+ clientToken?: string | undefined;
2751
2751
  }
2752
2752
  /**
2753
2753
  * @public
@@ -2771,7 +2771,7 @@ export interface DeleteAppVersionAppComponentResponse {
2771
2771
  * <p>List of Application Components that belong to this resource.</p>
2772
2772
  * @public
2773
2773
  */
2774
- appComponent?: AppComponent;
2774
+ appComponent?: AppComponent | undefined;
2775
2775
  }
2776
2776
  /**
2777
2777
  * @public
@@ -2790,33 +2790,33 @@ export interface DeleteAppVersionResourceRequest {
2790
2790
  * <p>Name of the resource.</p>
2791
2791
  * @public
2792
2792
  */
2793
- resourceName?: string;
2793
+ resourceName?: string | undefined;
2794
2794
  /**
2795
2795
  * <p>Logical identifier of the resource.</p>
2796
2796
  * @public
2797
2797
  */
2798
- logicalResourceId?: LogicalResourceId;
2798
+ logicalResourceId?: LogicalResourceId | undefined;
2799
2799
  /**
2800
2800
  * <p>Physical identifier of the resource.</p>
2801
2801
  * @public
2802
2802
  */
2803
- physicalResourceId?: string;
2803
+ physicalResourceId?: string | undefined;
2804
2804
  /**
2805
2805
  * <p>Amazon Web Services region that owns the physical resource.</p>
2806
2806
  * @public
2807
2807
  */
2808
- awsRegion?: string;
2808
+ awsRegion?: string | undefined;
2809
2809
  /**
2810
2810
  * <p>Amazon Web Services account that owns the physical resource.</p>
2811
2811
  * @public
2812
2812
  */
2813
- awsAccountId?: string;
2813
+ awsAccountId?: string | undefined;
2814
2814
  /**
2815
2815
  * <p>Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters.
2816
2816
  * You should not reuse the same client token for other API requests.</p>
2817
2817
  * @public
2818
2818
  */
2819
- clientToken?: string;
2819
+ clientToken?: string | undefined;
2820
2820
  }
2821
2821
  /**
2822
2822
  * @public
@@ -2840,7 +2840,7 @@ export interface DeleteAppVersionResourceResponse {
2840
2840
  * <p>Defines a physical resource. A physical resource is a resource that exists in your account. It can be identified using an Amazon Resource Name (ARN) or a Resilience Hub-native identifier.</p>
2841
2841
  * @public
2842
2842
  */
2843
- physicalResource?: PhysicalResource;
2843
+ physicalResource?: PhysicalResource | undefined;
2844
2844
  }
2845
2845
  /**
2846
2846
  * @public
@@ -2856,7 +2856,7 @@ export interface DeleteRecommendationTemplateRequest {
2856
2856
  * You should not reuse the same client token for other API requests.</p>
2857
2857
  * @public
2858
2858
  */
2859
- clientToken?: string;
2859
+ clientToken?: string | undefined;
2860
2860
  }
2861
2861
  /**
2862
2862
  * @public
@@ -2891,7 +2891,7 @@ export interface DeleteResiliencyPolicyRequest {
2891
2891
  * You should not reuse the same client token for other API requests.</p>
2892
2892
  * @public
2893
2893
  */
2894
- clientToken?: string;
2894
+ clientToken?: string | undefined;
2895
2895
  }
2896
2896
  /**
2897
2897
  * @public
@@ -3002,7 +3002,7 @@ export interface DescribeAppVersionResponse {
3002
3002
  * </note>
3003
3003
  * @public
3004
3004
  */
3005
- additionalInfo?: Record<string, string[]>;
3005
+ additionalInfo?: Record<string, string[]> | undefined;
3006
3006
  }
3007
3007
  /**
3008
3008
  * @public
@@ -3050,7 +3050,7 @@ export interface DescribeAppVersionAppComponentResponse {
3050
3050
  * <p>List of Application Components that belong to this resource.</p>
3051
3051
  * @public
3052
3052
  */
3053
- appComponent?: AppComponent;
3053
+ appComponent?: AppComponent | undefined;
3054
3054
  }
3055
3055
  /**
3056
3056
  * @public
@@ -3074,27 +3074,27 @@ export interface DescribeAppVersionResourceRequest {
3074
3074
  * <p>Name of the resource.</p>
3075
3075
  * @public
3076
3076
  */
3077
- resourceName?: string;
3077
+ resourceName?: string | undefined;
3078
3078
  /**
3079
3079
  * <p>Logical identifier of the resource.</p>
3080
3080
  * @public
3081
3081
  */
3082
- logicalResourceId?: LogicalResourceId;
3082
+ logicalResourceId?: LogicalResourceId | undefined;
3083
3083
  /**
3084
3084
  * <p>Physical identifier of the resource.</p>
3085
3085
  * @public
3086
3086
  */
3087
- physicalResourceId?: string;
3087
+ physicalResourceId?: string | undefined;
3088
3088
  /**
3089
3089
  * <p>Amazon Web Services region that owns the physical resource.</p>
3090
3090
  * @public
3091
3091
  */
3092
- awsRegion?: string;
3092
+ awsRegion?: string | undefined;
3093
3093
  /**
3094
3094
  * <p>Amazon Web Services account that owns the physical resource.</p>
3095
3095
  * @public
3096
3096
  */
3097
- awsAccountId?: string;
3097
+ awsAccountId?: string | undefined;
3098
3098
  }
3099
3099
  /**
3100
3100
  * @public
@@ -3118,7 +3118,7 @@ export interface DescribeAppVersionResourceResponse {
3118
3118
  * <p>Defines a physical resource. A physical resource is a resource that exists in your account. It can be identified using an Amazon Resource Name (ARN) or a Resilience Hub-native identifier.</p>
3119
3119
  * @public
3120
3120
  */
3121
- physicalResource?: PhysicalResource;
3121
+ physicalResource?: PhysicalResource | undefined;
3122
3122
  }
3123
3123
  /**
3124
3124
  * @public
@@ -3142,7 +3142,7 @@ export interface DescribeAppVersionResourcesResolutionStatusRequest {
3142
3142
  * <p>The identifier for a specific resolution.</p>
3143
3143
  * @public
3144
3144
  */
3145
- resolutionId?: string;
3145
+ resolutionId?: string | undefined;
3146
3146
  }
3147
3147
  /**
3148
3148
  * @public
@@ -3190,7 +3190,7 @@ export interface DescribeAppVersionResourcesResolutionStatusResponse {
3190
3190
  * <p>The returned error message for the request.</p>
3191
3191
  * @public
3192
3192
  */
3193
- errorMessage?: string;
3193
+ errorMessage?: string | undefined;
3194
3194
  }
3195
3195
  /**
3196
3196
  * @public
@@ -3517,7 +3517,7 @@ export interface ErrorDetail {
3517
3517
  * <p>Provides additional information about the error.</p>
3518
3518
  * @public
3519
3519
  */
3520
- errorMessage?: string;
3520
+ errorMessage?: string | undefined;
3521
3521
  }
3522
3522
  /**
3523
3523
  * @public
@@ -3565,12 +3565,12 @@ export interface DescribeDraftAppVersionResourcesImportStatusResponse {
3565
3565
  * <p>The error message returned for the resource request.</p>
3566
3566
  * @public
3567
3567
  */
3568
- errorMessage?: string;
3568
+ errorMessage?: string | undefined;
3569
3569
  /**
3570
3570
  * <p>List of errors that were encountered while importing resources.</p>
3571
3571
  * @public
3572
3572
  */
3573
- errorDetails?: ErrorDetail[];
3573
+ errorDetails?: ErrorDetail[] | undefined;
3574
3574
  }
3575
3575
  /**
3576
3576
  * @public
@@ -3615,7 +3615,7 @@ export interface DescribeResourceGroupingRecommendationTaskRequest {
3615
3615
  * <p>Indicates the identifier of the grouping recommendation task.</p>
3616
3616
  * @public
3617
3617
  */
3618
- groupingId?: string;
3618
+ groupingId?: string | undefined;
3619
3619
  }
3620
3620
  /**
3621
3621
  * @public
@@ -3649,7 +3649,7 @@ export interface DescribeResourceGroupingRecommendationTaskResponse {
3649
3649
  * <p>Indicates the error that occurred while generating a grouping recommendation.</p>
3650
3650
  * @public
3651
3651
  */
3652
- errorMessage?: string;
3652
+ errorMessage?: string | undefined;
3653
3653
  }
3654
3654
  /**
3655
3655
  * <p>The input source of the Amazon Elastic Kubernetes Service cluster.</p>
@@ -3700,23 +3700,23 @@ export interface ImportResourcesToDraftAppVersionRequest {
3700
3700
  * <p>The Amazon Resource Names (ARNs) for the resources.</p>
3701
3701
  * @public
3702
3702
  */
3703
- sourceArns?: string[];
3703
+ sourceArns?: string[] | undefined;
3704
3704
  /**
3705
3705
  * <p> A list of terraform file s3 URLs you need to import. </p>
3706
3706
  * @public
3707
3707
  */
3708
- terraformSources?: TerraformSource[];
3708
+ terraformSources?: TerraformSource[] | undefined;
3709
3709
  /**
3710
3710
  * <p>The import strategy you would like to set to import resources into Resilience Hub
3711
3711
  * application.</p>
3712
3712
  * @public
3713
3713
  */
3714
- importStrategy?: ResourceImportStrategyType;
3714
+ importStrategy?: ResourceImportStrategyType | undefined;
3715
3715
  /**
3716
3716
  * <p>The input sources of the Amazon Elastic Kubernetes Service resources you need to import.</p>
3717
3717
  * @public
3718
3718
  */
3719
- eksSources?: EksSource[];
3719
+ eksSources?: EksSource[] | undefined;
3720
3720
  }
3721
3721
  /**
3722
3722
  * @public
@@ -3740,7 +3740,7 @@ export interface ImportResourcesToDraftAppVersionResponse {
3740
3740
  * <p>The Amazon Resource Names (ARNs) for the resources you have imported.</p>
3741
3741
  * @public
3742
3742
  */
3743
- sourceArns?: string[];
3743
+ sourceArns?: string[] | undefined;
3744
3744
  /**
3745
3745
  * <p>Status of the action.</p>
3746
3746
  * @public
@@ -3750,12 +3750,12 @@ export interface ImportResourcesToDraftAppVersionResponse {
3750
3750
  * <p> A list of terraform file s3 URLs you have imported. </p>
3751
3751
  * @public
3752
3752
  */
3753
- terraformSources?: TerraformSource[];
3753
+ terraformSources?: TerraformSource[] | undefined;
3754
3754
  /**
3755
3755
  * <p>The input sources of the Amazon Elastic Kubernetes Service resources you have imported.</p>
3756
3756
  * @public
3757
3757
  */
3758
- eksSources?: EksSource[];
3758
+ eksSources?: EksSource[] | undefined;
3759
3759
  }
3760
3760
  /**
3761
3761
  * @public
@@ -3774,13 +3774,13 @@ export interface ListAlarmRecommendationsRequest {
3774
3774
  * <p>Null, or the token from a previous call to get the next set of results.</p>
3775
3775
  * @public
3776
3776
  */
3777
- nextToken?: string;
3777
+ nextToken?: string | undefined;
3778
3778
  /**
3779
3779
  * <p>Maximum number of results to include in the response. If more results exist than the specified
3780
3780
  * <code>MaxResults</code> value, a token is included in the response so that the remaining results can be retrieved.</p>
3781
3781
  * @public
3782
3782
  */
3783
- maxResults?: number;
3783
+ maxResults?: number | undefined;
3784
3784
  }
3785
3785
  /**
3786
3786
  * @public
@@ -3797,7 +3797,7 @@ export interface ListAlarmRecommendationsResponse {
3797
3797
  * <p>Token for the next set of results, or null if there are no more results.</p>
3798
3798
  * @public
3799
3799
  */
3800
- nextToken?: string;
3800
+ nextToken?: string | undefined;
3801
3801
  }
3802
3802
  /**
3803
3803
  * @public
@@ -3816,12 +3816,12 @@ export interface ListAppAssessmentComplianceDriftsRequest {
3816
3816
  * <p>Null, or the token from a previous call to get the next set of results.</p>
3817
3817
  * @public
3818
3818
  */
3819
- nextToken?: string;
3819
+ nextToken?: string | undefined;
3820
3820
  /**
3821
3821
  * <p>Indicates the maximum number of compliance drifts requested.</p>
3822
3822
  * @public
3823
3823
  */
3824
- maxResults?: number;
3824
+ maxResults?: number | undefined;
3825
3825
  }
3826
3826
  /**
3827
3827
  * @public
@@ -3859,56 +3859,56 @@ export interface ComplianceDrift {
3859
3859
  * can be either application ID or the AppComponent ID.</p>
3860
3860
  * @public
3861
3861
  */
3862
- entityId?: string;
3862
+ entityId?: string | undefined;
3863
3863
  /**
3864
3864
  * <p>The type of entity in which drift was detected. For compliance drifts, Resilience Hub supports <code>AWS::ResilienceHub::AppComponent</code> and
3865
3865
  * <code>AWS::ResilienceHub::Application</code>.</p>
3866
3866
  * @public
3867
3867
  */
3868
- entityType?: string;
3868
+ entityType?: string | undefined;
3869
3869
  /**
3870
3870
  * <p>The type of drift detected. Currently, Resilience Hub supports only <b>ApplicationCompliance</b> drift type.</p>
3871
3871
  * @public
3872
3872
  */
3873
- driftType?: DriftType;
3873
+ driftType?: DriftType | undefined;
3874
3874
  /**
3875
3875
  * <p>Identifier of your application.</p>
3876
3876
  * @public
3877
3877
  */
3878
- appId?: string;
3878
+ appId?: string | undefined;
3879
3879
  /**
3880
3880
  * <p>Published version of your application on which drift was detected.</p>
3881
3881
  * @public
3882
3882
  */
3883
- appVersion?: string;
3883
+ appVersion?: string | undefined;
3884
3884
  /**
3885
3885
  * <p>Assessment identifier of a previous assessment of the same application version. Resilience Hub uses the previous assessment (associated with the reference identifier) to
3886
3886
  * compare the compliance with the current assessment to identify drifts.</p>
3887
3887
  * @public
3888
3888
  */
3889
- expectedReferenceId?: string;
3889
+ expectedReferenceId?: string | undefined;
3890
3890
  /**
3891
3891
  * <p>The expected compliance value of an entity.</p>
3892
3892
  * @public
3893
3893
  */
3894
- expectedValue?: Partial<Record<DisruptionType, DisruptionCompliance>>;
3894
+ expectedValue?: Partial<Record<DisruptionType, DisruptionCompliance>> | undefined;
3895
3895
  /**
3896
3896
  * <p>Assessment identifier that is associated with this drift item.</p>
3897
3897
  * @public
3898
3898
  */
3899
- actualReferenceId?: string;
3899
+ actualReferenceId?: string | undefined;
3900
3900
  /**
3901
3901
  * <p>Actual compliance value of the entity.</p>
3902
3902
  * @public
3903
3903
  */
3904
- actualValue?: Partial<Record<DisruptionType, DisruptionCompliance>>;
3904
+ actualValue?: Partial<Record<DisruptionType, DisruptionCompliance>> | undefined;
3905
3905
  /**
3906
3906
  * <p>Difference type between actual and expected recovery point objective (RPO) and recovery
3907
3907
  * time objective (RTO) values. Currently, Resilience Hub supports only
3908
3908
  * <code>NotEqual</code> difference type.</p>
3909
3909
  * @public
3910
3910
  */
3911
- diffType?: DifferenceType;
3911
+ diffType?: DifferenceType | undefined;
3912
3912
  }
3913
3913
  /**
3914
3914
  * @public
@@ -3924,7 +3924,7 @@ export interface ListAppAssessmentComplianceDriftsResponse {
3924
3924
  * <p>Null, or the token from a previous call to get the next set of results.</p>
3925
3925
  * @public
3926
3926
  */
3927
- nextToken?: string;
3927
+ nextToken?: string | undefined;
3928
3928
  }
3929
3929
  /**
3930
3930
  * @public
@@ -3943,14 +3943,14 @@ export interface ListAppAssessmentResourceDriftsRequest {
3943
3943
  * <p>Null, or the token from a previous call to get the next set of results.</p>
3944
3944
  * @public
3945
3945
  */
3946
- nextToken?: string;
3946
+ nextToken?: string | undefined;
3947
3947
  /**
3948
3948
  * <p>Indicates the maximum number of drift results to include in the response. If more results
3949
3949
  * exist than the specified <code>MaxResults</code> value, a token is included in the response so
3950
3950
  * that the remaining results can be retrieved.</p>
3951
3951
  * @public
3952
3952
  */
3953
- maxResults?: number;
3953
+ maxResults?: number | undefined;
3954
3954
  }
3955
3955
  /**
3956
3956
  * <p>Defines a resource identifier for the drifted resource.</p>
@@ -3961,12 +3961,12 @@ export interface ResourceIdentifier {
3961
3961
  * <p>Logical identifier of the drifted resource.</p>
3962
3962
  * @public
3963
3963
  */
3964
- logicalResourceId?: LogicalResourceId;
3964
+ logicalResourceId?: LogicalResourceId | undefined;
3965
3965
  /**
3966
3966
  * <p>Type of the drifted resource.</p>
3967
3967
  * @public
3968
3968
  */
3969
- resourceType?: string;
3969
+ resourceType?: string | undefined;
3970
3970
  }
3971
3971
  /**
3972
3972
  * <p>Indicates the resources that have drifted in the current application version.</p>
@@ -3981,27 +3981,27 @@ export interface ResourceDrift {
3981
3981
  * <i>Amazon Web Services General Reference</i> guide.</p>
3982
3982
  * @public
3983
3983
  */
3984
- appArn?: string;
3984
+ appArn?: string | undefined;
3985
3985
  /**
3986
3986
  * <p>Version of the application whose resources have drifted.</p>
3987
3987
  * @public
3988
3988
  */
3989
- appVersion?: string;
3989
+ appVersion?: string | undefined;
3990
3990
  /**
3991
3991
  * <p>Reference identifier of the resource drift.</p>
3992
3992
  * @public
3993
3993
  */
3994
- referenceId?: string;
3994
+ referenceId?: string | undefined;
3995
3995
  /**
3996
3996
  * <p>Identifier of the drifted resource.</p>
3997
3997
  * @public
3998
3998
  */
3999
- resourceIdentifier?: ResourceIdentifier;
3999
+ resourceIdentifier?: ResourceIdentifier | undefined;
4000
4000
  /**
4001
4001
  * <p>Indicates if the resource was added or removed.</p>
4002
4002
  * @public
4003
4003
  */
4004
- diffType?: DifferenceType;
4004
+ diffType?: DifferenceType | undefined;
4005
4005
  }
4006
4006
  /**
4007
4007
  * @public
@@ -4016,7 +4016,7 @@ export interface ListAppAssessmentResourceDriftsResponse {
4016
4016
  * <p>Null, or the token from a previous call to get the next set of results.</p>
4017
4017
  * @public
4018
4018
  */
4019
- nextToken?: string;
4019
+ nextToken?: string | undefined;
4020
4020
  }
4021
4021
  /**
4022
4022
  * @public
@@ -4030,45 +4030,45 @@ export interface ListAppAssessmentsRequest {
4030
4030
  * <i>Amazon Web Services General Reference</i> guide.</p>
4031
4031
  * @public
4032
4032
  */
4033
- appArn?: string;
4033
+ appArn?: string | undefined;
4034
4034
  /**
4035
4035
  * <p>The name for the assessment.</p>
4036
4036
  * @public
4037
4037
  */
4038
- assessmentName?: string;
4038
+ assessmentName?: string | undefined;
4039
4039
  /**
4040
4040
  * <p>The current status of the assessment for the resiliency policy.</p>
4041
4041
  * @public
4042
4042
  */
4043
- assessmentStatus?: AssessmentStatus[];
4043
+ assessmentStatus?: AssessmentStatus[] | undefined;
4044
4044
  /**
4045
4045
  * <p>The current status of compliance for the resiliency policy.</p>
4046
4046
  * @public
4047
4047
  */
4048
- complianceStatus?: ComplianceStatus;
4048
+ complianceStatus?: ComplianceStatus | undefined;
4049
4049
  /**
4050
4050
  * <p>Specifies the entity that invoked a specific assessment, either a <code>User</code> or the
4051
4051
  * <code>System</code>.</p>
4052
4052
  * @public
4053
4053
  */
4054
- invoker?: AssessmentInvoker;
4054
+ invoker?: AssessmentInvoker | undefined;
4055
4055
  /**
4056
4056
  * <p>The default is to sort by ascending <b>startTime</b>.
4057
4057
  * To sort by descending <b>startTime</b>, set reverseOrder to <code>true</code>.</p>
4058
4058
  * @public
4059
4059
  */
4060
- reverseOrder?: boolean;
4060
+ reverseOrder?: boolean | undefined;
4061
4061
  /**
4062
4062
  * <p>Null, or the token from a previous call to get the next set of results.</p>
4063
4063
  * @public
4064
4064
  */
4065
- nextToken?: string;
4065
+ nextToken?: string | undefined;
4066
4066
  /**
4067
4067
  * <p>Maximum number of results to include in the response. If more results exist than the specified
4068
4068
  * <code>MaxResults</code> value, a token is included in the response so that the remaining results can be retrieved.</p>
4069
4069
  * @public
4070
4070
  */
4071
- maxResults?: number;
4071
+ maxResults?: number | undefined;
4072
4072
  }
4073
4073
  /**
4074
4074
  * @public
@@ -4078,7 +4078,7 @@ export interface ListAppAssessmentsResponse {
4078
4078
  * <p>Token for the next set of results, or null if there are no more results.</p>
4079
4079
  * @public
4080
4080
  */
4081
- nextToken?: string;
4081
+ nextToken?: string | undefined;
4082
4082
  /**
4083
4083
  * <p>The summaries for the specified assessments, returned as an object. This object includes
4084
4084
  * application versions, associated Amazon Resource Numbers (ARNs), cost, messages, resiliency
@@ -4095,13 +4095,13 @@ export interface ListAppComponentCompliancesRequest {
4095
4095
  * <p>Null, or the token from a previous call to get the next set of results.</p>
4096
4096
  * @public
4097
4097
  */
4098
- nextToken?: string;
4098
+ nextToken?: string | undefined;
4099
4099
  /**
4100
4100
  * <p>Maximum number of results to include in the response. If more results exist than the specified
4101
4101
  * <code>MaxResults</code> value, a token is included in the response so that the remaining results can be retrieved.</p>
4102
4102
  * @public
4103
4103
  */
4104
- maxResults?: number;
4104
+ maxResults?: number | undefined;
4105
4105
  /**
4106
4106
  * <p>Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
4107
4107
  * arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
@@ -4127,7 +4127,7 @@ export interface ListAppComponentCompliancesResponse {
4127
4127
  * <p>Token for the next set of results, or null if there are no more results.</p>
4128
4128
  * @public
4129
4129
  */
4130
- nextToken?: string;
4130
+ nextToken?: string | undefined;
4131
4131
  }
4132
4132
  /**
4133
4133
  * @public
@@ -4146,13 +4146,13 @@ export interface ListAppComponentRecommendationsRequest {
4146
4146
  * <p>Null, or the token from a previous call to get the next set of results.</p>
4147
4147
  * @public
4148
4148
  */
4149
- nextToken?: string;
4149
+ nextToken?: string | undefined;
4150
4150
  /**
4151
4151
  * <p>Maximum number of results to include in the response. If more results exist than the specified
4152
4152
  * <code>MaxResults</code> value, a token is included in the response so that the remaining results can be retrieved.</p>
4153
4153
  * @public
4154
4154
  */
4155
- maxResults?: number;
4155
+ maxResults?: number | undefined;
4156
4156
  }
4157
4157
  /**
4158
4158
  * @public
@@ -4199,24 +4199,24 @@ export interface RecommendationDisruptionCompliance {
4199
4199
  * <p>The expected RTO after applying the recommended configuration change.</p>
4200
4200
  * @public
4201
4201
  */
4202
- expectedRtoInSecs?: number;
4202
+ expectedRtoInSecs?: number | undefined;
4203
4203
  /**
4204
4204
  * <p>The expected Recovery Time Objective (RTO) description after applying the recommended
4205
4205
  * configuration change.</p>
4206
4206
  * @public
4207
4207
  */
4208
- expectedRtoDescription?: string;
4208
+ expectedRtoDescription?: string | undefined;
4209
4209
  /**
4210
4210
  * <p>The expected RPO after applying the recommended configuration change.</p>
4211
4211
  * @public
4212
4212
  */
4213
- expectedRpoInSecs?: number;
4213
+ expectedRpoInSecs?: number | undefined;
4214
4214
  /**
4215
4215
  * <p>The expected Recovery Point Objective (RPO) description after applying the recommended
4216
4216
  * configuration change.</p>
4217
4217
  * @public
4218
4218
  */
4219
- expectedRpoDescription?: string;
4219
+ expectedRpoDescription?: string | undefined;
4220
4220
  }
4221
4221
  /**
4222
4222
  * <p>Defines a recommendation configuration.</p>
@@ -4227,24 +4227,24 @@ export interface ConfigRecommendation {
4227
4227
  * <p>The cost for the application.</p>
4228
4228
  * @public
4229
4229
  */
4230
- cost?: Cost;
4230
+ cost?: Cost | undefined;
4231
4231
  /**
4232
4232
  * <p>Name of the Application Component.</p>
4233
4233
  * @public
4234
4234
  */
4235
- appComponentName?: string;
4235
+ appComponentName?: string | undefined;
4236
4236
  /**
4237
4237
  * <p>The current compliance against the resiliency policy before applying the configuration
4238
4238
  * change.</p>
4239
4239
  * @public
4240
4240
  */
4241
- compliance?: Partial<Record<DisruptionType, DisruptionCompliance>>;
4241
+ compliance?: Partial<Record<DisruptionType, DisruptionCompliance>> | undefined;
4242
4242
  /**
4243
4243
  * <p>The expected compliance against the resiliency policy after applying the configuration
4244
4244
  * change.</p>
4245
4245
  * @public
4246
4246
  */
4247
- recommendationCompliance?: Partial<Record<DisruptionType, RecommendationDisruptionCompliance>>;
4247
+ recommendationCompliance?: Partial<Record<DisruptionType, RecommendationDisruptionCompliance>> | undefined;
4248
4248
  /**
4249
4249
  * <p>The type of optimization.</p>
4250
4250
  * @public
@@ -4259,17 +4259,17 @@ export interface ConfigRecommendation {
4259
4259
  * <p>The optional description for an app.</p>
4260
4260
  * @public
4261
4261
  */
4262
- description?: string;
4262
+ description?: string | undefined;
4263
4263
  /**
4264
4264
  * <p>List of the suggested configuration changes.</p>
4265
4265
  * @public
4266
4266
  */
4267
- suggestedChanges?: string[];
4267
+ suggestedChanges?: string[] | undefined;
4268
4268
  /**
4269
4269
  * <p>The architecture type.</p>
4270
4270
  * @public
4271
4271
  */
4272
- haArchitecture?: HaArchitecture;
4272
+ haArchitecture?: HaArchitecture | undefined;
4273
4273
  /**
4274
4274
  * <p>Reference identifier for the recommendation configuration.</p>
4275
4275
  * @public
@@ -4328,7 +4328,7 @@ export interface ListAppComponentRecommendationsResponse {
4328
4328
  * <p>Token for the next set of results, or null if there are no more results.</p>
4329
4329
  * @public
4330
4330
  */
4331
- nextToken?: string;
4331
+ nextToken?: string | undefined;
4332
4332
  }
4333
4333
  /**
4334
4334
  * @public
@@ -4352,13 +4352,13 @@ export interface ListAppInputSourcesRequest {
4352
4352
  * <p>Null, or the token from a previous call to get the next set of results.</p>
4353
4353
  * @public
4354
4354
  */
4355
- nextToken?: string;
4355
+ nextToken?: string | undefined;
4356
4356
  /**
4357
4357
  * <p>Maximum number of input sources to be displayed per Resilience Hub
4358
4358
  * application.</p>
4359
4359
  * @public
4360
4360
  */
4361
- maxResults?: number;
4361
+ maxResults?: number | undefined;
4362
4362
  }
4363
4363
  /**
4364
4364
  * @public
@@ -4373,7 +4373,7 @@ export interface ListAppInputSourcesResponse {
4373
4373
  * <p>Token for the next set of results, or null if there are no more results.</p>
4374
4374
  * @public
4375
4375
  */
4376
- nextToken?: string;
4376
+ nextToken?: string | undefined;
4377
4377
  }
4378
4378
  /**
4379
4379
  * @public
@@ -4383,18 +4383,18 @@ export interface ListAppsRequest {
4383
4383
  * <p>Null, or the token from a previous call to get the next set of results.</p>
4384
4384
  * @public
4385
4385
  */
4386
- nextToken?: string;
4386
+ nextToken?: string | undefined;
4387
4387
  /**
4388
4388
  * <p>Maximum number of results to include in the response. If more results exist than the specified
4389
4389
  * <code>MaxResults</code> value, a token is included in the response so that the remaining results can be retrieved.</p>
4390
4390
  * @public
4391
4391
  */
4392
- maxResults?: number;
4392
+ maxResults?: number | undefined;
4393
4393
  /**
4394
4394
  * <p>The name for the one of the listed applications.</p>
4395
4395
  * @public
4396
4396
  */
4397
- name?: string;
4397
+ name?: string | undefined;
4398
4398
  /**
4399
4399
  * <p>Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is:
4400
4400
  * arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
@@ -4403,19 +4403,19 @@ export interface ListAppsRequest {
4403
4403
  * <i>Amazon Web Services General Reference</i> guide.</p>
4404
4404
  * @public
4405
4405
  */
4406
- appArn?: string;
4406
+ appArn?: string | undefined;
4407
4407
  /**
4408
4408
  * <p>Indicates the lower limit of the range that is used to filter applications based on their
4409
4409
  * last assessment times.</p>
4410
4410
  * @public
4411
4411
  */
4412
- fromLastAssessmentTime?: Date;
4412
+ fromLastAssessmentTime?: Date | undefined;
4413
4413
  /**
4414
4414
  * <p>Indicates the upper limit of the range that is used to filter the applications based on
4415
4415
  * their last assessment times.</p>
4416
4416
  * @public
4417
4417
  */
4418
- toLastAssessmentTime?: Date;
4418
+ toLastAssessmentTime?: Date | undefined;
4419
4419
  /**
4420
4420
  * <p>The application list is sorted based on the values of
4421
4421
  * <code>lastAppComplianceEvaluationTime</code> field. By default, application list is sorted
@@ -4423,7 +4423,7 @@ export interface ListAppsRequest {
4423
4423
  * <code>True</code>.</p>
4424
4424
  * @public
4425
4425
  */
4426
- reverseOrder?: boolean;
4426
+ reverseOrder?: boolean | undefined;
4427
4427
  /**
4428
4428
  * <p>Amazon Resource Name (ARN) of Resource Groups group that is integrated with an AppRegistry application. For more information about ARNs,
4429
4429
  * see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
@@ -4431,7 +4431,7 @@ export interface ListAppsRequest {
4431
4431
  * <i>Amazon Web Services General Reference</i> guide.</p>
4432
4432
  * @public
4433
4433
  */
4434
- awsApplicationArn?: string;
4434
+ awsApplicationArn?: string | undefined;
4435
4435
  }
4436
4436
  /**
4437
4437
  * @public
@@ -4446,7 +4446,7 @@ export interface ListAppsResponse {
4446
4446
  * <p>Token for the next set of results, or null if there are no more results.</p>
4447
4447
  * @public
4448
4448
  */
4449
- nextToken?: string;
4449
+ nextToken?: string | undefined;
4450
4450
  }
4451
4451
  /**
4452
4452
  * @public
@@ -4470,12 +4470,12 @@ export interface ListAppVersionAppComponentsRequest {
4470
4470
  * <p>Null, or the token from a previous call to get the next set of results.</p>
4471
4471
  * @public
4472
4472
  */
4473
- nextToken?: string;
4473
+ nextToken?: string | undefined;
4474
4474
  /**
4475
4475
  * <p>Maximum number of Application Components to be displayed per Resilience Hub application version.</p>
4476
4476
  * @public
4477
4477
  */
4478
- maxResults?: number;
4478
+ maxResults?: number | undefined;
4479
4479
  }
4480
4480
  /**
4481
4481
  * @public
@@ -4499,12 +4499,12 @@ export interface ListAppVersionAppComponentsResponse {
4499
4499
  * <p>Defines an Application Component.</p>
4500
4500
  * @public
4501
4501
  */
4502
- appComponents?: AppComponent[];
4502
+ appComponents?: AppComponent[] | undefined;
4503
4503
  /**
4504
4504
  * <p>Token for the next set of results, or null if there are no more results.</p>
4505
4505
  * @public
4506
4506
  */
4507
- nextToken?: string;
4507
+ nextToken?: string | undefined;
4508
4508
  }
4509
4509
  /**
4510
4510
  * @public
@@ -4528,13 +4528,13 @@ export interface ListAppVersionResourceMappingsRequest {
4528
4528
  * <p>Null, or the token from a previous call to get the next set of results.</p>
4529
4529
  * @public
4530
4530
  */
4531
- nextToken?: string;
4531
+ nextToken?: string | undefined;
4532
4532
  /**
4533
4533
  * <p>Maximum number of results to include in the response. If more results exist than the specified
4534
4534
  * <code>MaxResults</code> value, a token is included in the response so that the remaining results can be retrieved.</p>
4535
4535
  * @public
4536
4536
  */
4537
- maxResults?: number;
4537
+ maxResults?: number | undefined;
4538
4538
  }
4539
4539
  /**
4540
4540
  * @public
@@ -4553,7 +4553,7 @@ export interface ListAppVersionResourceMappingsResponse {
4553
4553
  * <p>Token for the next set of results, or null if there are no more results.</p>
4554
4554
  * @public
4555
4555
  */
4556
- nextToken?: string;
4556
+ nextToken?: string | undefined;
4557
4557
  }
4558
4558
  /**
4559
4559
  * @public
@@ -4577,18 +4577,18 @@ export interface ListAppVersionResourcesRequest {
4577
4577
  * <p>The identifier for a specific resolution.</p>
4578
4578
  * @public
4579
4579
  */
4580
- resolutionId?: string;
4580
+ resolutionId?: string | undefined;
4581
4581
  /**
4582
4582
  * <p>Null, or the token from a previous call to get the next set of results.</p>
4583
4583
  * @public
4584
4584
  */
4585
- nextToken?: string;
4585
+ nextToken?: string | undefined;
4586
4586
  /**
4587
4587
  * <p>Maximum number of results to include in the response. If more results exist than the specified
4588
4588
  * <code>MaxResults</code> value, a token is included in the response so that the remaining results can be retrieved.</p>
4589
4589
  * @public
4590
4590
  */
4591
- maxResults?: number;
4591
+ maxResults?: number | undefined;
4592
4592
  }
4593
4593
  /**
4594
4594
  * @public
@@ -4608,7 +4608,7 @@ export interface ListAppVersionResourcesResponse {
4608
4608
  * <p>Token for the next set of results, or null if there are no more results.</p>
4609
4609
  * @public
4610
4610
  */
4611
- nextToken?: string;
4611
+ nextToken?: string | undefined;
4612
4612
  }
4613
4613
  /**
4614
4614
  * @public
@@ -4627,23 +4627,23 @@ export interface ListAppVersionsRequest {
4627
4627
  * <p>Null, or the token from a previous call to get the next set of results.</p>
4628
4628
  * @public
4629
4629
  */
4630
- nextToken?: string;
4630
+ nextToken?: string | undefined;
4631
4631
  /**
4632
4632
  * <p>Maximum number of results to include in the response. If more results exist than the specified
4633
4633
  * <code>MaxResults</code> value, a token is included in the response so that the remaining results can be retrieved.</p>
4634
4634
  * @public
4635
4635
  */
4636
- maxResults?: number;
4636
+ maxResults?: number | undefined;
4637
4637
  /**
4638
4638
  * <p>Lower limit of the time range to filter the application versions.</p>
4639
4639
  * @public
4640
4640
  */
4641
- startTime?: Date;
4641
+ startTime?: Date | undefined;
4642
4642
  /**
4643
4643
  * <p>Upper limit of the time range to filter the application versions.</p>
4644
4644
  * @public
4645
4645
  */
4646
- endTime?: Date;
4646
+ endTime?: Date | undefined;
4647
4647
  }
4648
4648
  /**
4649
4649
  * @public
@@ -4658,7 +4658,7 @@ export interface ListAppVersionsResponse {
4658
4658
  * <p>Token for the next set of results, or null if there are no more results.</p>
4659
4659
  * @public
4660
4660
  */
4661
- nextToken?: string;
4661
+ nextToken?: string | undefined;
4662
4662
  }
4663
4663
  /**
4664
4664
  * @public
@@ -4672,39 +4672,39 @@ export interface ListRecommendationTemplatesRequest {
4672
4672
  * <i>Amazon Web Services General Reference</i> guide.</p>
4673
4673
  * @public
4674
4674
  */
4675
- assessmentArn?: string;
4675
+ assessmentArn?: string | undefined;
4676
4676
  /**
4677
4677
  * <p>The default is to sort by ascending <b>startTime</b>.
4678
4678
  * To sort by descending <b>startTime</b>, set reverseOrder to <code>true</code>.</p>
4679
4679
  * @public
4680
4680
  */
4681
- reverseOrder?: boolean;
4681
+ reverseOrder?: boolean | undefined;
4682
4682
  /**
4683
4683
  * <p>Status of the action.</p>
4684
4684
  * @public
4685
4685
  */
4686
- status?: RecommendationTemplateStatus[];
4686
+ status?: RecommendationTemplateStatus[] | undefined;
4687
4687
  /**
4688
4688
  * <p>The Amazon Resource Name (ARN) for a recommendation template.</p>
4689
4689
  * @public
4690
4690
  */
4691
- recommendationTemplateArn?: string;
4691
+ recommendationTemplateArn?: string | undefined;
4692
4692
  /**
4693
4693
  * <p>The name for one of the listed recommendation templates.</p>
4694
4694
  * @public
4695
4695
  */
4696
- name?: string;
4696
+ name?: string | undefined;
4697
4697
  /**
4698
4698
  * <p>Null, or the token from a previous call to get the next set of results.</p>
4699
4699
  * @public
4700
4700
  */
4701
- nextToken?: string;
4701
+ nextToken?: string | undefined;
4702
4702
  /**
4703
4703
  * <p>Maximum number of results to include in the response. If more results exist than the specified
4704
4704
  * <code>MaxResults</code> value, a token is included in the response so that the remaining results can be retrieved.</p>
4705
4705
  * @public
4706
4706
  */
4707
- maxResults?: number;
4707
+ maxResults?: number | undefined;
4708
4708
  }
4709
4709
  /**
4710
4710
  * @public
@@ -4714,12 +4714,12 @@ export interface ListRecommendationTemplatesResponse {
4714
4714
  * <p>Token for the next set of results, or null if there are no more results.</p>
4715
4715
  * @public
4716
4716
  */
4717
- nextToken?: string;
4717
+ nextToken?: string | undefined;
4718
4718
  /**
4719
4719
  * <p>The recommendation templates for the Resilience Hub applications.</p>
4720
4720
  * @public
4721
4721
  */
4722
- recommendationTemplates?: RecommendationTemplate[];
4722
+ recommendationTemplates?: RecommendationTemplate[] | undefined;
4723
4723
  }
4724
4724
  /**
4725
4725
  * @public
@@ -4729,18 +4729,18 @@ export interface ListResiliencyPoliciesRequest {
4729
4729
  * <p>The name of the policy</p>
4730
4730
  * @public
4731
4731
  */
4732
- policyName?: string;
4732
+ policyName?: string | undefined;
4733
4733
  /**
4734
4734
  * <p>Null, or the token from a previous call to get the next set of results.</p>
4735
4735
  * @public
4736
4736
  */
4737
- nextToken?: string;
4737
+ nextToken?: string | undefined;
4738
4738
  /**
4739
4739
  * <p>Maximum number of results to include in the response. If more results exist than the specified
4740
4740
  * <code>MaxResults</code> value, a token is included in the response so that the remaining results can be retrieved.</p>
4741
4741
  * @public
4742
4742
  */
4743
- maxResults?: number;
4743
+ maxResults?: number | undefined;
4744
4744
  }
4745
4745
  /**
4746
4746
  * @public
@@ -4755,7 +4755,7 @@ export interface ListResiliencyPoliciesResponse {
4755
4755
  * <p>Token for the next set of results, or null if there are no more results.</p>
4756
4756
  * @public
4757
4757
  */
4758
- nextToken?: string;
4758
+ nextToken?: string | undefined;
4759
4759
  }
4760
4760
  /**
4761
4761
  * @public
@@ -4769,17 +4769,17 @@ export interface ListResourceGroupingRecommendationsRequest {
4769
4769
  * <i>Amazon Web Services General Reference</i> guide.</p>
4770
4770
  * @public
4771
4771
  */
4772
- appArn?: string;
4772
+ appArn?: string | undefined;
4773
4773
  /**
4774
4774
  * <p>Null, or the token from a previous call to get the next set of results.</p>
4775
4775
  * @public
4776
4776
  */
4777
- nextToken?: string;
4777
+ nextToken?: string | undefined;
4778
4778
  /**
4779
4779
  * <p>Maximum number of grouping recommendations to be displayed per Resilience Hub application.</p>
4780
4780
  * @public
4781
4781
  */
4782
- maxResults?: number;
4782
+ maxResults?: number | undefined;
4783
4783
  }
4784
4784
  /**
4785
4785
  * @public
@@ -4921,7 +4921,7 @@ export interface GroupingRecommendation {
4921
4921
  * <p>Indicates the reason you had selected while rejecting a grouping recommendation.</p>
4922
4922
  * @public
4923
4923
  */
4924
- rejectionReason?: GroupingRecommendationRejectionReason;
4924
+ rejectionReason?: GroupingRecommendationRejectionReason | undefined;
4925
4925
  }
4926
4926
  /**
4927
4927
  * @public
@@ -4936,7 +4936,7 @@ export interface ListResourceGroupingRecommendationsResponse {
4936
4936
  * <p>Null, or the token from a previous call to get the next set of results.</p>
4937
4937
  * @public
4938
4938
  */
4939
- nextToken?: string;
4939
+ nextToken?: string | undefined;
4940
4940
  }
4941
4941
  /**
4942
4942
  * @public
@@ -4946,13 +4946,13 @@ export interface ListSopRecommendationsRequest {
4946
4946
  * <p>Null, or the token from a previous call to get the next set of results.</p>
4947
4947
  * @public
4948
4948
  */
4949
- nextToken?: string;
4949
+ nextToken?: string | undefined;
4950
4950
  /**
4951
4951
  * <p>Maximum number of results to include in the response. If more results exist than the specified
4952
4952
  * <code>MaxResults</code> value, a token is included in the response so that the remaining results can be retrieved.</p>
4953
4953
  * @public
4954
4954
  */
4955
- maxResults?: number;
4955
+ maxResults?: number | undefined;
4956
4956
  /**
4957
4957
  * <p>Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
4958
4958
  * arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
@@ -4988,12 +4988,12 @@ export interface SopRecommendation {
4988
4988
  * <p>Name of the Application Component.</p>
4989
4989
  * @public
4990
4990
  */
4991
- appComponentName?: string;
4991
+ appComponentName?: string | undefined;
4992
4992
  /**
4993
4993
  * <p>Description of the SOP recommendation.</p>
4994
4994
  * @public
4995
4995
  */
4996
- description?: string;
4996
+ description?: string | undefined;
4997
4997
  /**
4998
4998
  * <p>Identifier for the SOP recommendation.</p>
4999
4999
  * @public
@@ -5003,12 +5003,12 @@ export interface SopRecommendation {
5003
5003
  * <p>Name of the SOP recommendation.</p>
5004
5004
  * @public
5005
5005
  */
5006
- name?: string;
5006
+ name?: string | undefined;
5007
5007
  /**
5008
5008
  * <p>The recommendation items.</p>
5009
5009
  * @public
5010
5010
  */
5011
- items?: RecommendationItem[];
5011
+ items?: RecommendationItem[] | undefined;
5012
5012
  /**
5013
5013
  * <p>Reference identifier for the SOP recommendation.</p>
5014
5014
  * @public
@@ -5018,12 +5018,12 @@ export interface SopRecommendation {
5018
5018
  * <p>Prerequisite for the SOP recommendation.</p>
5019
5019
  * @public
5020
5020
  */
5021
- prerequisite?: string;
5021
+ prerequisite?: string | undefined;
5022
5022
  /**
5023
5023
  * <p>Status of the recommended standard operating procedure.</p>
5024
5024
  * @public
5025
5025
  */
5026
- recommendationStatus?: RecommendationStatus;
5026
+ recommendationStatus?: RecommendationStatus | undefined;
5027
5027
  }
5028
5028
  /**
5029
5029
  * @public
@@ -5033,7 +5033,7 @@ export interface ListSopRecommendationsResponse {
5033
5033
  * <p>Token for the next set of results, or null if there are no more results.</p>
5034
5034
  * @public
5035
5035
  */
5036
- nextToken?: string;
5036
+ nextToken?: string | undefined;
5037
5037
  /**
5038
5038
  * <p>The standard operating procedure (SOP) recommendations for the Resilience Hub
5039
5039
  * applications.</p>
@@ -5049,13 +5049,13 @@ export interface ListSuggestedResiliencyPoliciesRequest {
5049
5049
  * <p>Null, or the token from a previous call to get the next set of results.</p>
5050
5050
  * @public
5051
5051
  */
5052
- nextToken?: string;
5052
+ nextToken?: string | undefined;
5053
5053
  /**
5054
5054
  * <p>Maximum number of results to include in the response. If more results exist than the specified
5055
5055
  * <code>MaxResults</code> value, a token is included in the response so that the remaining results can be retrieved.</p>
5056
5056
  * @public
5057
5057
  */
5058
- maxResults?: number;
5058
+ maxResults?: number | undefined;
5059
5059
  }
5060
5060
  /**
5061
5061
  * @public
@@ -5070,7 +5070,7 @@ export interface ListSuggestedResiliencyPoliciesResponse {
5070
5070
  * <p>Token for the next set of results, or null if there are no more results.</p>
5071
5071
  * @public
5072
5072
  */
5073
- nextToken?: string;
5073
+ nextToken?: string | undefined;
5074
5074
  }
5075
5075
  /**
5076
5076
  * @public
@@ -5092,7 +5092,7 @@ export interface ListTagsForResourceResponse {
5092
5092
  * Each tag consists of a key/value pair.</p>
5093
5093
  * @public
5094
5094
  */
5095
- tags?: Record<string, string>;
5095
+ tags?: Record<string, string> | undefined;
5096
5096
  }
5097
5097
  /**
5098
5098
  * @public
@@ -5102,13 +5102,13 @@ export interface ListTestRecommendationsRequest {
5102
5102
  * <p>Null, or the token from a previous call to get the next set of results.</p>
5103
5103
  * @public
5104
5104
  */
5105
- nextToken?: string;
5105
+ nextToken?: string | undefined;
5106
5106
  /**
5107
5107
  * <p>Maximum number of results to include in the response. If more results exist than the specified
5108
5108
  * <code>MaxResults</code> value, a token is included in the response so that the remaining results can be retrieved.</p>
5109
5109
  * @public
5110
5110
  */
5111
- maxResults?: number;
5111
+ maxResults?: number | undefined;
5112
5112
  /**
5113
5113
  * <p>Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
5114
5114
  * arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
@@ -5155,7 +5155,7 @@ export interface TestRecommendation {
5155
5155
  * <p>Identifier for the test recommendation.</p>
5156
5156
  * @public
5157
5157
  */
5158
- recommendationId?: string;
5158
+ recommendationId?: string | undefined;
5159
5159
  /**
5160
5160
  * <p>Reference identifier for the test recommendation.</p>
5161
5161
  * @public
@@ -5165,53 +5165,53 @@ export interface TestRecommendation {
5165
5165
  * <p>Name of the Application Component.</p>
5166
5166
  * @public
5167
5167
  */
5168
- appComponentName?: string;
5168
+ appComponentName?: string | undefined;
5169
5169
  /**
5170
5170
  * <p>Name of the test recommendation.</p>
5171
5171
  * @public
5172
5172
  */
5173
- name?: string;
5173
+ name?: string | undefined;
5174
5174
  /**
5175
5175
  * <p>Intent of the test recommendation.</p>
5176
5176
  * @public
5177
5177
  */
5178
- intent?: string;
5178
+ intent?: string | undefined;
5179
5179
  /**
5180
5180
  * <p>Level of risk for this test recommendation.</p>
5181
5181
  * @public
5182
5182
  */
5183
- risk?: TestRisk;
5183
+ risk?: TestRisk | undefined;
5184
5184
  /**
5185
5185
  * <p>Type of test recommendation.</p>
5186
5186
  * @public
5187
5187
  */
5188
- type?: TestType;
5188
+ type?: TestType | undefined;
5189
5189
  /**
5190
5190
  * <p>Description for the test recommendation.</p>
5191
5191
  * @public
5192
5192
  */
5193
- description?: string;
5193
+ description?: string | undefined;
5194
5194
  /**
5195
5195
  * <p>The test recommendation items.</p>
5196
5196
  * @public
5197
5197
  */
5198
- items?: RecommendationItem[];
5198
+ items?: RecommendationItem[] | undefined;
5199
5199
  /**
5200
5200
  * <p>Prerequisite of the test recommendation.</p>
5201
5201
  * @public
5202
5202
  */
5203
- prerequisite?: string;
5203
+ prerequisite?: string | undefined;
5204
5204
  /**
5205
5205
  * <p> A list of recommended alarms that are used in the test and must be exported before or
5206
5206
  * with the test. </p>
5207
5207
  * @public
5208
5208
  */
5209
- dependsOnAlarms?: string[];
5209
+ dependsOnAlarms?: string[] | undefined;
5210
5210
  /**
5211
5211
  * <p>Status of the recommended test.</p>
5212
5212
  * @public
5213
5213
  */
5214
- recommendationStatus?: RecommendationStatus;
5214
+ recommendationStatus?: RecommendationStatus | undefined;
5215
5215
  }
5216
5216
  /**
5217
5217
  * @public
@@ -5221,7 +5221,7 @@ export interface ListTestRecommendationsResponse {
5221
5221
  * <p>Token for the next set of results, or null if there are no more results.</p>
5222
5222
  * @public
5223
5223
  */
5224
- nextToken?: string;
5224
+ nextToken?: string | undefined;
5225
5225
  /**
5226
5226
  * <p>The test recommendations for the Resilience Hub application.</p>
5227
5227
  * @public
@@ -5250,18 +5250,18 @@ export interface ListUnsupportedAppVersionResourcesRequest {
5250
5250
  * <p>The identifier for a specific resolution.</p>
5251
5251
  * @public
5252
5252
  */
5253
- resolutionId?: string;
5253
+ resolutionId?: string | undefined;
5254
5254
  /**
5255
5255
  * <p>Null, or the token from a previous call to get the next set of results.</p>
5256
5256
  * @public
5257
5257
  */
5258
- nextToken?: string;
5258
+ nextToken?: string | undefined;
5259
5259
  /**
5260
5260
  * <p>Maximum number of results to include in the response. If more results exist than the specified
5261
5261
  * <code>MaxResults</code> value, a token is included in the response so that the remaining results can be retrieved.</p>
5262
5262
  * @public
5263
5263
  */
5264
- maxResults?: number;
5264
+ maxResults?: number | undefined;
5265
5265
  }
5266
5266
  /**
5267
5267
  * <p>Defines a resource that is not supported by Resilience Hub.</p>
@@ -5287,7 +5287,7 @@ export interface UnsupportedResource {
5287
5287
  * <p>The status of the unsupported resource.</p>
5288
5288
  * @public
5289
5289
  */
5290
- unsupportedResourceStatus?: string;
5290
+ unsupportedResourceStatus?: string | undefined;
5291
5291
  }
5292
5292
  /**
5293
5293
  * @public
@@ -5307,7 +5307,7 @@ export interface ListUnsupportedAppVersionResourcesResponse {
5307
5307
  * <p>Token for the next set of results, or null if there are no more results.</p>
5308
5308
  * @public
5309
5309
  */
5310
- nextToken?: string;
5310
+ nextToken?: string | undefined;
5311
5311
  }
5312
5312
  /**
5313
5313
  * @public
@@ -5326,7 +5326,7 @@ export interface PublishAppVersionRequest {
5326
5326
  * <p>Name of the application version.</p>
5327
5327
  * @public
5328
5328
  */
5329
- versionName?: string;
5329
+ versionName?: string | undefined;
5330
5330
  }
5331
5331
  /**
5332
5332
  * @public
@@ -5345,17 +5345,17 @@ export interface PublishAppVersionResponse {
5345
5345
  * <p>The version of the application.</p>
5346
5346
  * @public
5347
5347
  */
5348
- appVersion?: string;
5348
+ appVersion?: string | undefined;
5349
5349
  /**
5350
5350
  * <p>Identifier of the application version.</p>
5351
5351
  * @public
5352
5352
  */
5353
- identifier?: number;
5353
+ identifier?: number | undefined;
5354
5354
  /**
5355
5355
  * <p>Name of the application version.</p>
5356
5356
  * @public
5357
5357
  */
5358
- versionName?: string;
5358
+ versionName?: string | undefined;
5359
5359
  }
5360
5360
  /**
5361
5361
  * @public
@@ -5647,12 +5647,12 @@ export interface PutDraftAppVersionTemplateResponse {
5647
5647
  * <i>Amazon Web Services General Reference</i> guide.</p>
5648
5648
  * @public
5649
5649
  */
5650
- appArn?: string;
5650
+ appArn?: string | undefined;
5651
5651
  /**
5652
5652
  * <p>The version of the application.</p>
5653
5653
  * @public
5654
5654
  */
5655
- appVersion?: string;
5655
+ appVersion?: string | undefined;
5656
5656
  }
5657
5657
  /**
5658
5658
  * <p>Indicates the rejected grouping recommendation.</p>
@@ -5668,7 +5668,7 @@ export interface RejectGroupingRecommendationEntry {
5668
5668
  * <p>Indicates the reason you had selected while rejecting a grouping recommendation.</p>
5669
5669
  * @public
5670
5670
  */
5671
- rejectionReason?: GroupingRecommendationRejectionReason;
5671
+ rejectionReason?: GroupingRecommendationRejectionReason | undefined;
5672
5672
  }
5673
5673
  /**
5674
5674
  * @public
@@ -5725,28 +5725,28 @@ export interface RemoveDraftAppVersionResourceMappingsRequest {
5725
5725
  * <p>The names of the resources you want to remove from the resource mappings.</p>
5726
5726
  * @public
5727
5727
  */
5728
- resourceNames?: string[];
5728
+ resourceNames?: string[] | undefined;
5729
5729
  /**
5730
5730
  * <p>The names of the CloudFormation stacks you want to remove from the resource mappings.</p>
5731
5731
  * @public
5732
5732
  */
5733
- logicalStackNames?: string[];
5733
+ logicalStackNames?: string[] | undefined;
5734
5734
  /**
5735
5735
  * <p>The names of the registered applications you want to remove from the resource
5736
5736
  * mappings.</p>
5737
5737
  * @public
5738
5738
  */
5739
- appRegistryAppNames?: string[];
5739
+ appRegistryAppNames?: string[] | undefined;
5740
5740
  /**
5741
5741
  * <p>The names of the resource groups you want to remove from the resource mappings.</p>
5742
5742
  * @public
5743
5743
  */
5744
- resourceGroupNames?: string[];
5744
+ resourceGroupNames?: string[] | undefined;
5745
5745
  /**
5746
5746
  * <p>The names of the Terraform sources you want to remove from the resource mappings.</p>
5747
5747
  * @public
5748
5748
  */
5749
- terraformSourceNames?: string[];
5749
+ terraformSourceNames?: string[] | undefined;
5750
5750
  /**
5751
5751
  * <p>The names of the Amazon Elastic Kubernetes Service clusters and namespaces you want to remove from
5752
5752
  * the resource mappings.</p>
@@ -5755,7 +5755,7 @@ export interface RemoveDraftAppVersionResourceMappingsRequest {
5755
5755
  * </note>
5756
5756
  * @public
5757
5757
  */
5758
- eksSourceNames?: string[];
5758
+ eksSourceNames?: string[] | undefined;
5759
5759
  }
5760
5760
  /**
5761
5761
  * @public
@@ -5769,12 +5769,12 @@ export interface RemoveDraftAppVersionResourceMappingsResponse {
5769
5769
  * <i>Amazon Web Services General Reference</i> guide.</p>
5770
5770
  * @public
5771
5771
  */
5772
- appArn?: string;
5772
+ appArn?: string | undefined;
5773
5773
  /**
5774
5774
  * <p>The version of the application.</p>
5775
5775
  * @public
5776
5776
  */
5777
- appVersion?: string;
5777
+ appVersion?: string | undefined;
5778
5778
  }
5779
5779
  /**
5780
5780
  * @public
@@ -5852,13 +5852,13 @@ export interface StartAppAssessmentRequest {
5852
5852
  * You should not reuse the same client token for other API requests.</p>
5853
5853
  * @public
5854
5854
  */
5855
- clientToken?: string;
5855
+ clientToken?: string | undefined;
5856
5856
  /**
5857
5857
  * <p>Tags assigned to the resource. A tag is a label that you assign to an Amazon Web Services resource.
5858
5858
  * Each tag consists of a key/value pair.</p>
5859
5859
  * @public
5860
5860
  */
5861
- tags?: Record<string, string>;
5861
+ tags?: Record<string, string> | undefined;
5862
5862
  }
5863
5863
  /**
5864
5864
  * @public
@@ -5911,7 +5911,7 @@ export interface StartResourceGroupingRecommendationTaskResponse {
5911
5911
  * <p>Indicates the error that occurred while executing a grouping recommendation task.</p>
5912
5912
  * @public
5913
5913
  */
5914
- errorMessage?: string;
5914
+ errorMessage?: string | undefined;
5915
5915
  }
5916
5916
  /**
5917
5917
  * @public
@@ -5970,7 +5970,7 @@ export interface UpdateAppRequest {
5970
5970
  * <p>The optional description for an app.</p>
5971
5971
  * @public
5972
5972
  */
5973
- description?: string;
5973
+ description?: string | undefined;
5974
5974
  /**
5975
5975
  * <p>Amazon Resource Name (ARN) of the resiliency policy. The format for this ARN is:
5976
5976
  * arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:resiliency-policy/<code>policy-id</code>. For more information about ARNs,
@@ -5979,23 +5979,23 @@ export interface UpdateAppRequest {
5979
5979
  * <i>Amazon Web Services General Reference</i> guide.</p>
5980
5980
  * @public
5981
5981
  */
5982
- policyArn?: string;
5982
+ policyArn?: string | undefined;
5983
5983
  /**
5984
5984
  * <p>Specifies if the resiliency policy ARN should be cleared.</p>
5985
5985
  * @public
5986
5986
  */
5987
- clearResiliencyPolicyArn?: boolean;
5987
+ clearResiliencyPolicyArn?: boolean | undefined;
5988
5988
  /**
5989
5989
  * <p> Assessment execution schedule with 'Daily' or 'Disabled' values. </p>
5990
5990
  * @public
5991
5991
  */
5992
- assessmentSchedule?: AppAssessmentScheduleType;
5992
+ assessmentSchedule?: AppAssessmentScheduleType | undefined;
5993
5993
  /**
5994
5994
  * <p>Defines the roles and credentials that Resilience Hub would use while creating an
5995
5995
  * application, importing its resources, and running an assessment.</p>
5996
5996
  * @public
5997
5997
  */
5998
- permissionModel?: PermissionModel;
5998
+ permissionModel?: PermissionModel | undefined;
5999
5999
  /**
6000
6000
  * <p>The list of events you would like to subscribe and get notification for. Currently,
6001
6001
  * Resilience Hub supports notifications only for <b>Drift
@@ -6003,7 +6003,7 @@ export interface UpdateAppRequest {
6003
6003
  * events.</p>
6004
6004
  * @public
6005
6005
  */
6006
- eventSubscriptions?: EventSubscription[];
6006
+ eventSubscriptions?: EventSubscription[] | undefined;
6007
6007
  }
6008
6008
  /**
6009
6009
  * @public
@@ -6040,7 +6040,7 @@ export interface UpdateAppVersionRequest {
6040
6040
  * </note>
6041
6041
  * @public
6042
6042
  */
6043
- additionalInfo?: Record<string, string[]>;
6043
+ additionalInfo?: Record<string, string[]> | undefined;
6044
6044
  }
6045
6045
  /**
6046
6046
  * @public
@@ -6067,7 +6067,7 @@ export interface UpdateAppVersionResponse {
6067
6067
  * </note>
6068
6068
  * @public
6069
6069
  */
6070
- additionalInfo?: Record<string, string[]>;
6070
+ additionalInfo?: Record<string, string[]> | undefined;
6071
6071
  }
6072
6072
  /**
6073
6073
  * @public
@@ -6091,17 +6091,17 @@ export interface UpdateAppVersionAppComponentRequest {
6091
6091
  * <p>Name of the Application Component.</p>
6092
6092
  * @public
6093
6093
  */
6094
- name?: string;
6094
+ name?: string | undefined;
6095
6095
  /**
6096
6096
  * <p>Type of Application Component. For more information about the types of Application Component, see <a href="https://docs.aws.amazon.com/resilience-hub/latest/userguide/AppComponent.grouping.html">Grouping resources in an AppComponent</a>.</p>
6097
6097
  * @public
6098
6098
  */
6099
- type?: string;
6099
+ type?: string | undefined;
6100
6100
  /**
6101
6101
  * <p>Currently, there is no supported additional information for Application Components.</p>
6102
6102
  * @public
6103
6103
  */
6104
- additionalInfo?: Record<string, string[]>;
6104
+ additionalInfo?: Record<string, string[]> | undefined;
6105
6105
  }
6106
6106
  /**
6107
6107
  * @public
@@ -6125,7 +6125,7 @@ export interface UpdateAppVersionAppComponentResponse {
6125
6125
  * <p>List of Application Components that belong to this resource.</p>
6126
6126
  * @public
6127
6127
  */
6128
- appComponent?: AppComponent;
6128
+ appComponent?: AppComponent | undefined;
6129
6129
  }
6130
6130
  /**
6131
6131
  * @public
@@ -6144,42 +6144,42 @@ export interface UpdateAppVersionResourceRequest {
6144
6144
  * <p>Name of the resource.</p>
6145
6145
  * @public
6146
6146
  */
6147
- resourceName?: string;
6147
+ resourceName?: string | undefined;
6148
6148
  /**
6149
6149
  * <p>Logical identifier of the resource.</p>
6150
6150
  * @public
6151
6151
  */
6152
- logicalResourceId?: LogicalResourceId;
6152
+ logicalResourceId?: LogicalResourceId | undefined;
6153
6153
  /**
6154
6154
  * <p>Physical identifier of the resource.</p>
6155
6155
  * @public
6156
6156
  */
6157
- physicalResourceId?: string;
6157
+ physicalResourceId?: string | undefined;
6158
6158
  /**
6159
6159
  * <p>Amazon Web Services region that owns the physical resource.</p>
6160
6160
  * @public
6161
6161
  */
6162
- awsRegion?: string;
6162
+ awsRegion?: string | undefined;
6163
6163
  /**
6164
6164
  * <p>Amazon Web Services account that owns the physical resource.</p>
6165
6165
  * @public
6166
6166
  */
6167
- awsAccountId?: string;
6167
+ awsAccountId?: string | undefined;
6168
6168
  /**
6169
6169
  * <p>Type of resource.</p>
6170
6170
  * @public
6171
6171
  */
6172
- resourceType?: string;
6172
+ resourceType?: string | undefined;
6173
6173
  /**
6174
6174
  * <p>List of Application Components that this resource belongs to. If an Application Component is not part of the Resilience Hub application, it will be added.</p>
6175
6175
  * @public
6176
6176
  */
6177
- appComponents?: string[];
6177
+ appComponents?: string[] | undefined;
6178
6178
  /**
6179
6179
  * <p>Currently, there is no supported additional information for resources.</p>
6180
6180
  * @public
6181
6181
  */
6182
- additionalInfo?: Record<string, string[]>;
6182
+ additionalInfo?: Record<string, string[]> | undefined;
6183
6183
  /**
6184
6184
  * <p>Indicates if a resource is excluded from an Resilience Hub application.</p>
6185
6185
  * <note>
@@ -6188,7 +6188,7 @@ export interface UpdateAppVersionResourceRequest {
6188
6188
  * </note>
6189
6189
  * @public
6190
6190
  */
6191
- excluded?: boolean;
6191
+ excluded?: boolean | undefined;
6192
6192
  }
6193
6193
  /**
6194
6194
  * @public
@@ -6212,7 +6212,7 @@ export interface UpdateAppVersionResourceResponse {
6212
6212
  * <p>Defines a physical resource. A physical resource is a resource that exists in your account. It can be identified using an Amazon Resource Name (ARN) or a Resilience Hub-native identifier.</p>
6213
6213
  * @public
6214
6214
  */
6215
- physicalResource?: PhysicalResource;
6215
+ physicalResource?: PhysicalResource | undefined;
6216
6216
  }
6217
6217
  /**
6218
6218
  * @public
@@ -6231,30 +6231,30 @@ export interface UpdateResiliencyPolicyRequest {
6231
6231
  * <p>The name of the policy</p>
6232
6232
  * @public
6233
6233
  */
6234
- policyName?: string;
6234
+ policyName?: string | undefined;
6235
6235
  /**
6236
6236
  * <p>The description for the policy.</p>
6237
6237
  * @public
6238
6238
  */
6239
- policyDescription?: string;
6239
+ policyDescription?: string | undefined;
6240
6240
  /**
6241
6241
  * <p>Specifies a high-level geographical location constraint for where your resilience policy
6242
6242
  * data can be stored.</p>
6243
6243
  * @public
6244
6244
  */
6245
- dataLocationConstraint?: DataLocationConstraint;
6245
+ dataLocationConstraint?: DataLocationConstraint | undefined;
6246
6246
  /**
6247
6247
  * <p>The tier for this resiliency policy, ranging from the highest severity
6248
6248
  * (<code>MissionCritical</code>) to lowest (<code>NonCritical</code>).</p>
6249
6249
  * @public
6250
6250
  */
6251
- tier?: ResiliencyPolicyTier;
6251
+ tier?: ResiliencyPolicyTier | undefined;
6252
6252
  /**
6253
6253
  * <p>The type of resiliency policy to be created, including the recovery time objective (RTO)
6254
6254
  * and recovery point objective (RPO) in seconds.</p>
6255
6255
  * @public
6256
6256
  */
6257
- policy?: Partial<Record<DisruptionType, FailurePolicy>>;
6257
+ policy?: Partial<Record<DisruptionType, FailurePolicy>> | undefined;
6258
6258
  }
6259
6259
  /**
6260
6260
  * @public