@aws-sdk/client-resiliencehub 3.300.0 → 3.301.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 (53) hide show
  1. package/dist-types/commands/AddDraftAppVersionResourceMappingsCommand.d.ts +4 -4
  2. package/dist-types/commands/CreateAppCommand.d.ts +2 -2
  3. package/dist-types/commands/CreateAppVersionAppComponentCommand.d.ts +3 -3
  4. package/dist-types/commands/CreateAppVersionResourceCommand.d.ts +5 -5
  5. package/dist-types/commands/CreateRecommendationTemplateCommand.d.ts +4 -4
  6. package/dist-types/commands/CreateResiliencyPolicyCommand.d.ts +4 -4
  7. package/dist-types/commands/DeleteAppAssessmentCommand.d.ts +1 -1
  8. package/dist-types/commands/DeleteAppCommand.d.ts +1 -1
  9. package/dist-types/commands/DeleteAppInputSourceCommand.d.ts +3 -3
  10. package/dist-types/commands/DeleteAppVersionAppComponentCommand.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/DeleteResiliencyPolicyCommand.d.ts +1 -1
  14. package/dist-types/commands/DescribeAppAssessmentCommand.d.ts +1 -1
  15. package/dist-types/commands/DescribeAppCommand.d.ts +1 -1
  16. package/dist-types/commands/DescribeAppVersionAppComponentCommand.d.ts +1 -1
  17. package/dist-types/commands/DescribeAppVersionCommand.d.ts +1 -1
  18. package/dist-types/commands/DescribeAppVersionResourceCommand.d.ts +2 -2
  19. package/dist-types/commands/DescribeAppVersionResourcesResolutionStatusCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeAppVersionTemplateCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeDraftAppVersionResourcesImportStatusCommand.d.ts +1 -1
  22. package/dist-types/commands/DescribeResiliencyPolicyCommand.d.ts +1 -1
  23. package/dist-types/commands/ImportResourcesToDraftAppVersionCommand.d.ts +7 -7
  24. package/dist-types/commands/ListAlarmRecommendationsCommand.d.ts +1 -1
  25. package/dist-types/commands/ListAppAssessmentsCommand.d.ts +2 -2
  26. package/dist-types/commands/ListAppComponentCompliancesCommand.d.ts +1 -1
  27. package/dist-types/commands/ListAppComponentRecommendationsCommand.d.ts +1 -1
  28. package/dist-types/commands/ListAppInputSourcesCommand.d.ts +1 -1
  29. package/dist-types/commands/ListAppVersionAppComponentsCommand.d.ts +1 -1
  30. package/dist-types/commands/ListAppVersionResourceMappingsCommand.d.ts +1 -1
  31. package/dist-types/commands/ListAppVersionResourcesCommand.d.ts +1 -1
  32. package/dist-types/commands/ListAppVersionsCommand.d.ts +1 -1
  33. package/dist-types/commands/ListAppsCommand.d.ts +1 -1
  34. package/dist-types/commands/ListRecommendationTemplatesCommand.d.ts +2 -2
  35. package/dist-types/commands/ListResiliencyPoliciesCommand.d.ts +1 -1
  36. package/dist-types/commands/ListSopRecommendationsCommand.d.ts +1 -1
  37. package/dist-types/commands/ListSuggestedResiliencyPoliciesCommand.d.ts +1 -1
  38. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  39. package/dist-types/commands/ListTestRecommendationsCommand.d.ts +1 -1
  40. package/dist-types/commands/ListUnsupportedAppVersionResourcesCommand.d.ts +1 -1
  41. package/dist-types/commands/PublishAppVersionCommand.d.ts +1 -1
  42. package/dist-types/commands/PutDraftAppVersionTemplateCommand.d.ts +1 -1
  43. package/dist-types/commands/RemoveDraftAppVersionResourceMappingsCommand.d.ts +3 -3
  44. package/dist-types/commands/ResolveAppVersionResourcesCommand.d.ts +1 -1
  45. package/dist-types/commands/StartAppAssessmentCommand.d.ts +2 -2
  46. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  47. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  48. package/dist-types/commands/UpdateAppCommand.d.ts +1 -1
  49. package/dist-types/commands/UpdateAppVersionAppComponentCommand.d.ts +3 -3
  50. package/dist-types/commands/UpdateAppVersionCommand.d.ts +3 -3
  51. package/dist-types/commands/UpdateAppVersionResourceCommand.d.ts +5 -5
  52. package/dist-types/commands/UpdateResiliencyPolicyCommand.d.ts +3 -3
  53. package/package.json +3 -3
@@ -26,16 +26,16 @@ export interface AddDraftAppVersionResourceMappingsCommandOutput extends AddDraf
26
26
  * import { ResiliencehubClient, AddDraftAppVersionResourceMappingsCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, AddDraftAppVersionResourceMappingsCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // AddDraftAppVersionResourceMappingsRequest
30
30
  * appArn: "STRING_VALUE", // required
31
- * resourceMappings: [ // required
32
- * {
31
+ * resourceMappings: [ // ResourceMappingList // required
32
+ * { // ResourceMapping
33
33
  * resourceName: "STRING_VALUE",
34
34
  * logicalStackName: "STRING_VALUE",
35
35
  * appRegistryAppName: "STRING_VALUE",
36
36
  * resourceGroupName: "STRING_VALUE",
37
37
  * mappingType: "STRING_VALUE", // required
38
- * physicalResourceId: {
38
+ * physicalResourceId: { // PhysicalResourceId
39
39
  * identifier: "STRING_VALUE", // required
40
40
  * type: "STRING_VALUE", // required
41
41
  * awsRegion: "STRING_VALUE",
@@ -34,11 +34,11 @@ export interface CreateAppCommandOutput extends CreateAppResponse, __MetadataBea
34
34
  * import { ResiliencehubClient, CreateAppCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
35
35
  * // const { ResiliencehubClient, CreateAppCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
36
36
  * const client = new ResiliencehubClient(config);
37
- * const input = {
37
+ * const input = { // CreateAppRequest
38
38
  * name: "STRING_VALUE", // required
39
39
  * description: "STRING_VALUE",
40
40
  * policyArn: "STRING_VALUE",
41
- * tags: {
41
+ * tags: { // TagMap
42
42
  * "<keys>": "STRING_VALUE",
43
43
  * },
44
44
  * clientToken: "STRING_VALUE",
@@ -29,13 +29,13 @@ export interface CreateAppVersionAppComponentCommandOutput extends CreateAppVers
29
29
  * import { ResiliencehubClient, CreateAppVersionAppComponentCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
30
30
  * // const { ResiliencehubClient, CreateAppVersionAppComponentCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
31
31
  * const client = new ResiliencehubClient(config);
32
- * const input = {
32
+ * const input = { // CreateAppVersionAppComponentRequest
33
33
  * appArn: "STRING_VALUE", // required
34
34
  * id: "STRING_VALUE",
35
35
  * name: "STRING_VALUE", // required
36
36
  * type: "STRING_VALUE", // required
37
- * additionalInfo: {
38
- * "<keys>": [
37
+ * additionalInfo: { // AdditionalInfoMap
38
+ * "<keys>": [ // AdditionalInfoValueList
39
39
  * "STRING_VALUE",
40
40
  * ],
41
41
  * },
@@ -44,10 +44,10 @@ export interface CreateAppVersionResourceCommandOutput extends CreateAppVersionR
44
44
  * import { ResiliencehubClient, CreateAppVersionResourceCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
45
45
  * // const { ResiliencehubClient, CreateAppVersionResourceCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
46
46
  * const client = new ResiliencehubClient(config);
47
- * const input = {
47
+ * const input = { // CreateAppVersionResourceRequest
48
48
  * appArn: "STRING_VALUE", // required
49
49
  * resourceName: "STRING_VALUE", // required
50
- * logicalResourceId: {
50
+ * logicalResourceId: { // LogicalResourceId
51
51
  * identifier: "STRING_VALUE", // required
52
52
  * logicalStackName: "STRING_VALUE",
53
53
  * resourceGroupName: "STRING_VALUE",
@@ -58,11 +58,11 @@ export interface CreateAppVersionResourceCommandOutput extends CreateAppVersionR
58
58
  * awsRegion: "STRING_VALUE",
59
59
  * awsAccountId: "STRING_VALUE",
60
60
  * resourceType: "STRING_VALUE", // required
61
- * appComponents: [ // required
61
+ * appComponents: [ // AppComponentNameList // required
62
62
  * "STRING_VALUE",
63
63
  * ],
64
- * additionalInfo: {
65
- * "<keys>": [
64
+ * additionalInfo: { // AdditionalInfoMap
65
+ * "<keys>": [ // AdditionalInfoValueList
66
66
  * "STRING_VALUE",
67
67
  * ],
68
68
  * },
@@ -26,18 +26,18 @@ export interface CreateRecommendationTemplateCommandOutput extends CreateRecomme
26
26
  * import { ResiliencehubClient, CreateRecommendationTemplateCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, CreateRecommendationTemplateCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
30
- * recommendationIds: [
29
+ * const input = { // CreateRecommendationTemplateRequest
30
+ * recommendationIds: [ // RecommendationIdList
31
31
  * "STRING_VALUE",
32
32
  * ],
33
33
  * format: "STRING_VALUE",
34
- * recommendationTypes: [
34
+ * recommendationTypes: [ // RenderRecommendationTypeList
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * assessmentArn: "STRING_VALUE", // required
38
38
  * name: "STRING_VALUE", // required
39
39
  * clientToken: "STRING_VALUE",
40
- * tags: {
40
+ * tags: { // TagMap
41
41
  * "<keys>": "STRING_VALUE",
42
42
  * },
43
43
  * bucketName: "STRING_VALUE",
@@ -26,19 +26,19 @@ export interface CreateResiliencyPolicyCommandOutput extends CreateResiliencyPol
26
26
  * import { ResiliencehubClient, CreateResiliencyPolicyCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, CreateResiliencyPolicyCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // CreateResiliencyPolicyRequest
30
30
  * policyName: "STRING_VALUE", // required
31
31
  * policyDescription: "STRING_VALUE",
32
32
  * dataLocationConstraint: "STRING_VALUE",
33
33
  * tier: "STRING_VALUE", // required
34
- * policy: { // required
35
- * "<keys>": {
34
+ * policy: { // DisruptionPolicy // required
35
+ * "<keys>": { // FailurePolicy
36
36
  * rtoInSecs: Number("int"), // required
37
37
  * rpoInSecs: Number("int"), // required
38
38
  * },
39
39
  * },
40
40
  * clientToken: "STRING_VALUE",
41
- * tags: {
41
+ * tags: { // TagMap
42
42
  * "<keys>": "STRING_VALUE",
43
43
  * },
44
44
  * };
@@ -27,7 +27,7 @@ export interface DeleteAppAssessmentCommandOutput extends DeleteAppAssessmentRes
27
27
  * import { ResiliencehubClient, DeleteAppAssessmentCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
28
28
  * // const { ResiliencehubClient, DeleteAppAssessmentCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
29
29
  * const client = new ResiliencehubClient(config);
30
- * const input = {
30
+ * const input = { // DeleteAppAssessmentRequest
31
31
  * assessmentArn: "STRING_VALUE", // required
32
32
  * clientToken: "STRING_VALUE",
33
33
  * };
@@ -27,7 +27,7 @@ export interface DeleteAppCommandOutput extends DeleteAppResponse, __MetadataBea
27
27
  * import { ResiliencehubClient, DeleteAppCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
28
28
  * // const { ResiliencehubClient, DeleteAppCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
29
29
  * const client = new ResiliencehubClient(config);
30
- * const input = {
30
+ * const input = { // DeleteAppRequest
31
31
  * appArn: "STRING_VALUE", // required
32
32
  * forceDelete: true || false,
33
33
  * clientToken: "STRING_VALUE",
@@ -26,14 +26,14 @@ export interface DeleteAppInputSourceCommandOutput extends DeleteAppInputSourceR
26
26
  * import { ResiliencehubClient, DeleteAppInputSourceCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, DeleteAppInputSourceCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // DeleteAppInputSourceRequest
30
30
  * appArn: "STRING_VALUE", // required
31
31
  * sourceArn: "STRING_VALUE",
32
- * terraformSource: {
32
+ * terraformSource: { // TerraformSource
33
33
  * s3StateFileUrl: "STRING_VALUE", // required
34
34
  * },
35
35
  * clientToken: "STRING_VALUE",
36
- * eksSourceClusterNamespace: {
36
+ * eksSourceClusterNamespace: { // EksSourceClusterNamespace
37
37
  * eksClusterArn: "STRING_VALUE", // required
38
38
  * namespace: "STRING_VALUE", // required
39
39
  * },
@@ -36,7 +36,7 @@ export interface DeleteAppVersionAppComponentCommandOutput extends DeleteAppVers
36
36
  * import { ResiliencehubClient, DeleteAppVersionAppComponentCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
37
37
  * // const { ResiliencehubClient, DeleteAppVersionAppComponentCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
38
38
  * const client = new ResiliencehubClient(config);
39
- * const input = {
39
+ * const input = { // DeleteAppVersionAppComponentRequest
40
40
  * appArn: "STRING_VALUE", // required
41
41
  * id: "STRING_VALUE", // required
42
42
  * clientToken: "STRING_VALUE",
@@ -39,10 +39,10 @@ export interface DeleteAppVersionResourceCommandOutput extends DeleteAppVersionR
39
39
  * import { ResiliencehubClient, DeleteAppVersionResourceCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
40
40
  * // const { ResiliencehubClient, DeleteAppVersionResourceCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
41
41
  * const client = new ResiliencehubClient(config);
42
- * const input = {
42
+ * const input = { // DeleteAppVersionResourceRequest
43
43
  * appArn: "STRING_VALUE", // required
44
44
  * resourceName: "STRING_VALUE",
45
- * logicalResourceId: {
45
+ * logicalResourceId: { // LogicalResourceId
46
46
  * identifier: "STRING_VALUE", // required
47
47
  * logicalStackName: "STRING_VALUE",
48
48
  * resourceGroupName: "STRING_VALUE",
@@ -27,7 +27,7 @@ export interface DeleteRecommendationTemplateCommandOutput extends DeleteRecomme
27
27
  * import { ResiliencehubClient, DeleteRecommendationTemplateCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
28
28
  * // const { ResiliencehubClient, DeleteRecommendationTemplateCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
29
29
  * const client = new ResiliencehubClient(config);
30
- * const input = {
30
+ * const input = { // DeleteRecommendationTemplateRequest
31
31
  * recommendationTemplateArn: "STRING_VALUE", // required
32
32
  * clientToken: "STRING_VALUE",
33
33
  * };
@@ -26,7 +26,7 @@ export interface DeleteResiliencyPolicyCommandOutput extends DeleteResiliencyPol
26
26
  * import { ResiliencehubClient, DeleteResiliencyPolicyCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, DeleteResiliencyPolicyCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // DeleteResiliencyPolicyRequest
30
30
  * policyArn: "STRING_VALUE", // required
31
31
  * clientToken: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface DescribeAppAssessmentCommandOutput extends DescribeAppAssessmen
26
26
  * import { ResiliencehubClient, DescribeAppAssessmentCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, DescribeAppAssessmentCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // DescribeAppAssessmentRequest
30
30
  * assessmentArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeAppAssessmentCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeAppCommandOutput extends DescribeAppResponse, __Metadat
26
26
  * import { ResiliencehubClient, DescribeAppCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, DescribeAppCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // DescribeAppRequest
30
30
  * appArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeAppCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeAppVersionAppComponentCommandOutput extends DescribeApp
26
26
  * import { ResiliencehubClient, DescribeAppVersionAppComponentCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, DescribeAppVersionAppComponentCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // DescribeAppVersionAppComponentRequest
30
30
  * appArn: "STRING_VALUE", // required
31
31
  * appVersion: "STRING_VALUE", // required
32
32
  * id: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DescribeAppVersionCommandOutput extends DescribeAppVersionRespo
26
26
  * import { ResiliencehubClient, DescribeAppVersionCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, DescribeAppVersionCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // DescribeAppVersionRequest
30
30
  * appArn: "STRING_VALUE", // required
31
31
  * appVersion: "STRING_VALUE", // required
32
32
  * };
@@ -46,11 +46,11 @@ export interface DescribeAppVersionResourceCommandOutput extends DescribeAppVers
46
46
  * import { ResiliencehubClient, DescribeAppVersionResourceCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
47
47
  * // const { ResiliencehubClient, DescribeAppVersionResourceCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
48
48
  * const client = new ResiliencehubClient(config);
49
- * const input = {
49
+ * const input = { // DescribeAppVersionResourceRequest
50
50
  * appArn: "STRING_VALUE", // required
51
51
  * appVersion: "STRING_VALUE", // required
52
52
  * resourceName: "STRING_VALUE",
53
- * logicalResourceId: {
53
+ * logicalResourceId: { // LogicalResourceId
54
54
  * identifier: "STRING_VALUE", // required
55
55
  * logicalStackName: "STRING_VALUE",
56
56
  * resourceGroupName: "STRING_VALUE",
@@ -28,7 +28,7 @@ export interface DescribeAppVersionResourcesResolutionStatusCommandOutput extend
28
28
  * import { ResiliencehubClient, DescribeAppVersionResourcesResolutionStatusCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
29
29
  * // const { ResiliencehubClient, DescribeAppVersionResourcesResolutionStatusCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
30
30
  * const client = new ResiliencehubClient(config);
31
- * const input = {
31
+ * const input = { // DescribeAppVersionResourcesResolutionStatusRequest
32
32
  * appArn: "STRING_VALUE", // required
33
33
  * appVersion: "STRING_VALUE", // required
34
34
  * resolutionId: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface DescribeAppVersionTemplateCommandOutput extends DescribeAppVers
26
26
  * import { ResiliencehubClient, DescribeAppVersionTemplateCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, DescribeAppVersionTemplateCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // DescribeAppVersionTemplateRequest
30
30
  * appArn: "STRING_VALUE", // required
31
31
  * appVersion: "STRING_VALUE", // required
32
32
  * };
@@ -33,7 +33,7 @@ export interface DescribeDraftAppVersionResourcesImportStatusCommandOutput exten
33
33
  * import { ResiliencehubClient, DescribeDraftAppVersionResourcesImportStatusCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
34
34
  * // const { ResiliencehubClient, DescribeDraftAppVersionResourcesImportStatusCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
35
35
  * const client = new ResiliencehubClient(config);
36
- * const input = {
36
+ * const input = { // DescribeDraftAppVersionResourcesImportStatusRequest
37
37
  * appArn: "STRING_VALUE", // required
38
38
  * };
39
39
  * const command = new DescribeDraftAppVersionResourcesImportStatusCommand(input);
@@ -28,7 +28,7 @@ export interface DescribeResiliencyPolicyCommandOutput extends DescribeResilienc
28
28
  * import { ResiliencehubClient, DescribeResiliencyPolicyCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
29
29
  * // const { ResiliencehubClient, DescribeResiliencyPolicyCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
30
30
  * const client = new ResiliencehubClient(config);
31
- * const input = {
31
+ * const input = { // DescribeResiliencyPolicyRequest
32
32
  * policyArn: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new DescribeResiliencyPolicyCommand(input);
@@ -27,21 +27,21 @@ export interface ImportResourcesToDraftAppVersionCommandOutput extends ImportRes
27
27
  * import { ResiliencehubClient, ImportResourcesToDraftAppVersionCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
28
28
  * // const { ResiliencehubClient, ImportResourcesToDraftAppVersionCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
29
29
  * const client = new ResiliencehubClient(config);
30
- * const input = {
30
+ * const input = { // ImportResourcesToDraftAppVersionRequest
31
31
  * appArn: "STRING_VALUE", // required
32
- * sourceArns: [
32
+ * sourceArns: [ // ArnList
33
33
  * "STRING_VALUE",
34
34
  * ],
35
- * terraformSources: [
36
- * {
35
+ * terraformSources: [ // TerraformSourceList
36
+ * { // TerraformSource
37
37
  * s3StateFileUrl: "STRING_VALUE", // required
38
38
  * },
39
39
  * ],
40
40
  * importStrategy: "STRING_VALUE",
41
- * eksSources: [
42
- * {
41
+ * eksSources: [ // EksSourceList
42
+ * { // EksSource
43
43
  * eksClusterArn: "STRING_VALUE", // required
44
- * namespaces: [ // required
44
+ * namespaces: [ // EksNamespaceList // required
45
45
  * "STRING_VALUE",
46
46
  * ],
47
47
  * },
@@ -26,7 +26,7 @@ export interface ListAlarmRecommendationsCommandOutput extends ListAlarmRecommen
26
26
  * import { ResiliencehubClient, ListAlarmRecommendationsCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, ListAlarmRecommendationsCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // ListAlarmRecommendationsRequest
30
30
  * assessmentArn: "STRING_VALUE", // required
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
@@ -27,10 +27,10 @@ export interface ListAppAssessmentsCommandOutput extends ListAppAssessmentsRespo
27
27
  * import { ResiliencehubClient, ListAppAssessmentsCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
28
28
  * // const { ResiliencehubClient, ListAppAssessmentsCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
29
29
  * const client = new ResiliencehubClient(config);
30
- * const input = {
30
+ * const input = { // ListAppAssessmentsRequest
31
31
  * appArn: "STRING_VALUE",
32
32
  * assessmentName: "STRING_VALUE",
33
- * assessmentStatus: [
33
+ * assessmentStatus: [ // AssessmentStatusList
34
34
  * "STRING_VALUE",
35
35
  * ],
36
36
  * complianceStatus: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListAppComponentCompliancesCommandOutput extends ListAppCompone
26
26
  * import { ResiliencehubClient, ListAppComponentCompliancesCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, ListAppComponentCompliancesCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // ListAppComponentCompliancesRequest
30
30
  * nextToken: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * assessmentArn: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface ListAppComponentRecommendationsCommandOutput extends ListAppCom
26
26
  * import { ResiliencehubClient, ListAppComponentRecommendationsCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, ListAppComponentRecommendationsCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // ListAppComponentRecommendationsRequest
30
30
  * assessmentArn: "STRING_VALUE", // required
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
@@ -28,7 +28,7 @@ export interface ListAppInputSourcesCommandOutput extends ListAppInputSourcesRes
28
28
  * import { ResiliencehubClient, ListAppInputSourcesCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
29
29
  * // const { ResiliencehubClient, ListAppInputSourcesCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
30
30
  * const client = new ResiliencehubClient(config);
31
- * const input = {
31
+ * const input = { // ListAppInputSourcesRequest
32
32
  * appArn: "STRING_VALUE", // required
33
33
  * appVersion: "STRING_VALUE", // required
34
34
  * nextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListAppVersionAppComponentsCommandOutput extends ListAppVersion
26
26
  * import { ResiliencehubClient, ListAppVersionAppComponentsCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, ListAppVersionAppComponentsCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // ListAppVersionAppComponentsRequest
30
30
  * appArn: "STRING_VALUE", // required
31
31
  * appVersion: "STRING_VALUE", // required
32
32
  * nextToken: "STRING_VALUE",
@@ -28,7 +28,7 @@ export interface ListAppVersionResourceMappingsCommandOutput extends ListAppVers
28
28
  * import { ResiliencehubClient, ListAppVersionResourceMappingsCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
29
29
  * // const { ResiliencehubClient, ListAppVersionResourceMappingsCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
30
30
  * const client = new ResiliencehubClient(config);
31
- * const input = {
31
+ * const input = { // ListAppVersionResourceMappingsRequest
32
32
  * appArn: "STRING_VALUE", // required
33
33
  * appVersion: "STRING_VALUE", // required
34
34
  * nextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListAppVersionResourcesCommandOutput extends ListAppVersionReso
26
26
  * import { ResiliencehubClient, ListAppVersionResourcesCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, ListAppVersionResourcesCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // ListAppVersionResourcesRequest
30
30
  * appArn: "STRING_VALUE", // required
31
31
  * appVersion: "STRING_VALUE", // required
32
32
  * resolutionId: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListAppVersionsCommandOutput extends ListAppVersionsResponse, _
26
26
  * import { ResiliencehubClient, ListAppVersionsCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, ListAppVersionsCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // ListAppVersionsRequest
30
30
  * appArn: "STRING_VALUE", // required
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
@@ -35,7 +35,7 @@ export interface ListAppsCommandOutput extends ListAppsResponse, __MetadataBeare
35
35
  * import { ResiliencehubClient, ListAppsCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
36
36
  * // const { ResiliencehubClient, ListAppsCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
37
37
  * const client = new ResiliencehubClient(config);
38
- * const input = {
38
+ * const input = { // ListAppsRequest
39
39
  * nextToken: "STRING_VALUE",
40
40
  * maxResults: Number("int"),
41
41
  * name: "STRING_VALUE",
@@ -26,10 +26,10 @@ export interface ListRecommendationTemplatesCommandOutput extends ListRecommenda
26
26
  * import { ResiliencehubClient, ListRecommendationTemplatesCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, ListRecommendationTemplatesCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // ListRecommendationTemplatesRequest
30
30
  * assessmentArn: "STRING_VALUE", // required
31
31
  * reverseOrder: true || false,
32
- * status: [
32
+ * status: [ // RecommendationTemplateStatusList
33
33
  * "STRING_VALUE",
34
34
  * ],
35
35
  * recommendationTemplateArn: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListResiliencyPoliciesCommandOutput extends ListResiliencyPolic
26
26
  * import { ResiliencehubClient, ListResiliencyPoliciesCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, ListResiliencyPoliciesCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // ListResiliencyPoliciesRequest
30
30
  * policyName: "STRING_VALUE",
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
@@ -27,7 +27,7 @@ export interface ListSopRecommendationsCommandOutput extends ListSopRecommendati
27
27
  * import { ResiliencehubClient, ListSopRecommendationsCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
28
28
  * // const { ResiliencehubClient, ListSopRecommendationsCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
29
29
  * const client = new ResiliencehubClient(config);
30
- * const input = {
30
+ * const input = { // ListSopRecommendationsRequest
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
33
33
  * assessmentArn: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface ListSuggestedResiliencyPoliciesCommandOutput extends ListSugges
26
26
  * import { ResiliencehubClient, ListSuggestedResiliencyPoliciesCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, ListSuggestedResiliencyPoliciesCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // ListSuggestedResiliencyPoliciesRequest
30
30
  * nextToken: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * };
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { ResiliencehubClient, ListTagsForResourceCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, ListTagsForResourceCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -26,7 +26,7 @@ export interface ListTestRecommendationsCommandOutput extends ListTestRecommenda
26
26
  * import { ResiliencehubClient, ListTestRecommendationsCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, ListTestRecommendationsCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // ListTestRecommendationsRequest
30
30
  * nextToken: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * assessmentArn: "STRING_VALUE", // required
@@ -28,7 +28,7 @@ export interface ListUnsupportedAppVersionResourcesCommandOutput extends ListUns
28
28
  * import { ResiliencehubClient, ListUnsupportedAppVersionResourcesCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
29
29
  * // const { ResiliencehubClient, ListUnsupportedAppVersionResourcesCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
30
30
  * const client = new ResiliencehubClient(config);
31
- * const input = {
31
+ * const input = { // ListUnsupportedAppVersionResourcesRequest
32
32
  * appArn: "STRING_VALUE", // required
33
33
  * appVersion: "STRING_VALUE", // required
34
34
  * resolutionId: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface PublishAppVersionCommandOutput extends PublishAppVersionRespons
26
26
  * import { ResiliencehubClient, PublishAppVersionCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, PublishAppVersionCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // PublishAppVersionRequest
30
30
  * appArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new PublishAppVersionCommand(input);
@@ -26,7 +26,7 @@ export interface PutDraftAppVersionTemplateCommandOutput extends PutDraftAppVers
26
26
  * import { ResiliencehubClient, PutDraftAppVersionTemplateCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, PutDraftAppVersionTemplateCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // PutDraftAppVersionTemplateRequest
30
30
  * appArn: "STRING_VALUE", // required
31
31
  * appTemplateBody: "STRING_VALUE", // required
32
32
  * };
@@ -26,12 +26,12 @@ export interface RemoveDraftAppVersionResourceMappingsCommandOutput extends Remo
26
26
  * import { ResiliencehubClient, RemoveDraftAppVersionResourceMappingsCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, RemoveDraftAppVersionResourceMappingsCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // RemoveDraftAppVersionResourceMappingsRequest
30
30
  * appArn: "STRING_VALUE", // required
31
- * resourceNames: [
31
+ * resourceNames: [ // EntityNameList
32
32
  * "STRING_VALUE",
33
33
  * ],
34
- * logicalStackNames: [
34
+ * logicalStackNames: [ // String255List
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * appRegistryAppNames: [
@@ -26,7 +26,7 @@ export interface ResolveAppVersionResourcesCommandOutput extends ResolveAppVersi
26
26
  * import { ResiliencehubClient, ResolveAppVersionResourcesCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, ResolveAppVersionResourcesCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // ResolveAppVersionResourcesRequest
30
30
  * appArn: "STRING_VALUE", // required
31
31
  * appVersion: "STRING_VALUE", // required
32
32
  * };
@@ -26,12 +26,12 @@ export interface StartAppAssessmentCommandOutput extends StartAppAssessmentRespo
26
26
  * import { ResiliencehubClient, StartAppAssessmentCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, StartAppAssessmentCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // StartAppAssessmentRequest
30
30
  * appArn: "STRING_VALUE", // required
31
31
  * appVersion: "STRING_VALUE", // required
32
32
  * assessmentName: "STRING_VALUE", // required
33
33
  * clientToken: "STRING_VALUE",
34
- * tags: {
34
+ * tags: { // TagMap
35
35
  * "<keys>": "STRING_VALUE",
36
36
  * },
37
37
  * };
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { ResiliencehubClient, TagResourceCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, TagResourceCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // TagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tags: { // required
31
+ * tags: { // TagMap // required
32
32
  * "<keys>": "STRING_VALUE",
33
33
  * },
34
34
  * };
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { ResiliencehubClient, UntagResourceCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, UntagResourceCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tagKeys: [ // required
31
+ * tagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -26,7 +26,7 @@ export interface UpdateAppCommandOutput extends UpdateAppResponse, __MetadataBea
26
26
  * import { ResiliencehubClient, UpdateAppCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, UpdateAppCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // UpdateAppRequest
30
30
  * appArn: "STRING_VALUE", // required
31
31
  * description: "STRING_VALUE",
32
32
  * policyArn: "STRING_VALUE",
@@ -29,13 +29,13 @@ export interface UpdateAppVersionAppComponentCommandOutput extends UpdateAppVers
29
29
  * import { ResiliencehubClient, UpdateAppVersionAppComponentCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
30
30
  * // const { ResiliencehubClient, UpdateAppVersionAppComponentCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
31
31
  * const client = new ResiliencehubClient(config);
32
- * const input = {
32
+ * const input = { // UpdateAppVersionAppComponentRequest
33
33
  * appArn: "STRING_VALUE", // required
34
34
  * id: "STRING_VALUE", // required
35
35
  * name: "STRING_VALUE",
36
36
  * type: "STRING_VALUE",
37
- * additionalInfo: {
38
- * "<keys>": [
37
+ * additionalInfo: { // AdditionalInfoMap
38
+ * "<keys>": [ // AdditionalInfoValueList
39
39
  * "STRING_VALUE",
40
40
  * ],
41
41
  * },
@@ -31,10 +31,10 @@ export interface UpdateAppVersionCommandOutput extends UpdateAppVersionResponse,
31
31
  * import { ResiliencehubClient, UpdateAppVersionCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
32
32
  * // const { ResiliencehubClient, UpdateAppVersionCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
33
33
  * const client = new ResiliencehubClient(config);
34
- * const input = {
34
+ * const input = { // UpdateAppVersionRequest
35
35
  * appArn: "STRING_VALUE", // required
36
- * additionalInfo: {
37
- * "<keys>": [
36
+ * additionalInfo: { // AdditionalInfoMap
37
+ * "<keys>": [ // AdditionalInfoValueList
38
38
  * "STRING_VALUE",
39
39
  * ],
40
40
  * },
@@ -40,10 +40,10 @@ export interface UpdateAppVersionResourceCommandOutput extends UpdateAppVersionR
40
40
  * import { ResiliencehubClient, UpdateAppVersionResourceCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
41
41
  * // const { ResiliencehubClient, UpdateAppVersionResourceCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
42
42
  * const client = new ResiliencehubClient(config);
43
- * const input = {
43
+ * const input = { // UpdateAppVersionResourceRequest
44
44
  * appArn: "STRING_VALUE", // required
45
45
  * resourceName: "STRING_VALUE",
46
- * logicalResourceId: {
46
+ * logicalResourceId: { // LogicalResourceId
47
47
  * identifier: "STRING_VALUE", // required
48
48
  * logicalStackName: "STRING_VALUE",
49
49
  * resourceGroupName: "STRING_VALUE",
@@ -54,11 +54,11 @@ export interface UpdateAppVersionResourceCommandOutput extends UpdateAppVersionR
54
54
  * awsRegion: "STRING_VALUE",
55
55
  * awsAccountId: "STRING_VALUE",
56
56
  * resourceType: "STRING_VALUE",
57
- * appComponents: [
57
+ * appComponents: [ // AppComponentNameList
58
58
  * "STRING_VALUE",
59
59
  * ],
60
- * additionalInfo: {
61
- * "<keys>": [
60
+ * additionalInfo: { // AdditionalInfoMap
61
+ * "<keys>": [ // AdditionalInfoValueList
62
62
  * "STRING_VALUE",
63
63
  * ],
64
64
  * },
@@ -26,14 +26,14 @@ export interface UpdateResiliencyPolicyCommandOutput extends UpdateResiliencyPol
26
26
  * import { ResiliencehubClient, UpdateResiliencyPolicyCommand } from "@aws-sdk/client-resiliencehub"; // ES Modules import
27
27
  * // const { ResiliencehubClient, UpdateResiliencyPolicyCommand } = require("@aws-sdk/client-resiliencehub"); // CommonJS import
28
28
  * const client = new ResiliencehubClient(config);
29
- * const input = {
29
+ * const input = { // UpdateResiliencyPolicyRequest
30
30
  * policyArn: "STRING_VALUE", // required
31
31
  * policyName: "STRING_VALUE",
32
32
  * policyDescription: "STRING_VALUE",
33
33
  * dataLocationConstraint: "STRING_VALUE",
34
34
  * tier: "STRING_VALUE",
35
- * policy: {
36
- * "<keys>": {
35
+ * policy: { // DisruptionPolicy
36
+ * "<keys>": { // FailurePolicy
37
37
  * rtoInSecs: Number("int"), // required
38
38
  * rpoInSecs: Number("int"), // required
39
39
  * },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-resiliencehub",
3
3
  "description": "AWS SDK for JavaScript Resiliencehub Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",