@aws-sdk/client-resiliencehub 3.670.0 → 3.674.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.
Files changed (47) hide show
  1. package/dist-cjs/index.js +7 -1
  2. package/dist-es/protocols/Aws_restJson1.js +6 -0
  3. package/dist-types/commands/AddDraftAppVersionResourceMappingsCommand.d.ts +4 -4
  4. package/dist-types/commands/BatchUpdateRecommendationStatusCommand.d.ts +2 -2
  5. package/dist-types/commands/CreateAppCommand.d.ts +11 -9
  6. package/dist-types/commands/CreateAppVersionResourceCommand.d.ts +2 -2
  7. package/dist-types/commands/CreateRecommendationTemplateCommand.d.ts +5 -5
  8. package/dist-types/commands/CreateResiliencyPolicyCommand.d.ts +5 -5
  9. package/dist-types/commands/DeleteAppAssessmentCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteAppInputSourceCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteAppVersionResourceCommand.d.ts +2 -2
  12. package/dist-types/commands/DeleteRecommendationTemplateCommand.d.ts +1 -1
  13. package/dist-types/commands/DescribeAppAssessmentCommand.d.ts +9 -9
  14. package/dist-types/commands/DescribeAppCommand.d.ts +7 -6
  15. package/dist-types/commands/DescribeAppVersionResourceCommand.d.ts +2 -2
  16. package/dist-types/commands/DescribeAppVersionResourcesResolutionStatusCommand.d.ts +1 -1
  17. package/dist-types/commands/DescribeDraftAppVersionResourcesImportStatusCommand.d.ts +6 -1
  18. package/dist-types/commands/DescribeResiliencyPolicyCommand.d.ts +3 -3
  19. package/dist-types/commands/DescribeResourceGroupingRecommendationTaskCommand.d.ts +1 -1
  20. package/dist-types/commands/ImportResourcesToDraftAppVersionCommand.d.ts +2 -2
  21. package/dist-types/commands/ListAlarmRecommendationsCommand.d.ts +3 -3
  22. package/dist-types/commands/ListAppAssessmentComplianceDriftsCommand.d.ts +6 -5
  23. package/dist-types/commands/ListAppAssessmentResourceDriftsCommand.d.ts +1 -1
  24. package/dist-types/commands/ListAppAssessmentsCommand.d.ts +8 -8
  25. package/dist-types/commands/ListAppComponentCompliancesCommand.d.ts +3 -3
  26. package/dist-types/commands/ListAppComponentRecommendationsCommand.d.ts +6 -6
  27. package/dist-types/commands/ListAppInputSourcesCommand.d.ts +1 -1
  28. package/dist-types/commands/ListAppVersionResourceMappingsCommand.d.ts +2 -2
  29. package/dist-types/commands/ListAppVersionResourcesCommand.d.ts +2 -2
  30. package/dist-types/commands/ListAppsCommand.d.ts +6 -4
  31. package/dist-types/commands/ListRecommendationTemplatesCommand.d.ts +4 -4
  32. package/dist-types/commands/ListResiliencyPoliciesCommand.d.ts +3 -3
  33. package/dist-types/commands/ListResourceGroupingRecommendationsCommand.d.ts +4 -4
  34. package/dist-types/commands/ListSopRecommendationsCommand.d.ts +3 -3
  35. package/dist-types/commands/ListSuggestedResiliencyPoliciesCommand.d.ts +3 -3
  36. package/dist-types/commands/ListTestRecommendationsCommand.d.ts +4 -4
  37. package/dist-types/commands/ListUnsupportedAppVersionResourcesCommand.d.ts +1 -1
  38. package/dist-types/commands/RejectResourceGroupingRecommendationsCommand.d.ts +1 -1
  39. package/dist-types/commands/ResolveAppVersionResourcesCommand.d.ts +1 -1
  40. package/dist-types/commands/StartAppAssessmentCommand.d.ts +9 -9
  41. package/dist-types/commands/StartResourceGroupingRecommendationTaskCommand.d.ts +1 -1
  42. package/dist-types/commands/UpdateAppCommand.d.ts +10 -9
  43. package/dist-types/commands/UpdateAppVersionResourceCommand.d.ts +2 -2
  44. package/dist-types/commands/UpdateResiliencyPolicyCommand.d.ts +5 -5
  45. package/dist-types/models/models_0.d.ts +56 -6
  46. package/dist-types/ts3.4/models/models_0.d.ts +10 -2
  47. package/package.json +2 -2
@@ -39,10 +39,10 @@ declare const ListAppAssessmentsCommand_base: {
39
39
  * appArn: "STRING_VALUE",
40
40
  * assessmentName: "STRING_VALUE",
41
41
  * assessmentStatus: [ // AssessmentStatusList
42
- * "STRING_VALUE",
42
+ * "Pending" || "InProgress" || "Failed" || "Success",
43
43
  * ],
44
- * complianceStatus: "STRING_VALUE",
45
- * invoker: "STRING_VALUE",
44
+ * complianceStatus: "PolicyBreached" || "PolicyMet" || "NotApplicable" || "MissingPolicy",
45
+ * invoker: "User" || "System",
46
46
  * reverseOrder: true || false,
47
47
  * nextToken: "STRING_VALUE",
48
48
  * maxResults: Number("int"),
@@ -55,22 +55,22 @@ declare const ListAppAssessmentsCommand_base: {
55
55
  * // { // AppAssessmentSummary
56
56
  * // appArn: "STRING_VALUE",
57
57
  * // appVersion: "STRING_VALUE",
58
- * // assessmentStatus: "STRING_VALUE", // required
59
- * // invoker: "STRING_VALUE",
58
+ * // assessmentStatus: "Pending" || "InProgress" || "Failed" || "Success", // required
59
+ * // invoker: "User" || "System",
60
60
  * // startTime: new Date("TIMESTAMP"),
61
61
  * // endTime: new Date("TIMESTAMP"),
62
62
  * // message: "STRING_VALUE",
63
63
  * // assessmentName: "STRING_VALUE",
64
64
  * // assessmentArn: "STRING_VALUE", // required
65
- * // complianceStatus: "STRING_VALUE",
65
+ * // complianceStatus: "PolicyBreached" || "PolicyMet" || "NotApplicable" || "MissingPolicy",
66
66
  * // cost: { // Cost
67
67
  * // amount: Number("double"), // required
68
68
  * // currency: "STRING_VALUE", // required
69
- * // frequency: "STRING_VALUE", // required
69
+ * // frequency: "Hourly" || "Daily" || "Monthly" || "Yearly", // required
70
70
  * // },
71
71
  * // resiliencyScore: Number("double"),
72
72
  * // versionName: "STRING_VALUE",
73
- * // driftStatus: "STRING_VALUE",
73
+ * // driftStatus: "NotChecked" || "NotDetected" || "Detected",
74
74
  * // },
75
75
  * // ],
76
76
  * // };
@@ -47,7 +47,7 @@ declare const ListAppComponentCompliancesCommand_base: {
47
47
  * // cost: { // Cost
48
48
  * // amount: Number("double"), // required
49
49
  * // currency: "STRING_VALUE", // required
50
- * // frequency: "STRING_VALUE", // required
50
+ * // frequency: "Hourly" || "Daily" || "Monthly" || "Yearly", // required
51
51
  * // },
52
52
  * // appComponentName: "STRING_VALUE",
53
53
  * // compliance: { // AssessmentCompliance
@@ -59,13 +59,13 @@ declare const ListAppComponentCompliancesCommand_base: {
59
59
  * // currentRpoInSecs: Number("int"),
60
60
  * // rpoReferenceId: "STRING_VALUE",
61
61
  * // rpoDescription: "STRING_VALUE",
62
- * // complianceStatus: "STRING_VALUE", // required
62
+ * // complianceStatus: "PolicyBreached" || "PolicyMet" || "NotApplicable" || "MissingPolicy", // required
63
63
  * // achievableRpoInSecs: Number("int"),
64
64
  * // message: "STRING_VALUE",
65
65
  * // },
66
66
  * // },
67
67
  * // message: "STRING_VALUE",
68
- * // status: "STRING_VALUE",
68
+ * // status: "PolicyBreached" || "PolicyMet" || "NotApplicable" || "MissingPolicy",
69
69
  * // resiliencyScore: { // ResiliencyScore
70
70
  * // score: Number("double"), // required
71
71
  * // disruptionScore: { // DisruptionResiliencyScore // required
@@ -45,13 +45,13 @@ declare const ListAppComponentRecommendationsCommand_base: {
45
45
  * // componentRecommendations: [ // ComponentRecommendationList // required
46
46
  * // { // ComponentRecommendation
47
47
  * // appComponentName: "STRING_VALUE", // required
48
- * // recommendationStatus: "STRING_VALUE", // required
48
+ * // recommendationStatus: "BreachedUnattainable" || "BreachedCanMeet" || "MetCanImprove" || "MissingPolicy", // required
49
49
  * // configRecommendations: [ // ConfigRecommendationList // required
50
50
  * // { // ConfigRecommendation
51
51
  * // cost: { // Cost
52
52
  * // amount: Number("double"), // required
53
53
  * // currency: "STRING_VALUE", // required
54
- * // frequency: "STRING_VALUE", // required
54
+ * // frequency: "Hourly" || "Daily" || "Monthly" || "Yearly", // required
55
55
  * // },
56
56
  * // appComponentName: "STRING_VALUE",
57
57
  * // compliance: { // AssessmentCompliance
@@ -63,27 +63,27 @@ declare const ListAppComponentRecommendationsCommand_base: {
63
63
  * // currentRpoInSecs: Number("int"),
64
64
  * // rpoReferenceId: "STRING_VALUE",
65
65
  * // rpoDescription: "STRING_VALUE",
66
- * // complianceStatus: "STRING_VALUE", // required
66
+ * // complianceStatus: "PolicyBreached" || "PolicyMet" || "NotApplicable" || "MissingPolicy", // required
67
67
  * // achievableRpoInSecs: Number("int"),
68
68
  * // message: "STRING_VALUE",
69
69
  * // },
70
70
  * // },
71
71
  * // recommendationCompliance: { // RecommendationCompliance
72
72
  * // "<keys>": { // RecommendationDisruptionCompliance
73
- * // expectedComplianceStatus: "STRING_VALUE", // required
73
+ * // expectedComplianceStatus: "PolicyBreached" || "PolicyMet" || "NotApplicable" || "MissingPolicy", // required
74
74
  * // expectedRtoInSecs: Number("int"),
75
75
  * // expectedRtoDescription: "STRING_VALUE",
76
76
  * // expectedRpoInSecs: Number("int"),
77
77
  * // expectedRpoDescription: "STRING_VALUE",
78
78
  * // },
79
79
  * // },
80
- * // optimizationType: "STRING_VALUE", // required
80
+ * // optimizationType: "LeastCost" || "LeastChange" || "BestAZRecovery" || "LeastErrors" || "BestAttainable" || "BestRegionRecovery", // required
81
81
  * // name: "STRING_VALUE", // required
82
82
  * // description: "STRING_VALUE",
83
83
  * // suggestedChanges: [ // SuggestedChangesList
84
84
  * // "STRING_VALUE",
85
85
  * // ],
86
- * // haArchitecture: "STRING_VALUE",
86
+ * // haArchitecture: "MultiSite" || "WarmStandby" || "PilotLight" || "BackupAndRestore" || "NoRecoveryPlan",
87
87
  * // referenceId: "STRING_VALUE", // required
88
88
  * // },
89
89
  * // ],
@@ -48,7 +48,7 @@ declare const ListAppInputSourcesCommand_base: {
48
48
  * // appInputSources: [ // AppInputSourceList // required
49
49
  * // { // AppInputSource
50
50
  * // sourceName: "STRING_VALUE",
51
- * // importType: "STRING_VALUE", // required
51
+ * // importType: "CfnStack" || "Resource" || "AppRegistryApp" || "ResourceGroup" || "Terraform" || "EKS", // required
52
52
  * // sourceArn: "STRING_VALUE",
53
53
  * // terraformSource: { // TerraformSource
54
54
  * // s3StateFileUrl: "STRING_VALUE", // required
@@ -51,10 +51,10 @@ declare const ListAppVersionResourceMappingsCommand_base: {
51
51
  * // logicalStackName: "STRING_VALUE",
52
52
  * // appRegistryAppName: "STRING_VALUE",
53
53
  * // resourceGroupName: "STRING_VALUE",
54
- * // mappingType: "STRING_VALUE", // required
54
+ * // mappingType: "CfnStack" || "Resource" || "AppRegistryApp" || "ResourceGroup" || "Terraform" || "EKS", // required
55
55
  * // physicalResourceId: { // PhysicalResourceId
56
56
  * // identifier: "STRING_VALUE", // required
57
- * // type: "STRING_VALUE", // required
57
+ * // type: "Arn" || "Native", // required
58
58
  * // awsRegion: "STRING_VALUE",
59
59
  * // awsAccountId: "STRING_VALUE",
60
60
  * // },
@@ -56,7 +56,7 @@ declare const ListAppVersionResourcesCommand_base: {
56
56
  * // },
57
57
  * // physicalResourceId: { // PhysicalResourceId
58
58
  * // identifier: "STRING_VALUE", // required
59
- * // type: "STRING_VALUE", // required
59
+ * // type: "Arn" || "Native", // required
60
60
  * // awsRegion: "STRING_VALUE",
61
61
  * // awsAccountId: "STRING_VALUE",
62
62
  * // },
@@ -79,7 +79,7 @@ declare const ListAppVersionResourcesCommand_base: {
79
79
  * // ],
80
80
  * // },
81
81
  * // excluded: true || false,
82
- * // sourceType: "STRING_VALUE",
82
+ * // sourceType: "AppTemplate" || "Discovered",
83
83
  * // parentResourceName: "STRING_VALUE",
84
84
  * // },
85
85
  * // ],
@@ -51,6 +51,7 @@ declare const ListAppsCommand_base: {
51
51
  * fromLastAssessmentTime: new Date("TIMESTAMP"),
52
52
  * toLastAssessmentTime: new Date("TIMESTAMP"),
53
53
  * reverseOrder: true || false,
54
+ * awsApplicationArn: "STRING_VALUE",
54
55
  * };
55
56
  * const command = new ListAppsCommand(input);
56
57
  * const response = await client.send(command);
@@ -61,14 +62,15 @@ declare const ListAppsCommand_base: {
61
62
  * // name: "STRING_VALUE", // required
62
63
  * // description: "STRING_VALUE",
63
64
  * // creationTime: new Date("TIMESTAMP"), // required
64
- * // complianceStatus: "STRING_VALUE",
65
+ * // complianceStatus: "PolicyBreached" || "PolicyMet" || "NotAssessed" || "ChangesDetected" || "NotApplicable" || "MissingPolicy",
65
66
  * // resiliencyScore: Number("double"),
66
- * // assessmentSchedule: "STRING_VALUE",
67
- * // status: "STRING_VALUE",
68
- * // driftStatus: "STRING_VALUE",
67
+ * // assessmentSchedule: "Disabled" || "Daily",
68
+ * // status: "Active" || "Deleting",
69
+ * // driftStatus: "NotChecked" || "NotDetected" || "Detected",
69
70
  * // lastAppComplianceEvaluationTime: new Date("TIMESTAMP"),
70
71
  * // rtoInSecs: Number("int"),
71
72
  * // rpoInSecs: Number("int"),
73
+ * // awsApplicationArn: "STRING_VALUE",
72
74
  * // },
73
75
  * // ],
74
76
  * // nextToken: "STRING_VALUE",
@@ -38,7 +38,7 @@ declare const ListRecommendationTemplatesCommand_base: {
38
38
  * assessmentArn: "STRING_VALUE",
39
39
  * reverseOrder: true || false,
40
40
  * status: [ // RecommendationTemplateStatusList
41
- * "STRING_VALUE",
41
+ * "Pending" || "InProgress" || "Failed" || "Success",
42
42
  * ],
43
43
  * recommendationTemplateArn: "STRING_VALUE",
44
44
  * name: "STRING_VALUE",
@@ -61,12 +61,12 @@ declare const ListRecommendationTemplatesCommand_base: {
61
61
  * // "STRING_VALUE",
62
62
  * // ],
63
63
  * // recommendationTypes: [ // RenderRecommendationTypeList // required
64
- * // "STRING_VALUE",
64
+ * // "Alarm" || "Sop" || "Test",
65
65
  * // ],
66
- * // format: "STRING_VALUE", // required
66
+ * // format: "CfnYaml" || "CfnJson", // required
67
67
  * // recommendationTemplateArn: "STRING_VALUE", // required
68
68
  * // message: "STRING_VALUE",
69
- * // status: "STRING_VALUE", // required
69
+ * // status: "Pending" || "InProgress" || "Failed" || "Success", // required
70
70
  * // name: "STRING_VALUE", // required
71
71
  * // startTime: new Date("TIMESTAMP"),
72
72
  * // endTime: new Date("TIMESTAMP"),
@@ -47,9 +47,9 @@ declare const ListResiliencyPoliciesCommand_base: {
47
47
  * // policyArn: "STRING_VALUE",
48
48
  * // policyName: "STRING_VALUE",
49
49
  * // policyDescription: "STRING_VALUE",
50
- * // dataLocationConstraint: "STRING_VALUE",
51
- * // tier: "STRING_VALUE",
52
- * // estimatedCostTier: "STRING_VALUE",
50
+ * // dataLocationConstraint: "AnyLocation" || "SameContinent" || "SameCountry",
51
+ * // tier: "MissionCritical" || "Critical" || "Important" || "CoreServices" || "NonCritical" || "NotApplicable",
52
+ * // estimatedCostTier: "L1" || "L2" || "L3" || "L4",
53
53
  * // policy: { // DisruptionPolicy
54
54
  * // "<keys>": { // FailurePolicy
55
55
  * // rtoInSecs: Number("int"), // required
@@ -56,7 +56,7 @@ declare const ListResourceGroupingRecommendationsCommand_base: {
56
56
  * // resourceType: "STRING_VALUE", // required
57
57
  * // physicalResourceId: { // PhysicalResourceId
58
58
  * // identifier: "STRING_VALUE", // required
59
- * // type: "STRING_VALUE", // required
59
+ * // type: "Arn" || "Native", // required
60
60
  * // awsRegion: "STRING_VALUE",
61
61
  * // awsAccountId: "STRING_VALUE",
62
62
  * // },
@@ -76,10 +76,10 @@ declare const ListResourceGroupingRecommendationsCommand_base: {
76
76
  * // recommendationReasons: [ // required
77
77
  * // "STRING_VALUE",
78
78
  * // ],
79
- * // status: "STRING_VALUE", // required
80
- * // confidenceLevel: "STRING_VALUE", // required
79
+ * // status: "Accepted" || "Rejected" || "PendingDecision", // required
80
+ * // confidenceLevel: "High" || "Medium", // required
81
81
  * // creationTime: new Date("TIMESTAMP"), // required
82
- * // rejectionReason: "STRING_VALUE",
82
+ * // rejectionReason: "DistinctBusinessPurpose" || "SeparateDataConcern" || "DistinctUserGroupHandling" || "Other",
83
83
  * // },
84
84
  * // ],
85
85
  * // nextToken: "STRING_VALUE",
@@ -45,7 +45,7 @@ declare const ListSopRecommendationsCommand_base: {
45
45
  * // nextToken: "STRING_VALUE",
46
46
  * // sopRecommendations: [ // SopRecommendationList // required
47
47
  * // { // SopRecommendation
48
- * // serviceType: "STRING_VALUE", // required
48
+ * // serviceType: "SSM", // required
49
49
  * // appComponentName: "STRING_VALUE",
50
50
  * // description: "STRING_VALUE",
51
51
  * // recommendationId: "STRING_VALUE", // required
@@ -57,12 +57,12 @@ declare const ListSopRecommendationsCommand_base: {
57
57
  * // targetRegion: "STRING_VALUE",
58
58
  * // alreadyImplemented: true || false,
59
59
  * // excluded: true || false,
60
- * // excludeReason: "STRING_VALUE",
60
+ * // excludeReason: "AlreadyImplemented" || "NotRelevant" || "ComplexityOfImplementation",
61
61
  * // },
62
62
  * // ],
63
63
  * // referenceId: "STRING_VALUE", // required
64
64
  * // prerequisite: "STRING_VALUE",
65
- * // recommendationStatus: "STRING_VALUE",
65
+ * // recommendationStatus: "Implemented" || "Inactive" || "NotImplemented" || "Excluded",
66
66
  * // },
67
67
  * // ],
68
68
  * // };
@@ -47,9 +47,9 @@ declare const ListSuggestedResiliencyPoliciesCommand_base: {
47
47
  * // policyArn: "STRING_VALUE",
48
48
  * // policyName: "STRING_VALUE",
49
49
  * // policyDescription: "STRING_VALUE",
50
- * // dataLocationConstraint: "STRING_VALUE",
51
- * // tier: "STRING_VALUE",
52
- * // estimatedCostTier: "STRING_VALUE",
50
+ * // dataLocationConstraint: "AnyLocation" || "SameContinent" || "SameCountry",
51
+ * // tier: "MissionCritical" || "Critical" || "Important" || "CoreServices" || "NonCritical" || "NotApplicable",
52
+ * // estimatedCostTier: "L1" || "L2" || "L3" || "L4",
53
53
  * // policy: { // DisruptionPolicy
54
54
  * // "<keys>": { // FailurePolicy
55
55
  * // rtoInSecs: Number("int"), // required
@@ -50,8 +50,8 @@ declare const ListTestRecommendationsCommand_base: {
50
50
  * // appComponentName: "STRING_VALUE",
51
51
  * // name: "STRING_VALUE",
52
52
  * // intent: "STRING_VALUE",
53
- * // risk: "STRING_VALUE",
54
- * // type: "STRING_VALUE",
53
+ * // risk: "Small" || "Medium" || "High",
54
+ * // type: "Software" || "Hardware" || "AZ" || "Region",
55
55
  * // description: "STRING_VALUE",
56
56
  * // items: [ // RecommendationItemList
57
57
  * // { // RecommendationItem
@@ -60,14 +60,14 @@ declare const ListTestRecommendationsCommand_base: {
60
60
  * // targetRegion: "STRING_VALUE",
61
61
  * // alreadyImplemented: true || false,
62
62
  * // excluded: true || false,
63
- * // excludeReason: "STRING_VALUE",
63
+ * // excludeReason: "AlreadyImplemented" || "NotRelevant" || "ComplexityOfImplementation",
64
64
  * // },
65
65
  * // ],
66
66
  * // prerequisite: "STRING_VALUE",
67
67
  * // dependsOnAlarms: [ // AlarmReferenceIdList
68
68
  * // "STRING_VALUE",
69
69
  * // ],
70
- * // recommendationStatus: "STRING_VALUE",
70
+ * // recommendationStatus: "Implemented" || "Inactive" || "NotImplemented" || "Excluded",
71
71
  * // },
72
72
  * // ],
73
73
  * // };
@@ -57,7 +57,7 @@ declare const ListUnsupportedAppVersionResourcesCommand_base: {
57
57
  * // },
58
58
  * // physicalResourceId: { // PhysicalResourceId
59
59
  * // identifier: "STRING_VALUE", // required
60
- * // type: "STRING_VALUE", // required
60
+ * // type: "Arn" || "Native", // required
61
61
  * // awsRegion: "STRING_VALUE",
62
62
  * // awsAccountId: "STRING_VALUE",
63
63
  * // },
@@ -39,7 +39,7 @@ declare const RejectResourceGroupingRecommendationsCommand_base: {
39
39
  * entries: [ // RejectGroupingRecommendationEntries // required
40
40
  * { // RejectGroupingRecommendationEntry
41
41
  * groupingRecommendationId: "STRING_VALUE", // required
42
- * rejectionReason: "STRING_VALUE",
42
+ * rejectionReason: "DistinctBusinessPurpose" || "SeparateDataConcern" || "DistinctUserGroupHandling" || "Other",
43
43
  * },
44
44
  * ],
45
45
  * };
@@ -44,7 +44,7 @@ declare const ResolveAppVersionResourcesCommand_base: {
44
44
  * // appArn: "STRING_VALUE", // required
45
45
  * // appVersion: "STRING_VALUE", // required
46
46
  * // resolutionId: "STRING_VALUE", // required
47
- * // status: "STRING_VALUE", // required
47
+ * // status: "Pending" || "InProgress" || "Failed" || "Success", // required
48
48
  * // };
49
49
  *
50
50
  * ```
@@ -49,11 +49,11 @@ declare const StartAppAssessmentCommand_base: {
49
49
  * // assessment: { // AppAssessment
50
50
  * // appArn: "STRING_VALUE",
51
51
  * // appVersion: "STRING_VALUE",
52
- * // invoker: "STRING_VALUE", // required
52
+ * // invoker: "User" || "System", // required
53
53
  * // cost: { // Cost
54
54
  * // amount: Number("double"), // required
55
55
  * // currency: "STRING_VALUE", // required
56
- * // frequency: "STRING_VALUE", // required
56
+ * // frequency: "Hourly" || "Daily" || "Monthly" || "Yearly", // required
57
57
  * // },
58
58
  * // resiliencyScore: { // ResiliencyScore
59
59
  * // score: Number("double"), // required
@@ -78,13 +78,13 @@ declare const StartAppAssessmentCommand_base: {
78
78
  * // currentRpoInSecs: Number("int"),
79
79
  * // rpoReferenceId: "STRING_VALUE",
80
80
  * // rpoDescription: "STRING_VALUE",
81
- * // complianceStatus: "STRING_VALUE", // required
81
+ * // complianceStatus: "PolicyBreached" || "PolicyMet" || "NotApplicable" || "MissingPolicy", // required
82
82
  * // achievableRpoInSecs: Number("int"),
83
83
  * // message: "STRING_VALUE",
84
84
  * // },
85
85
  * // },
86
- * // complianceStatus: "STRING_VALUE",
87
- * // assessmentStatus: "STRING_VALUE", // required
86
+ * // complianceStatus: "PolicyBreached" || "PolicyMet" || "NotApplicable" || "MissingPolicy",
87
+ * // assessmentStatus: "Pending" || "InProgress" || "Failed" || "Success", // required
88
88
  * // startTime: new Date("TIMESTAMP"),
89
89
  * // endTime: new Date("TIMESTAMP"),
90
90
  * // message: "STRING_VALUE",
@@ -94,9 +94,9 @@ declare const StartAppAssessmentCommand_base: {
94
94
  * // policyArn: "STRING_VALUE",
95
95
  * // policyName: "STRING_VALUE",
96
96
  * // policyDescription: "STRING_VALUE",
97
- * // dataLocationConstraint: "STRING_VALUE",
98
- * // tier: "STRING_VALUE",
99
- * // estimatedCostTier: "STRING_VALUE",
97
+ * // dataLocationConstraint: "AnyLocation" || "SameContinent" || "SameCountry",
98
+ * // tier: "MissionCritical" || "Critical" || "Important" || "CoreServices" || "NonCritical" || "NotApplicable",
99
+ * // estimatedCostTier: "L1" || "L2" || "L3" || "L4",
100
100
  * // policy: { // DisruptionPolicy
101
101
  * // "<keys>": { // FailurePolicy
102
102
  * // rtoInSecs: Number("int"), // required
@@ -122,7 +122,7 @@ declare const StartAppAssessmentCommand_base: {
122
122
  * // hasMoreErrors: true || false,
123
123
  * // },
124
124
  * // versionName: "STRING_VALUE",
125
- * // driftStatus: "STRING_VALUE",
125
+ * // driftStatus: "NotChecked" || "NotDetected" || "Detected",
126
126
  * // summary: { // AssessmentSummary
127
127
  * // summary: "STRING_VALUE",
128
128
  * // riskRecommendations: [ // AssessmentRiskRecommendationList
@@ -42,7 +42,7 @@ declare const StartResourceGroupingRecommendationTaskCommand_base: {
42
42
  * // { // StartResourceGroupingRecommendationTaskResponse
43
43
  * // appArn: "STRING_VALUE", // required
44
44
  * // groupingId: "STRING_VALUE", // required
45
- * // status: "STRING_VALUE", // required
45
+ * // status: "Pending" || "InProgress" || "Failed" || "Success", // required
46
46
  * // errorMessage: "STRING_VALUE",
47
47
  * // };
48
48
  *
@@ -39,9 +39,9 @@ declare const UpdateAppCommand_base: {
39
39
  * description: "STRING_VALUE",
40
40
  * policyArn: "STRING_VALUE",
41
41
  * clearResiliencyPolicyArn: true || false,
42
- * assessmentSchedule: "STRING_VALUE",
42
+ * assessmentSchedule: "Disabled" || "Daily",
43
43
  * permissionModel: { // PermissionModel
44
- * type: "STRING_VALUE", // required
44
+ * type: "LegacyIAMUser" || "RoleBased", // required
45
45
  * invokerRoleName: "STRING_VALUE",
46
46
  * crossAccountRoleArns: [ // IamRoleArnList
47
47
  * "STRING_VALUE",
@@ -50,7 +50,7 @@ declare const UpdateAppCommand_base: {
50
50
  * eventSubscriptions: [ // EventSubscriptionList
51
51
  * { // EventSubscription
52
52
  * name: "STRING_VALUE", // required
53
- * eventType: "STRING_VALUE", // required
53
+ * eventType: "ScheduledAssessmentFailure" || "DriftDetected", // required
54
54
  * snsTopicArn: "STRING_VALUE",
55
55
  * },
56
56
  * ],
@@ -64,17 +64,17 @@ declare const UpdateAppCommand_base: {
64
64
  * // description: "STRING_VALUE",
65
65
  * // policyArn: "STRING_VALUE",
66
66
  * // creationTime: new Date("TIMESTAMP"), // required
67
- * // status: "STRING_VALUE",
68
- * // complianceStatus: "STRING_VALUE",
67
+ * // status: "Active" || "Deleting",
68
+ * // complianceStatus: "PolicyBreached" || "PolicyMet" || "NotAssessed" || "ChangesDetected" || "NotApplicable" || "MissingPolicy",
69
69
  * // lastAppComplianceEvaluationTime: new Date("TIMESTAMP"),
70
70
  * // resiliencyScore: Number("double"),
71
71
  * // lastResiliencyScoreEvaluationTime: new Date("TIMESTAMP"),
72
72
  * // tags: { // TagMap
73
73
  * // "<keys>": "STRING_VALUE",
74
74
  * // },
75
- * // assessmentSchedule: "STRING_VALUE",
75
+ * // assessmentSchedule: "Disabled" || "Daily",
76
76
  * // permissionModel: { // PermissionModel
77
- * // type: "STRING_VALUE", // required
77
+ * // type: "LegacyIAMUser" || "RoleBased", // required
78
78
  * // invokerRoleName: "STRING_VALUE",
79
79
  * // crossAccountRoleArns: [ // IamRoleArnList
80
80
  * // "STRING_VALUE",
@@ -83,14 +83,15 @@ declare const UpdateAppCommand_base: {
83
83
  * // eventSubscriptions: [ // EventSubscriptionList
84
84
  * // { // EventSubscription
85
85
  * // name: "STRING_VALUE", // required
86
- * // eventType: "STRING_VALUE", // required
86
+ * // eventType: "ScheduledAssessmentFailure" || "DriftDetected", // required
87
87
  * // snsTopicArn: "STRING_VALUE",
88
88
  * // },
89
89
  * // ],
90
- * // driftStatus: "STRING_VALUE",
90
+ * // driftStatus: "NotChecked" || "NotDetected" || "Detected",
91
91
  * // lastDriftEvaluationTime: new Date("TIMESTAMP"),
92
92
  * // rtoInSecs: Number("int"),
93
93
  * // rpoInSecs: Number("int"),
94
+ * // awsApplicationArn: "STRING_VALUE",
94
95
  * // },
95
96
  * // };
96
97
  *
@@ -90,7 +90,7 @@ declare const UpdateAppVersionResourceCommand_base: {
90
90
  * // },
91
91
  * // physicalResourceId: { // PhysicalResourceId
92
92
  * // identifier: "STRING_VALUE", // required
93
- * // type: "STRING_VALUE", // required
93
+ * // type: "Arn" || "Native", // required
94
94
  * // awsRegion: "STRING_VALUE",
95
95
  * // awsAccountId: "STRING_VALUE",
96
96
  * // },
@@ -113,7 +113,7 @@ declare const UpdateAppVersionResourceCommand_base: {
113
113
  * // ],
114
114
  * // },
115
115
  * // excluded: true || false,
116
- * // sourceType: "STRING_VALUE",
116
+ * // sourceType: "AppTemplate" || "Discovered",
117
117
  * // parentResourceName: "STRING_VALUE",
118
118
  * // },
119
119
  * // };
@@ -47,8 +47,8 @@ declare const UpdateResiliencyPolicyCommand_base: {
47
47
  * policyArn: "STRING_VALUE", // required
48
48
  * policyName: "STRING_VALUE",
49
49
  * policyDescription: "STRING_VALUE",
50
- * dataLocationConstraint: "STRING_VALUE",
51
- * tier: "STRING_VALUE",
50
+ * dataLocationConstraint: "AnyLocation" || "SameContinent" || "SameCountry",
51
+ * tier: "MissionCritical" || "Critical" || "Important" || "CoreServices" || "NonCritical" || "NotApplicable",
52
52
  * policy: { // DisruptionPolicy
53
53
  * "<keys>": { // FailurePolicy
54
54
  * rtoInSecs: Number("int"), // required
@@ -63,9 +63,9 @@ declare const UpdateResiliencyPolicyCommand_base: {
63
63
  * // policyArn: "STRING_VALUE",
64
64
  * // policyName: "STRING_VALUE",
65
65
  * // policyDescription: "STRING_VALUE",
66
- * // dataLocationConstraint: "STRING_VALUE",
67
- * // tier: "STRING_VALUE",
68
- * // estimatedCostTier: "STRING_VALUE",
66
+ * // dataLocationConstraint: "AnyLocation" || "SameContinent" || "SameCountry",
67
+ * // tier: "MissionCritical" || "Critical" || "Important" || "CoreServices" || "NonCritical" || "NotApplicable",
68
+ * // estimatedCostTier: "L1" || "L2" || "L3" || "L4",
69
69
  * // policy: { // DisruptionPolicy
70
70
  * // "<keys>": { // FailurePolicy
71
71
  * // rtoInSecs: Number("int"), // required