@aws-sdk/client-resiliencehub 3.288.0 → 3.290.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/dist-types/commands/AddDraftAppVersionResourceMappingsCommand.d.ts +25 -0
- package/dist-types/commands/CreateAppCommand.d.ts +29 -0
- package/dist-types/commands/CreateAppVersionAppComponentCommand.d.ts +29 -0
- package/dist-types/commands/CreateAppVersionResourceCommand.d.ts +29 -0
- package/dist-types/commands/CreateRecommendationTemplateCommand.d.ts +29 -0
- package/dist-types/commands/CreateResiliencyPolicyCommand.d.ts +26 -0
- package/dist-types/commands/DeleteAppAssessmentCommand.d.ts +25 -0
- package/dist-types/commands/DeleteAppCommand.d.ts +20 -0
- package/dist-types/commands/DeleteAppInputSourceCommand.d.ts +25 -0
- package/dist-types/commands/DeleteAppVersionAppComponentCommand.d.ts +25 -0
- package/dist-types/commands/DeleteAppVersionResourceCommand.d.ts +25 -0
- package/dist-types/commands/DeleteRecommendationTemplateCommand.d.ts +19 -0
- package/dist-types/commands/DeleteResiliencyPolicyCommand.d.ts +25 -0
- package/dist-types/commands/DescribeAppAssessmentCommand.d.ts +19 -0
- package/dist-types/commands/DescribeAppCommand.d.ts +19 -0
- package/dist-types/commands/DescribeAppVersionAppComponentCommand.d.ts +25 -0
- package/dist-types/commands/DescribeAppVersionCommand.d.ts +19 -0
- package/dist-types/commands/DescribeAppVersionResourceCommand.d.ts +25 -0
- package/dist-types/commands/DescribeAppVersionResourcesResolutionStatusCommand.d.ts +19 -0
- package/dist-types/commands/DescribeAppVersionTemplateCommand.d.ts +19 -0
- package/dist-types/commands/DescribeDraftAppVersionResourcesImportStatusCommand.d.ts +19 -0
- package/dist-types/commands/DescribeResiliencyPolicyCommand.d.ts +19 -0
- package/dist-types/commands/ImportResourcesToDraftAppVersionCommand.d.ts +25 -0
- package/dist-types/commands/ListAlarmRecommendationsCommand.d.ts +19 -0
- package/dist-types/commands/ListAppAssessmentsCommand.d.ts +19 -0
- package/dist-types/commands/ListAppComponentCompliancesCommand.d.ts +19 -0
- package/dist-types/commands/ListAppComponentRecommendationsCommand.d.ts +19 -0
- package/dist-types/commands/ListAppInputSourcesCommand.d.ts +19 -0
- package/dist-types/commands/ListAppVersionAppComponentsCommand.d.ts +25 -0
- package/dist-types/commands/ListAppVersionResourceMappingsCommand.d.ts +19 -0
- package/dist-types/commands/ListAppVersionResourcesCommand.d.ts +25 -0
- package/dist-types/commands/ListAppVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListAppsCommand.d.ts +16 -0
- package/dist-types/commands/ListRecommendationTemplatesCommand.d.ts +16 -0
- package/dist-types/commands/ListResiliencyPoliciesCommand.d.ts +19 -0
- package/dist-types/commands/ListSopRecommendationsCommand.d.ts +25 -0
- package/dist-types/commands/ListSuggestedResiliencyPoliciesCommand.d.ts +19 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +19 -0
- package/dist-types/commands/ListTestRecommendationsCommand.d.ts +25 -0
- package/dist-types/commands/ListUnsupportedAppVersionResourcesCommand.d.ts +25 -0
- package/dist-types/commands/PublishAppVersionCommand.d.ts +25 -0
- package/dist-types/commands/PutDraftAppVersionTemplateCommand.d.ts +25 -0
- package/dist-types/commands/RemoveDraftAppVersionResourceMappingsCommand.d.ts +25 -0
- package/dist-types/commands/ResolveAppVersionResourcesCommand.d.ts +25 -0
- package/dist-types/commands/StartAppAssessmentCommand.d.ts +29 -0
- package/dist-types/commands/TagResourceCommand.d.ts +19 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +19 -0
- package/dist-types/commands/UpdateAppCommand.d.ts +25 -0
- package/dist-types/commands/UpdateAppVersionAppComponentCommand.d.ts +25 -0
- package/dist-types/commands/UpdateAppVersionCommand.d.ts +25 -0
- package/dist-types/commands/UpdateAppVersionResourceCommand.d.ts +29 -0
- package/dist-types/commands/UpdateResiliencyPolicyCommand.d.ts +25 -0
- package/package.json +29 -29
|
@@ -29,6 +29,31 @@ export interface AddDraftAppVersionResourceMappingsCommandOutput extends AddDraf
|
|
|
29
29
|
* @see {@link AddDraftAppVersionResourceMappingsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
34
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
35
|
+
* required permissions.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ConflictException} (client fault)
|
|
38
|
+
* <p>This exception occurs when a conflict with a previous successful write is detected. This generally occurs
|
|
39
|
+
* when the previous write did not have time to propagate to the host serving the current
|
|
40
|
+
* request. A retry (with appropriate backoff logic) is the recommended response to this
|
|
41
|
+
* exception.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalServerException} (server fault)
|
|
44
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
45
|
+
* service.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
32
57
|
*/
|
|
33
58
|
export declare class AddDraftAppVersionResourceMappingsCommand extends $Command<AddDraftAppVersionResourceMappingsCommandInput, AddDraftAppVersionResourceMappingsCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
34
59
|
readonly input: AddDraftAppVersionResourceMappingsCommandInput;
|
|
@@ -37,6 +37,35 @@ export interface CreateAppCommandOutput extends CreateAppResponse, __MetadataBea
|
|
|
37
37
|
* @see {@link CreateAppCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
41
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
42
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
43
|
+
* required permissions.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ConflictException} (client fault)
|
|
46
|
+
* <p>This exception occurs when a conflict with a previous successful write is detected. This generally occurs
|
|
47
|
+
* when the previous write did not have time to propagate to the host serving the current
|
|
48
|
+
* request. A retry (with appropriate backoff logic) is the recommended response to this
|
|
49
|
+
* exception.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InternalServerException} (server fault)
|
|
52
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
53
|
+
* service.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
56
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
59
|
+
* <p>This exception occurs when you have exceeded your service quota. To perform the requested action, remove some of the
|
|
60
|
+
* relevant resources, or use Service Quotas to request a service quota increase.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
63
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ValidationException} (client fault)
|
|
66
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
67
|
+
*
|
|
68
|
+
*
|
|
40
69
|
*/
|
|
41
70
|
export declare class CreateAppCommand extends $Command<CreateAppCommandInput, CreateAppCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
42
71
|
readonly input: CreateAppCommandInput;
|
|
@@ -32,6 +32,35 @@ export interface CreateAppVersionAppComponentCommandOutput extends CreateAppVers
|
|
|
32
32
|
* @see {@link CreateAppVersionAppComponentCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
37
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
38
|
+
* required permissions.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ConflictException} (client fault)
|
|
41
|
+
* <p>This exception occurs when a conflict with a previous successful write is detected. This generally occurs
|
|
42
|
+
* when the previous write did not have time to propagate to the host serving the current
|
|
43
|
+
* request. A retry (with appropriate backoff logic) is the recommended response to this
|
|
44
|
+
* exception.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InternalServerException} (server fault)
|
|
47
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
48
|
+
* service.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
54
|
+
* <p>This exception occurs when you have exceeded your service quota. To perform the requested action, remove some of the
|
|
55
|
+
* relevant resources, or use Service Quotas to request a service quota increase.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
58
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ValidationException} (client fault)
|
|
61
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
62
|
+
*
|
|
63
|
+
*
|
|
35
64
|
*/
|
|
36
65
|
export declare class CreateAppVersionAppComponentCommand extends $Command<CreateAppVersionAppComponentCommandInput, CreateAppVersionAppComponentCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
37
66
|
readonly input: CreateAppVersionAppComponentCommandInput;
|
|
@@ -47,6 +47,35 @@ export interface CreateAppVersionResourceCommandOutput extends CreateAppVersionR
|
|
|
47
47
|
* @see {@link CreateAppVersionResourceCommandOutput} for command's `response` shape.
|
|
48
48
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
49
49
|
*
|
|
50
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
51
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
52
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
53
|
+
* required permissions.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ConflictException} (client fault)
|
|
56
|
+
* <p>This exception occurs when a conflict with a previous successful write is detected. This generally occurs
|
|
57
|
+
* when the previous write did not have time to propagate to the host serving the current
|
|
58
|
+
* request. A retry (with appropriate backoff logic) is the recommended response to this
|
|
59
|
+
* exception.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link InternalServerException} (server fault)
|
|
62
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
63
|
+
* service.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
66
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
69
|
+
* <p>This exception occurs when you have exceeded your service quota. To perform the requested action, remove some of the
|
|
70
|
+
* relevant resources, or use Service Quotas to request a service quota increase.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
73
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ValidationException} (client fault)
|
|
76
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
77
|
+
*
|
|
78
|
+
*
|
|
50
79
|
*/
|
|
51
80
|
export declare class CreateAppVersionResourceCommand extends $Command<CreateAppVersionResourceCommandInput, CreateAppVersionResourceCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
52
81
|
readonly input: CreateAppVersionResourceCommandInput;
|
|
@@ -29,6 +29,35 @@ export interface CreateRecommendationTemplateCommandOutput extends CreateRecomme
|
|
|
29
29
|
* @see {@link CreateRecommendationTemplateCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
34
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
35
|
+
* required permissions.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ConflictException} (client fault)
|
|
38
|
+
* <p>This exception occurs when a conflict with a previous successful write is detected. This generally occurs
|
|
39
|
+
* when the previous write did not have time to propagate to the host serving the current
|
|
40
|
+
* request. A retry (with appropriate backoff logic) is the recommended response to this
|
|
41
|
+
* exception.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalServerException} (server fault)
|
|
44
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
45
|
+
* service.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
51
|
+
* <p>This exception occurs when you have exceeded your service quota. To perform the requested action, remove some of the
|
|
52
|
+
* relevant resources, or use Service Quotas to request a service quota increase.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
55
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ValidationException} (client fault)
|
|
58
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
32
61
|
*/
|
|
33
62
|
export declare class CreateRecommendationTemplateCommand extends $Command<CreateRecommendationTemplateCommandInput, CreateRecommendationTemplateCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
34
63
|
readonly input: CreateRecommendationTemplateCommandInput;
|
|
@@ -29,6 +29,32 @@ export interface CreateResiliencyPolicyCommandOutput extends CreateResiliencyPol
|
|
|
29
29
|
* @see {@link CreateResiliencyPolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
34
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
35
|
+
* required permissions.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ConflictException} (client fault)
|
|
38
|
+
* <p>This exception occurs when a conflict with a previous successful write is detected. This generally occurs
|
|
39
|
+
* when the previous write did not have time to propagate to the host serving the current
|
|
40
|
+
* request. A retry (with appropriate backoff logic) is the recommended response to this
|
|
41
|
+
* exception.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalServerException} (server fault)
|
|
44
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
45
|
+
* service.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
48
|
+
* <p>This exception occurs when you have exceeded your service quota. To perform the requested action, remove some of the
|
|
49
|
+
* relevant resources, or use Service Quotas to request a service quota increase.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
52
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
32
58
|
*/
|
|
33
59
|
export declare class CreateResiliencyPolicyCommand extends $Command<CreateResiliencyPolicyCommandInput, CreateResiliencyPolicyCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
34
60
|
readonly input: CreateResiliencyPolicyCommandInput;
|
|
@@ -30,6 +30,31 @@ export interface DeleteAppAssessmentCommandOutput extends DeleteAppAssessmentRes
|
|
|
30
30
|
* @see {@link DeleteAppAssessmentCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
35
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
36
|
+
* required permissions.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ConflictException} (client fault)
|
|
39
|
+
* <p>This exception occurs when a conflict with a previous successful write is detected. This generally occurs
|
|
40
|
+
* when the previous write did not have time to propagate to the host serving the current
|
|
41
|
+
* request. A retry (with appropriate backoff logic) is the recommended response to this
|
|
42
|
+
* exception.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalServerException} (server fault)
|
|
45
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
46
|
+
* service.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
52
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
33
58
|
*/
|
|
34
59
|
export declare class DeleteAppAssessmentCommand extends $Command<DeleteAppAssessmentCommandInput, DeleteAppAssessmentCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
35
60
|
readonly input: DeleteAppAssessmentCommandInput;
|
|
@@ -30,6 +30,26 @@ export interface DeleteAppCommandOutput extends DeleteAppResponse, __MetadataBea
|
|
|
30
30
|
* @see {@link DeleteAppCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ConflictException} (client fault)
|
|
34
|
+
* <p>This exception occurs when a conflict with a previous successful write is detected. This generally occurs
|
|
35
|
+
* when the previous write did not have time to propagate to the host serving the current
|
|
36
|
+
* request. A retry (with appropriate backoff logic) is the recommended response to this
|
|
37
|
+
* exception.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
41
|
+
* service.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
44
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ValidationException} (client fault)
|
|
50
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
33
53
|
*/
|
|
34
54
|
export declare class DeleteAppCommand extends $Command<DeleteAppCommandInput, DeleteAppCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
35
55
|
readonly input: DeleteAppCommandInput;
|
|
@@ -29,6 +29,31 @@ export interface DeleteAppInputSourceCommandOutput extends DeleteAppInputSourceR
|
|
|
29
29
|
* @see {@link DeleteAppInputSourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
34
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
35
|
+
* required permissions.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ConflictException} (client fault)
|
|
38
|
+
* <p>This exception occurs when a conflict with a previous successful write is detected. This generally occurs
|
|
39
|
+
* when the previous write did not have time to propagate to the host serving the current
|
|
40
|
+
* request. A retry (with appropriate backoff logic) is the recommended response to this
|
|
41
|
+
* exception.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalServerException} (server fault)
|
|
44
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
45
|
+
* service.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
32
57
|
*/
|
|
33
58
|
export declare class DeleteAppInputSourceCommand extends $Command<DeleteAppInputSourceCommandInput, DeleteAppInputSourceCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
34
59
|
readonly input: DeleteAppInputSourceCommandInput;
|
|
@@ -39,6 +39,31 @@ export interface DeleteAppVersionAppComponentCommandOutput extends DeleteAppVers
|
|
|
39
39
|
* @see {@link DeleteAppVersionAppComponentCommandOutput} for command's `response` shape.
|
|
40
40
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
41
41
|
*
|
|
42
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
43
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
44
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
45
|
+
* required permissions.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ConflictException} (client fault)
|
|
48
|
+
* <p>This exception occurs when a conflict with a previous successful write is detected. This generally occurs
|
|
49
|
+
* when the previous write did not have time to propagate to the host serving the current
|
|
50
|
+
* request. A retry (with appropriate backoff logic) is the recommended response to this
|
|
51
|
+
* exception.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link InternalServerException} (server fault)
|
|
54
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
55
|
+
* service.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
58
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
61
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ValidationException} (client fault)
|
|
64
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
65
|
+
*
|
|
66
|
+
*
|
|
42
67
|
*/
|
|
43
68
|
export declare class DeleteAppVersionAppComponentCommand extends $Command<DeleteAppVersionAppComponentCommandInput, DeleteAppVersionAppComponentCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
44
69
|
readonly input: DeleteAppVersionAppComponentCommandInput;
|
|
@@ -42,6 +42,31 @@ export interface DeleteAppVersionResourceCommandOutput extends DeleteAppVersionR
|
|
|
42
42
|
* @see {@link DeleteAppVersionResourceCommandOutput} for command's `response` shape.
|
|
43
43
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
44
44
|
*
|
|
45
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
46
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
47
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
48
|
+
* required permissions.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ConflictException} (client fault)
|
|
51
|
+
* <p>This exception occurs when a conflict with a previous successful write is detected. This generally occurs
|
|
52
|
+
* when the previous write did not have time to propagate to the host serving the current
|
|
53
|
+
* request. A retry (with appropriate backoff logic) is the recommended response to this
|
|
54
|
+
* exception.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link InternalServerException} (server fault)
|
|
57
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
58
|
+
* service.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
61
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
64
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ValidationException} (client fault)
|
|
67
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
68
|
+
*
|
|
69
|
+
*
|
|
45
70
|
*/
|
|
46
71
|
export declare class DeleteAppVersionResourceCommand extends $Command<DeleteAppVersionResourceCommandInput, DeleteAppVersionResourceCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
47
72
|
readonly input: DeleteAppVersionResourceCommandInput;
|
|
@@ -30,6 +30,25 @@ export interface DeleteRecommendationTemplateCommandOutput extends DeleteRecomme
|
|
|
30
30
|
* @see {@link DeleteRecommendationTemplateCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
35
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
36
|
+
* required permissions.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
40
|
+
* service.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
46
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ValidationException} (client fault)
|
|
49
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
33
52
|
*/
|
|
34
53
|
export declare class DeleteRecommendationTemplateCommand extends $Command<DeleteRecommendationTemplateCommandInput, DeleteRecommendationTemplateCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
35
54
|
readonly input: DeleteRecommendationTemplateCommandInput;
|
|
@@ -29,6 +29,31 @@ export interface DeleteResiliencyPolicyCommandOutput extends DeleteResiliencyPol
|
|
|
29
29
|
* @see {@link DeleteResiliencyPolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
34
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
35
|
+
* required permissions.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ConflictException} (client fault)
|
|
38
|
+
* <p>This exception occurs when a conflict with a previous successful write is detected. This generally occurs
|
|
39
|
+
* when the previous write did not have time to propagate to the host serving the current
|
|
40
|
+
* request. A retry (with appropriate backoff logic) is the recommended response to this
|
|
41
|
+
* exception.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalServerException} (server fault)
|
|
44
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
45
|
+
* service.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
32
57
|
*/
|
|
33
58
|
export declare class DeleteResiliencyPolicyCommand extends $Command<DeleteResiliencyPolicyCommandInput, DeleteResiliencyPolicyCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
34
59
|
readonly input: DeleteResiliencyPolicyCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface DescribeAppAssessmentCommandOutput extends DescribeAppAssessmen
|
|
|
29
29
|
* @see {@link DescribeAppAssessmentCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
34
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
35
|
+
* required permissions.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
39
|
+
* service.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class DescribeAppAssessmentCommand extends $Command<DescribeAppAssessmentCommandInput, DescribeAppAssessmentCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
34
53
|
readonly input: DescribeAppAssessmentCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface DescribeAppCommandOutput extends DescribeAppResponse, __Metadat
|
|
|
29
29
|
* @see {@link DescribeAppCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
34
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
35
|
+
* required permissions.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
39
|
+
* service.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class DescribeAppCommand extends $Command<DescribeAppCommandInput, DescribeAppCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
34
53
|
readonly input: DescribeAppCommandInput;
|
|
@@ -29,6 +29,31 @@ export interface DescribeAppVersionAppComponentCommandOutput extends DescribeApp
|
|
|
29
29
|
* @see {@link DescribeAppVersionAppComponentCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
34
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
35
|
+
* required permissions.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ConflictException} (client fault)
|
|
38
|
+
* <p>This exception occurs when a conflict with a previous successful write is detected. This generally occurs
|
|
39
|
+
* when the previous write did not have time to propagate to the host serving the current
|
|
40
|
+
* request. A retry (with appropriate backoff logic) is the recommended response to this
|
|
41
|
+
* exception.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalServerException} (server fault)
|
|
44
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
45
|
+
* service.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
32
57
|
*/
|
|
33
58
|
export declare class DescribeAppVersionAppComponentCommand extends $Command<DescribeAppVersionAppComponentCommandInput, DescribeAppVersionAppComponentCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
34
59
|
readonly input: DescribeAppVersionAppComponentCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface DescribeAppVersionCommandOutput extends DescribeAppVersionRespo
|
|
|
29
29
|
* @see {@link DescribeAppVersionCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
34
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
35
|
+
* required permissions.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
39
|
+
* service.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class DescribeAppVersionCommand extends $Command<DescribeAppVersionCommandInput, DescribeAppVersionCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
34
53
|
readonly input: DescribeAppVersionCommandInput;
|
|
@@ -49,6 +49,31 @@ export interface DescribeAppVersionResourceCommandOutput extends DescribeAppVers
|
|
|
49
49
|
* @see {@link DescribeAppVersionResourceCommandOutput} for command's `response` shape.
|
|
50
50
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
51
51
|
*
|
|
52
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
53
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
54
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
55
|
+
* required permissions.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ConflictException} (client fault)
|
|
58
|
+
* <p>This exception occurs when a conflict with a previous successful write is detected. This generally occurs
|
|
59
|
+
* when the previous write did not have time to propagate to the host serving the current
|
|
60
|
+
* request. A retry (with appropriate backoff logic) is the recommended response to this
|
|
61
|
+
* exception.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InternalServerException} (server fault)
|
|
64
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
65
|
+
* service.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
68
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
71
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ValidationException} (client fault)
|
|
74
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
75
|
+
*
|
|
76
|
+
*
|
|
52
77
|
*/
|
|
53
78
|
export declare class DescribeAppVersionResourceCommand extends $Command<DescribeAppVersionResourceCommandInput, DescribeAppVersionResourceCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
54
79
|
readonly input: DescribeAppVersionResourceCommandInput;
|
|
@@ -31,6 +31,25 @@ export interface DescribeAppVersionResourcesResolutionStatusCommandOutput extend
|
|
|
31
31
|
* @see {@link DescribeAppVersionResourcesResolutionStatusCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
36
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
37
|
+
* required permissions.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
41
|
+
* service.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
44
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ValidationException} (client fault)
|
|
50
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
34
53
|
*/
|
|
35
54
|
export declare class DescribeAppVersionResourcesResolutionStatusCommand extends $Command<DescribeAppVersionResourcesResolutionStatusCommandInput, DescribeAppVersionResourcesResolutionStatusCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
36
55
|
readonly input: DescribeAppVersionResourcesResolutionStatusCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface DescribeAppVersionTemplateCommandOutput extends DescribeAppVers
|
|
|
29
29
|
* @see {@link DescribeAppVersionTemplateCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ResiliencehubClientResolvedConfig | config} for ResiliencehubClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
34
|
+
* making the request must have at least one IAM permissions policy attached that grants the
|
|
35
|
+
* required permissions.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p>This exception occurs when there is an internal failure in the AWS Resilience Hub
|
|
39
|
+
* service.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>This exception occurs when a request is not valid.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class DescribeAppVersionTemplateCommand extends $Command<DescribeAppVersionTemplateCommandInput, DescribeAppVersionTemplateCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
34
53
|
readonly input: DescribeAppVersionTemplateCommandInput;
|