@aws-sdk/client-resiliencehub 3.85.0 → 3.94.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/dist-cjs/models/models_0.js +27 -3
- package/dist-cjs/protocols/Aws_restJson1.js +97 -0
- package/dist-es/models/models_0.js +18 -0
- package/dist-es/protocols/Aws_restJson1.js +97 -7
- package/dist-types/models/models_0.d.ts +204 -58
- package/dist-types/ts3.4/models/models_0.d.ts +63 -3
- package/package.json +4 -4
|
@@ -17,7 +17,8 @@ export declare enum ResourceMappingType {
|
|
|
17
17
|
APP_REGISTRY_APP = "AppRegistryApp",
|
|
18
18
|
CFN_STACK = "CfnStack",
|
|
19
19
|
RESOURCE = "Resource",
|
|
20
|
-
RESOURCE_GROUP = "ResourceGroup"
|
|
20
|
+
RESOURCE_GROUP = "ResourceGroup",
|
|
21
|
+
TERRAFORM = "Terraform"
|
|
21
22
|
}
|
|
22
23
|
export declare enum PhysicalIdentifierType {
|
|
23
24
|
ARN = "Arn",
|
|
@@ -110,6 +111,12 @@ export interface ResourceMapping {
|
|
|
110
111
|
* <p>The identifier of this resource.</p>
|
|
111
112
|
*/
|
|
112
113
|
physicalResourceId: PhysicalResourceId | undefined;
|
|
114
|
+
/**
|
|
115
|
+
* <p>
|
|
116
|
+
* The short name of the Terraform source.
|
|
117
|
+
* </p>
|
|
118
|
+
*/
|
|
119
|
+
terraformSourceName?: string;
|
|
113
120
|
}
|
|
114
121
|
export declare namespace ResourceMapping {
|
|
115
122
|
/**
|
|
@@ -120,7 +127,7 @@ export declare namespace ResourceMapping {
|
|
|
120
127
|
export interface AddDraftAppVersionResourceMappingsRequest {
|
|
121
128
|
/**
|
|
122
129
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
123
|
-
* arn:<code>partition</code>:
|
|
130
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
124
131
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
125
132
|
* Amazon Resource Names (ARNs)</a> in the
|
|
126
133
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -144,7 +151,7 @@ export declare namespace AddDraftAppVersionResourceMappingsRequest {
|
|
|
144
151
|
export interface AddDraftAppVersionResourceMappingsResponse {
|
|
145
152
|
/**
|
|
146
153
|
* <p> The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
147
|
-
* arn:<code>partition</code>:
|
|
154
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
148
155
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
149
156
|
* Amazon Resource Names (ARNs)</a> in the
|
|
150
157
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -325,6 +332,10 @@ export declare namespace AlarmRecommendation {
|
|
|
325
332
|
*/
|
|
326
333
|
const filterSensitiveLog: (obj: AlarmRecommendation) => any;
|
|
327
334
|
}
|
|
335
|
+
export declare enum AppAssessmentScheduleType {
|
|
336
|
+
DAILY = "Daily",
|
|
337
|
+
DISABLED = "Disabled"
|
|
338
|
+
}
|
|
328
339
|
export declare enum AppComplianceStatusType {
|
|
329
340
|
CHANGES_DETECTED = "ChangesDetected",
|
|
330
341
|
NOT_ASSESSED = "NotAssessed",
|
|
@@ -341,7 +352,7 @@ export declare enum AppStatusType {
|
|
|
341
352
|
export interface App {
|
|
342
353
|
/**
|
|
343
354
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
344
|
-
* arn:<code>partition</code>:
|
|
355
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
345
356
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
346
357
|
* Amazon Resource Names (ARNs)</a> in the
|
|
347
358
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -357,7 +368,7 @@ export interface App {
|
|
|
357
368
|
description?: string;
|
|
358
369
|
/**
|
|
359
370
|
* <p>The Amazon Resource Name (ARN) of the resiliency policy. The format for this ARN is:
|
|
360
|
-
* arn:<code>partition</code>:
|
|
371
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:resiliency-policy/<code>policy-id</code>. For more information about ARNs,
|
|
361
372
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
362
373
|
* Amazon Resource Names (ARNs)</a> in the
|
|
363
374
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -394,6 +405,12 @@ export interface App {
|
|
|
394
405
|
tags?: {
|
|
395
406
|
[key: string]: string;
|
|
396
407
|
};
|
|
408
|
+
/**
|
|
409
|
+
* <p>
|
|
410
|
+
* Assessment execution schedule with 'Daily' or 'Disabled' values.
|
|
411
|
+
* </p>
|
|
412
|
+
*/
|
|
413
|
+
assessmentSchedule?: AppAssessmentScheduleType | string;
|
|
397
414
|
}
|
|
398
415
|
export declare namespace App {
|
|
399
416
|
/**
|
|
@@ -544,7 +561,7 @@ export declare enum ResiliencyPolicyTier {
|
|
|
544
561
|
export interface ResiliencyPolicy {
|
|
545
562
|
/**
|
|
546
563
|
* <p>The Amazon Resource Name (ARN) of the resiliency policy. The format for this ARN is:
|
|
547
|
-
* arn:<code>partition</code>:
|
|
564
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:resiliency-policy/<code>policy-id</code>. For more information about ARNs,
|
|
548
565
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
549
566
|
* Amazon Resource Names (ARNs)</a> in the
|
|
550
567
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -618,13 +635,69 @@ export declare namespace ResiliencyScore {
|
|
|
618
635
|
*/
|
|
619
636
|
const filterSensitiveLog: (obj: ResiliencyScore) => any;
|
|
620
637
|
}
|
|
638
|
+
/**
|
|
639
|
+
* <p>
|
|
640
|
+
* Defines application resource errors.
|
|
641
|
+
* </p>
|
|
642
|
+
*/
|
|
643
|
+
export interface ResourceError {
|
|
644
|
+
/**
|
|
645
|
+
* <p>
|
|
646
|
+
* This is the identifier of the resource.
|
|
647
|
+
* </p>
|
|
648
|
+
*/
|
|
649
|
+
logicalResourceId?: string;
|
|
650
|
+
/**
|
|
651
|
+
* <p>
|
|
652
|
+
* This is the identifier of the physical resource.
|
|
653
|
+
* </p>
|
|
654
|
+
*/
|
|
655
|
+
physicalResourceId?: string;
|
|
656
|
+
/**
|
|
657
|
+
* <p>
|
|
658
|
+
* This is the error message.
|
|
659
|
+
* </p>
|
|
660
|
+
*/
|
|
661
|
+
reason?: string;
|
|
662
|
+
}
|
|
663
|
+
export declare namespace ResourceError {
|
|
664
|
+
/**
|
|
665
|
+
* @internal
|
|
666
|
+
*/
|
|
667
|
+
const filterSensitiveLog: (obj: ResourceError) => any;
|
|
668
|
+
}
|
|
669
|
+
/**
|
|
670
|
+
* <p>
|
|
671
|
+
* A list of errors retrieving an application's resources.
|
|
672
|
+
* </p>
|
|
673
|
+
*/
|
|
674
|
+
export interface ResourceErrorsDetails {
|
|
675
|
+
/**
|
|
676
|
+
* <p>
|
|
677
|
+
* A list of errors retrieving an application's resources.
|
|
678
|
+
* </p>
|
|
679
|
+
*/
|
|
680
|
+
resourceErrors?: ResourceError[];
|
|
681
|
+
/**
|
|
682
|
+
* <p>
|
|
683
|
+
* This indicates if there are more errors not listed in the resourceErrors list.
|
|
684
|
+
* </p>
|
|
685
|
+
*/
|
|
686
|
+
hasMoreErrors?: boolean;
|
|
687
|
+
}
|
|
688
|
+
export declare namespace ResourceErrorsDetails {
|
|
689
|
+
/**
|
|
690
|
+
* @internal
|
|
691
|
+
*/
|
|
692
|
+
const filterSensitiveLog: (obj: ResourceErrorsDetails) => any;
|
|
693
|
+
}
|
|
621
694
|
/**
|
|
622
695
|
* <p>Defines an application assessment.</p>
|
|
623
696
|
*/
|
|
624
697
|
export interface AppAssessment {
|
|
625
698
|
/**
|
|
626
699
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
627
|
-
* arn:<code>partition</code>:
|
|
700
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
628
701
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
629
702
|
* Amazon Resource Names (ARNs)</a> in the
|
|
630
703
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -678,7 +751,7 @@ export interface AppAssessment {
|
|
|
678
751
|
assessmentName?: string;
|
|
679
752
|
/**
|
|
680
753
|
* <p>The Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
|
|
681
|
-
* arn:<code>partition</code>:
|
|
754
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
|
|
682
755
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
683
756
|
* Amazon Resource Names (ARNs)</a> in the
|
|
684
757
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -695,6 +768,12 @@ export interface AppAssessment {
|
|
|
695
768
|
tags?: {
|
|
696
769
|
[key: string]: string;
|
|
697
770
|
};
|
|
771
|
+
/**
|
|
772
|
+
* <p>
|
|
773
|
+
* A resource error object containing a list of errors retrieving an application's resources.
|
|
774
|
+
* </p>
|
|
775
|
+
*/
|
|
776
|
+
resourceErrorsDetails?: ResourceErrorsDetails;
|
|
698
777
|
}
|
|
699
778
|
export declare namespace AppAssessment {
|
|
700
779
|
/**
|
|
@@ -708,7 +787,7 @@ export declare namespace AppAssessment {
|
|
|
708
787
|
export interface AppAssessmentSummary {
|
|
709
788
|
/**
|
|
710
789
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
711
|
-
* arn:<code>partition</code>:
|
|
790
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
712
791
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
713
792
|
* Amazon Resource Names (ARNs)</a> in the
|
|
714
793
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -744,7 +823,7 @@ export interface AppAssessmentSummary {
|
|
|
744
823
|
assessmentName?: string;
|
|
745
824
|
/**
|
|
746
825
|
* <p>The Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
|
|
747
|
-
* arn:<code>partition</code>:
|
|
826
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
|
|
748
827
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
749
828
|
* Amazon Resource Names (ARNs)</a> in the
|
|
750
829
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -831,7 +910,7 @@ export declare namespace AppComponentCompliance {
|
|
|
831
910
|
export interface AppSummary {
|
|
832
911
|
/**
|
|
833
912
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
834
|
-
* arn:<code>partition</code>:
|
|
913
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
835
914
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
836
915
|
* Amazon Resource Names (ARNs)</a> in the
|
|
837
916
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -857,6 +936,12 @@ export interface AppSummary {
|
|
|
857
936
|
* <p>The current resiliency score for the application.</p>
|
|
858
937
|
*/
|
|
859
938
|
resiliencyScore?: number;
|
|
939
|
+
/**
|
|
940
|
+
* <p>
|
|
941
|
+
* Assessment execution schedule with 'Daily' or 'Disabled' values.
|
|
942
|
+
* </p>
|
|
943
|
+
*/
|
|
944
|
+
assessmentSchedule?: AppAssessmentScheduleType | string;
|
|
860
945
|
}
|
|
861
946
|
export declare namespace AppSummary {
|
|
862
947
|
/**
|
|
@@ -890,7 +975,7 @@ export interface CreateAppRequest {
|
|
|
890
975
|
description?: string;
|
|
891
976
|
/**
|
|
892
977
|
* <p>The Amazon Resource Name (ARN) of the resiliency policy. The format for this ARN is:
|
|
893
|
-
* arn:<code>partition</code>:
|
|
978
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:resiliency-policy/<code>policy-id</code>. For more information about ARNs,
|
|
894
979
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
895
980
|
* Amazon Resource Names (ARNs)</a> in the
|
|
896
981
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -908,6 +993,12 @@ export interface CreateAppRequest {
|
|
|
908
993
|
* You should not reuse the same client token for other API requests.</p>
|
|
909
994
|
*/
|
|
910
995
|
clientToken?: string;
|
|
996
|
+
/**
|
|
997
|
+
* <p>
|
|
998
|
+
* Assessment execution schedule with 'Daily' or 'Disabled' values.
|
|
999
|
+
* </p>
|
|
1000
|
+
*/
|
|
1001
|
+
assessmentSchedule?: AppAssessmentScheduleType | string;
|
|
911
1002
|
}
|
|
912
1003
|
export declare namespace CreateAppRequest {
|
|
913
1004
|
/**
|
|
@@ -988,7 +1079,7 @@ export interface CreateRecommendationTemplateRequest {
|
|
|
988
1079
|
recommendationTypes?: (RenderRecommendationType | string)[];
|
|
989
1080
|
/**
|
|
990
1081
|
* <p>The Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
|
|
991
|
-
* arn:<code>partition</code>:
|
|
1082
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
|
|
992
1083
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
993
1084
|
* Amazon Resource Names (ARNs)</a> in the
|
|
994
1085
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1056,7 +1147,7 @@ export interface RecommendationTemplate {
|
|
|
1056
1147
|
templatesLocation?: S3Location;
|
|
1057
1148
|
/**
|
|
1058
1149
|
* <p>The Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
|
|
1059
|
-
* arn:<code>partition</code>:
|
|
1150
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
|
|
1060
1151
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1061
1152
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1062
1153
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1064,7 +1155,7 @@ export interface RecommendationTemplate {
|
|
|
1064
1155
|
assessmentArn: string | undefined;
|
|
1065
1156
|
/**
|
|
1066
1157
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
1067
|
-
* arn:<code>partition</code>:
|
|
1158
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
1068
1159
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1069
1160
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1070
1161
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1222,7 +1313,7 @@ export declare namespace CreateResiliencyPolicyResponse {
|
|
|
1222
1313
|
export interface DeleteAppRequest {
|
|
1223
1314
|
/**
|
|
1224
1315
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
1225
|
-
* arn:<code>partition</code>:
|
|
1316
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
1226
1317
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1227
1318
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1228
1319
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1247,7 +1338,7 @@ export declare namespace DeleteAppRequest {
|
|
|
1247
1338
|
export interface DeleteAppResponse {
|
|
1248
1339
|
/**
|
|
1249
1340
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
1250
|
-
* arn:<code>partition</code>:
|
|
1341
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
1251
1342
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1252
1343
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1253
1344
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1263,7 +1354,7 @@ export declare namespace DeleteAppResponse {
|
|
|
1263
1354
|
export interface DeleteAppAssessmentRequest {
|
|
1264
1355
|
/**
|
|
1265
1356
|
* <p>The Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
|
|
1266
|
-
* arn:<code>partition</code>:
|
|
1357
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
|
|
1267
1358
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1268
1359
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1269
1360
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1284,7 +1375,7 @@ export declare namespace DeleteAppAssessmentRequest {
|
|
|
1284
1375
|
export interface DeleteAppAssessmentResponse {
|
|
1285
1376
|
/**
|
|
1286
1377
|
* <p>The Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
|
|
1287
|
-
* arn:<code>partition</code>:
|
|
1378
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
|
|
1288
1379
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1289
1380
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1290
1381
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1337,7 +1428,7 @@ export declare namespace DeleteRecommendationTemplateResponse {
|
|
|
1337
1428
|
export interface DeleteResiliencyPolicyRequest {
|
|
1338
1429
|
/**
|
|
1339
1430
|
* <p>The Amazon Resource Name (ARN) of the resiliency policy. The format for this ARN is:
|
|
1340
|
-
* arn:<code>partition</code>:
|
|
1431
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:resiliency-policy/<code>policy-id</code>. For more information about ARNs,
|
|
1341
1432
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1342
1433
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1343
1434
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1358,7 +1449,7 @@ export declare namespace DeleteResiliencyPolicyRequest {
|
|
|
1358
1449
|
export interface DeleteResiliencyPolicyResponse {
|
|
1359
1450
|
/**
|
|
1360
1451
|
* <p>The Amazon Resource Name (ARN) of the resiliency policy. The format for this ARN is:
|
|
1361
|
-
* arn:<code>partition</code>:
|
|
1452
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:resiliency-policy/<code>policy-id</code>. For more information about ARNs,
|
|
1362
1453
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1363
1454
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1364
1455
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1374,7 +1465,7 @@ export declare namespace DeleteResiliencyPolicyResponse {
|
|
|
1374
1465
|
export interface DescribeAppRequest {
|
|
1375
1466
|
/**
|
|
1376
1467
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
1377
|
-
* arn:<code>partition</code>:
|
|
1468
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
1378
1469
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1379
1470
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1380
1471
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1403,7 +1494,7 @@ export declare namespace DescribeAppResponse {
|
|
|
1403
1494
|
export interface DescribeAppAssessmentRequest {
|
|
1404
1495
|
/**
|
|
1405
1496
|
* <p>The Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
|
|
1406
|
-
* arn:<code>partition</code>:
|
|
1497
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
|
|
1407
1498
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1408
1499
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1409
1500
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1433,7 +1524,7 @@ export declare namespace DescribeAppAssessmentResponse {
|
|
|
1433
1524
|
export interface DescribeAppVersionResourcesResolutionStatusRequest {
|
|
1434
1525
|
/**
|
|
1435
1526
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
1436
|
-
* arn:<code>partition</code>:
|
|
1527
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
1437
1528
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1438
1529
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1439
1530
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1463,7 +1554,7 @@ export declare enum ResourceResolutionStatusType {
|
|
|
1463
1554
|
export interface DescribeAppVersionResourcesResolutionStatusResponse {
|
|
1464
1555
|
/**
|
|
1465
1556
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
1466
|
-
* arn:<code>partition</code>:
|
|
1557
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
1467
1558
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1468
1559
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1469
1560
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1495,7 +1586,7 @@ export declare namespace DescribeAppVersionResourcesResolutionStatusResponse {
|
|
|
1495
1586
|
export interface DescribeAppVersionTemplateRequest {
|
|
1496
1587
|
/**
|
|
1497
1588
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
1498
|
-
* arn:<code>partition</code>:
|
|
1589
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
1499
1590
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1500
1591
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1501
1592
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1515,7 +1606,7 @@ export declare namespace DescribeAppVersionTemplateRequest {
|
|
|
1515
1606
|
export interface DescribeAppVersionTemplateResponse {
|
|
1516
1607
|
/**
|
|
1517
1608
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
1518
|
-
* arn:<code>partition</code>:
|
|
1609
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
1519
1610
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1520
1611
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1521
1612
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1539,7 +1630,7 @@ export declare namespace DescribeAppVersionTemplateResponse {
|
|
|
1539
1630
|
export interface DescribeDraftAppVersionResourcesImportStatusRequest {
|
|
1540
1631
|
/**
|
|
1541
1632
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
1542
|
-
* arn:<code>partition</code>:
|
|
1633
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
1543
1634
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1544
1635
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1545
1636
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1561,7 +1652,7 @@ export declare enum ResourceImportStatusType {
|
|
|
1561
1652
|
export interface DescribeDraftAppVersionResourcesImportStatusResponse {
|
|
1562
1653
|
/**
|
|
1563
1654
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
1564
|
-
* arn:<code>partition</code>:
|
|
1655
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
1565
1656
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1566
1657
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1567
1658
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1593,7 +1684,7 @@ export declare namespace DescribeDraftAppVersionResourcesImportStatusResponse {
|
|
|
1593
1684
|
export interface DescribeResiliencyPolicyRequest {
|
|
1594
1685
|
/**
|
|
1595
1686
|
* <p>The Amazon Resource Name (ARN) of the resiliency policy. The format for this ARN is:
|
|
1596
|
-
* arn:<code>partition</code>:
|
|
1687
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:resiliency-policy/<code>policy-id</code>. For more information about ARNs,
|
|
1597
1688
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1598
1689
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1599
1690
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1620,10 +1711,29 @@ export declare namespace DescribeResiliencyPolicyResponse {
|
|
|
1620
1711
|
*/
|
|
1621
1712
|
const filterSensitiveLog: (obj: DescribeResiliencyPolicyResponse) => any;
|
|
1622
1713
|
}
|
|
1714
|
+
/**
|
|
1715
|
+
* <p>
|
|
1716
|
+
* The Terraform s3 state file you need to import.
|
|
1717
|
+
* </p>
|
|
1718
|
+
*/
|
|
1719
|
+
export interface TerraformSource {
|
|
1720
|
+
/**
|
|
1721
|
+
* <p>
|
|
1722
|
+
* The Terraform s3 state file you need to import.
|
|
1723
|
+
* </p>
|
|
1724
|
+
*/
|
|
1725
|
+
s3StateFileUrl: string | undefined;
|
|
1726
|
+
}
|
|
1727
|
+
export declare namespace TerraformSource {
|
|
1728
|
+
/**
|
|
1729
|
+
* @internal
|
|
1730
|
+
*/
|
|
1731
|
+
const filterSensitiveLog: (obj: TerraformSource) => any;
|
|
1732
|
+
}
|
|
1623
1733
|
export interface ImportResourcesToDraftAppVersionRequest {
|
|
1624
1734
|
/**
|
|
1625
1735
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
1626
|
-
* arn:<code>partition</code>:
|
|
1736
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
1627
1737
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1628
1738
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1629
1739
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1632,7 +1742,13 @@ export interface ImportResourcesToDraftAppVersionRequest {
|
|
|
1632
1742
|
/**
|
|
1633
1743
|
* <p>The Amazon Resource Names (ARNs) for the resources that you want to import.</p>
|
|
1634
1744
|
*/
|
|
1635
|
-
sourceArns
|
|
1745
|
+
sourceArns?: string[];
|
|
1746
|
+
/**
|
|
1747
|
+
* <p>
|
|
1748
|
+
* A list of terraform file s3 URLs you need to import.
|
|
1749
|
+
* </p>
|
|
1750
|
+
*/
|
|
1751
|
+
terraformSources?: TerraformSource[];
|
|
1636
1752
|
}
|
|
1637
1753
|
export declare namespace ImportResourcesToDraftAppVersionRequest {
|
|
1638
1754
|
/**
|
|
@@ -1643,7 +1759,7 @@ export declare namespace ImportResourcesToDraftAppVersionRequest {
|
|
|
1643
1759
|
export interface ImportResourcesToDraftAppVersionResponse {
|
|
1644
1760
|
/**
|
|
1645
1761
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
1646
|
-
* arn:<code>partition</code>:
|
|
1762
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
1647
1763
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1648
1764
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1649
1765
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1656,11 +1772,17 @@ export interface ImportResourcesToDraftAppVersionResponse {
|
|
|
1656
1772
|
/**
|
|
1657
1773
|
* <p>The Amazon Resource Names (ARNs) for the resources that you imported.</p>
|
|
1658
1774
|
*/
|
|
1659
|
-
sourceArns
|
|
1775
|
+
sourceArns?: string[];
|
|
1660
1776
|
/**
|
|
1661
1777
|
* <p>The status of the action.</p>
|
|
1662
1778
|
*/
|
|
1663
1779
|
status: ResourceImportStatusType | string | undefined;
|
|
1780
|
+
/**
|
|
1781
|
+
* <p>
|
|
1782
|
+
* A list of terraform file s3 URLs you need to import.
|
|
1783
|
+
* </p>
|
|
1784
|
+
*/
|
|
1785
|
+
terraformSources?: TerraformSource[];
|
|
1664
1786
|
}
|
|
1665
1787
|
export declare namespace ImportResourcesToDraftAppVersionResponse {
|
|
1666
1788
|
/**
|
|
@@ -1671,7 +1793,7 @@ export declare namespace ImportResourcesToDraftAppVersionResponse {
|
|
|
1671
1793
|
export interface ListAlarmRecommendationsRequest {
|
|
1672
1794
|
/**
|
|
1673
1795
|
* <p>The Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
|
|
1674
|
-
* arn:<code>partition</code>:
|
|
1796
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
|
|
1675
1797
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1676
1798
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1677
1799
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1714,7 +1836,7 @@ export declare namespace ListAlarmRecommendationsResponse {
|
|
|
1714
1836
|
export interface ListAppAssessmentsRequest {
|
|
1715
1837
|
/**
|
|
1716
1838
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
1717
|
-
* arn:<code>partition</code>:
|
|
1839
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
1718
1840
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1719
1841
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1720
1842
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1788,7 +1910,7 @@ export interface ListAppComponentCompliancesRequest {
|
|
|
1788
1910
|
maxResults?: number;
|
|
1789
1911
|
/**
|
|
1790
1912
|
* <p>The Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
|
|
1791
|
-
* arn:<code>partition</code>:
|
|
1913
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
|
|
1792
1914
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1793
1915
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1794
1916
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -1822,7 +1944,7 @@ export declare namespace ListAppComponentCompliancesResponse {
|
|
|
1822
1944
|
export interface ListAppComponentRecommendationsRequest {
|
|
1823
1945
|
/**
|
|
1824
1946
|
* <p>The Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
|
|
1825
|
-
* arn:<code>partition</code>:
|
|
1947
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
|
|
1826
1948
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
1827
1949
|
* Amazon Resource Names (ARNs)</a> in the
|
|
1828
1950
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2012,7 +2134,7 @@ export interface ListAppsRequest {
|
|
|
2012
2134
|
name?: string;
|
|
2013
2135
|
/**
|
|
2014
2136
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
2015
|
-
* arn:<code>partition</code>:
|
|
2137
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
2016
2138
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2017
2139
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2018
2140
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2044,7 +2166,7 @@ export declare namespace ListAppsResponse {
|
|
|
2044
2166
|
export interface ListAppVersionResourceMappingsRequest {
|
|
2045
2167
|
/**
|
|
2046
2168
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
2047
|
-
* arn:<code>partition</code>:
|
|
2169
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
2048
2170
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2049
2171
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2050
2172
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2093,7 +2215,7 @@ export declare namespace ListAppVersionResourceMappingsResponse {
|
|
|
2093
2215
|
export interface ListAppVersionResourcesRequest {
|
|
2094
2216
|
/**
|
|
2095
2217
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
2096
|
-
* arn:<code>partition</code>:
|
|
2218
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
2097
2219
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2098
2220
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2099
2221
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2139,6 +2261,12 @@ export interface LogicalResourceId {
|
|
|
2139
2261
|
* <p>The name of the resource group that this resource belongs to.</p>
|
|
2140
2262
|
*/
|
|
2141
2263
|
resourceGroupName?: string;
|
|
2264
|
+
/**
|
|
2265
|
+
* <p>
|
|
2266
|
+
* The name of the Terraform S3 state file this resource belongs to.
|
|
2267
|
+
* </p>
|
|
2268
|
+
*/
|
|
2269
|
+
terraformSourceName?: string;
|
|
2142
2270
|
}
|
|
2143
2271
|
export declare namespace LogicalResourceId {
|
|
2144
2272
|
/**
|
|
@@ -2202,7 +2330,7 @@ export declare namespace ListAppVersionResourcesResponse {
|
|
|
2202
2330
|
export interface ListAppVersionsRequest {
|
|
2203
2331
|
/**
|
|
2204
2332
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
2205
|
-
* arn:<code>partition</code>:
|
|
2333
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
2206
2334
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2207
2335
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2208
2336
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2243,7 +2371,7 @@ export declare namespace ListAppVersionsResponse {
|
|
|
2243
2371
|
export interface ListRecommendationTemplatesRequest {
|
|
2244
2372
|
/**
|
|
2245
2373
|
* <p>The Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
|
|
2246
|
-
* arn:<code>partition</code>:
|
|
2374
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
|
|
2247
2375
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2248
2376
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2249
2377
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2347,7 +2475,7 @@ export interface ListSopRecommendationsRequest {
|
|
|
2347
2475
|
maxResults?: number;
|
|
2348
2476
|
/**
|
|
2349
2477
|
* <p>The Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
|
|
2350
|
-
* arn:<code>partition</code>:
|
|
2478
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
|
|
2351
2479
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2352
2480
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2353
2481
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2496,7 +2624,7 @@ export interface ListTestRecommendationsRequest {
|
|
|
2496
2624
|
maxResults?: number;
|
|
2497
2625
|
/**
|
|
2498
2626
|
* <p>The Amazon Resource Name (ARN) of the assessment. The format for this ARN is:
|
|
2499
|
-
* arn:<code>partition</code>:
|
|
2627
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app-assessment/<code>app-id</code>. For more information about ARNs,
|
|
2500
2628
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2501
2629
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2502
2630
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2564,6 +2692,12 @@ export interface TestRecommendation {
|
|
|
2564
2692
|
* <p>The prerequisite of the test recommendation.</p>
|
|
2565
2693
|
*/
|
|
2566
2694
|
prerequisite?: string;
|
|
2695
|
+
/**
|
|
2696
|
+
* <p>
|
|
2697
|
+
* A list of recommended alarms that are used in the test and must be exported before or with the test.
|
|
2698
|
+
* </p>
|
|
2699
|
+
*/
|
|
2700
|
+
dependsOnAlarms?: string[];
|
|
2567
2701
|
}
|
|
2568
2702
|
export declare namespace TestRecommendation {
|
|
2569
2703
|
/**
|
|
@@ -2590,7 +2724,7 @@ export declare namespace ListTestRecommendationsResponse {
|
|
|
2590
2724
|
export interface ListUnsupportedAppVersionResourcesRequest {
|
|
2591
2725
|
/**
|
|
2592
2726
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
2593
|
-
* arn:<code>partition</code>:
|
|
2727
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
2594
2728
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2595
2729
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2596
2730
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2666,7 +2800,7 @@ export declare namespace ListUnsupportedAppVersionResourcesResponse {
|
|
|
2666
2800
|
export interface PublishAppVersionRequest {
|
|
2667
2801
|
/**
|
|
2668
2802
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
2669
|
-
* arn:<code>partition</code>:
|
|
2803
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
2670
2804
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2671
2805
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2672
2806
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2682,7 +2816,7 @@ export declare namespace PublishAppVersionRequest {
|
|
|
2682
2816
|
export interface PublishAppVersionResponse {
|
|
2683
2817
|
/**
|
|
2684
2818
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
2685
|
-
* arn:<code>partition</code>:
|
|
2819
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
2686
2820
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2687
2821
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2688
2822
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2702,7 +2836,7 @@ export declare namespace PublishAppVersionResponse {
|
|
|
2702
2836
|
export interface PutDraftAppVersionTemplateRequest {
|
|
2703
2837
|
/**
|
|
2704
2838
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
2705
|
-
* arn:<code>partition</code>:
|
|
2839
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
2706
2840
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2707
2841
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2708
2842
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2722,7 +2856,7 @@ export declare namespace PutDraftAppVersionTemplateRequest {
|
|
|
2722
2856
|
export interface PutDraftAppVersionTemplateResponse {
|
|
2723
2857
|
/**
|
|
2724
2858
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
2725
|
-
* arn:<code>partition</code>:
|
|
2859
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
2726
2860
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2727
2861
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2728
2862
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2742,7 +2876,7 @@ export declare namespace PutDraftAppVersionTemplateResponse {
|
|
|
2742
2876
|
export interface RemoveDraftAppVersionResourceMappingsRequest {
|
|
2743
2877
|
/**
|
|
2744
2878
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
2745
|
-
* arn:<code>partition</code>:
|
|
2879
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
2746
2880
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2747
2881
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2748
2882
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2764,6 +2898,12 @@ export interface RemoveDraftAppVersionResourceMappingsRequest {
|
|
|
2764
2898
|
* <p>The names of the resource groups to remove from the resource mappings.</p>
|
|
2765
2899
|
*/
|
|
2766
2900
|
resourceGroupNames?: string[];
|
|
2901
|
+
/**
|
|
2902
|
+
* <p>
|
|
2903
|
+
*
|
|
2904
|
+
* </p>
|
|
2905
|
+
*/
|
|
2906
|
+
terraformSourceNames?: string[];
|
|
2767
2907
|
}
|
|
2768
2908
|
export declare namespace RemoveDraftAppVersionResourceMappingsRequest {
|
|
2769
2909
|
/**
|
|
@@ -2774,7 +2914,7 @@ export declare namespace RemoveDraftAppVersionResourceMappingsRequest {
|
|
|
2774
2914
|
export interface RemoveDraftAppVersionResourceMappingsResponse {
|
|
2775
2915
|
/**
|
|
2776
2916
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
2777
|
-
* arn:<code>partition</code>:
|
|
2917
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
2778
2918
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2779
2919
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2780
2920
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2794,7 +2934,7 @@ export declare namespace RemoveDraftAppVersionResourceMappingsResponse {
|
|
|
2794
2934
|
export interface ResolveAppVersionResourcesRequest {
|
|
2795
2935
|
/**
|
|
2796
2936
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
2797
|
-
* arn:<code>partition</code>:
|
|
2937
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
2798
2938
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2799
2939
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2800
2940
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2814,7 +2954,7 @@ export declare namespace ResolveAppVersionResourcesRequest {
|
|
|
2814
2954
|
export interface ResolveAppVersionResourcesResponse {
|
|
2815
2955
|
/**
|
|
2816
2956
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
2817
|
-
* arn:<code>partition</code>:
|
|
2957
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
2818
2958
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2819
2959
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2820
2960
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2842,7 +2982,7 @@ export declare namespace ResolveAppVersionResourcesResponse {
|
|
|
2842
2982
|
export interface StartAppAssessmentRequest {
|
|
2843
2983
|
/**
|
|
2844
2984
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
2845
|
-
* arn:<code>partition</code>:
|
|
2985
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
2846
2986
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2847
2987
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2848
2988
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2940,7 +3080,7 @@ export declare namespace UntagResourceResponse {
|
|
|
2940
3080
|
export interface UpdateAppRequest {
|
|
2941
3081
|
/**
|
|
2942
3082
|
* <p>The Amazon Resource Name (ARN) of the application. The format for this ARN is:
|
|
2943
|
-
* arn:<code>partition</code>:
|
|
3083
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs,
|
|
2944
3084
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2945
3085
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2946
3086
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2952,7 +3092,7 @@ export interface UpdateAppRequest {
|
|
|
2952
3092
|
description?: string;
|
|
2953
3093
|
/**
|
|
2954
3094
|
* <p>The Amazon Resource Name (ARN) of the resiliency policy. The format for this ARN is:
|
|
2955
|
-
* arn:<code>partition</code>:
|
|
3095
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:resiliency-policy/<code>policy-id</code>. For more information about ARNs,
|
|
2956
3096
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2957
3097
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2958
3098
|
* <i>AWS General Reference</i>.</p>
|
|
@@ -2962,6 +3102,12 @@ export interface UpdateAppRequest {
|
|
|
2962
3102
|
* <p>Specifies if the resiliency policy ARN should be cleared.</p>
|
|
2963
3103
|
*/
|
|
2964
3104
|
clearResiliencyPolicyArn?: boolean;
|
|
3105
|
+
/**
|
|
3106
|
+
* <p>
|
|
3107
|
+
* Assessment execution schedule with 'Daily' or 'Disabled' values.
|
|
3108
|
+
* </p>
|
|
3109
|
+
*/
|
|
3110
|
+
assessmentSchedule?: AppAssessmentScheduleType | string;
|
|
2965
3111
|
}
|
|
2966
3112
|
export declare namespace UpdateAppRequest {
|
|
2967
3113
|
/**
|
|
@@ -2985,7 +3131,7 @@ export declare namespace UpdateAppResponse {
|
|
|
2985
3131
|
export interface UpdateResiliencyPolicyRequest {
|
|
2986
3132
|
/**
|
|
2987
3133
|
* <p>The Amazon Resource Name (ARN) of the resiliency policy. The format for this ARN is:
|
|
2988
|
-
* arn:<code>partition</code>:
|
|
3134
|
+
* arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:resiliency-policy/<code>policy-id</code>. For more information about ARNs,
|
|
2989
3135
|
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2990
3136
|
* Amazon Resource Names (ARNs)</a> in the
|
|
2991
3137
|
* <i>AWS General Reference</i>.</p>
|