@aws-sdk/client-route53-recovery-readiness 3.296.0 → 3.297.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 (48) hide show
  1. package/dist-types/Route53RecoveryReadiness.d.ts +33 -0
  2. package/dist-types/Route53RecoveryReadinessClient.d.ts +24 -4
  3. package/dist-types/commands/CreateCellCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateCrossAccountAuthorizationCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateReadinessCheckCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateRecoveryGroupCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateResourceSetCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteCellCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteCrossAccountAuthorizationCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteReadinessCheckCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteRecoveryGroupCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteResourceSetCommand.d.ts +16 -0
  13. package/dist-types/commands/GetArchitectureRecommendationsCommand.d.ts +16 -0
  14. package/dist-types/commands/GetCellCommand.d.ts +16 -0
  15. package/dist-types/commands/GetCellReadinessSummaryCommand.d.ts +16 -0
  16. package/dist-types/commands/GetReadinessCheckCommand.d.ts +16 -0
  17. package/dist-types/commands/GetReadinessCheckResourceStatusCommand.d.ts +16 -0
  18. package/dist-types/commands/GetReadinessCheckStatusCommand.d.ts +16 -0
  19. package/dist-types/commands/GetRecoveryGroupCommand.d.ts +16 -0
  20. package/dist-types/commands/GetRecoveryGroupReadinessSummaryCommand.d.ts +16 -0
  21. package/dist-types/commands/GetResourceSetCommand.d.ts +16 -0
  22. package/dist-types/commands/ListCellsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListCrossAccountAuthorizationsCommand.d.ts +16 -0
  24. package/dist-types/commands/ListReadinessChecksCommand.d.ts +16 -0
  25. package/dist-types/commands/ListRecoveryGroupsCommand.d.ts +16 -0
  26. package/dist-types/commands/ListResourceSetsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListRulesCommand.d.ts +16 -0
  28. package/dist-types/commands/ListTagsForResourcesCommand.d.ts +16 -0
  29. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  30. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  31. package/dist-types/commands/UpdateCellCommand.d.ts +16 -0
  32. package/dist-types/commands/UpdateReadinessCheckCommand.d.ts +16 -0
  33. package/dist-types/commands/UpdateRecoveryGroupCommand.d.ts +16 -0
  34. package/dist-types/commands/UpdateResourceSetCommand.d.ts +16 -0
  35. package/dist-types/models/Route53RecoveryReadinessServiceException.d.ts +2 -0
  36. package/dist-types/models/models_0.d.ts +195 -0
  37. package/dist-types/pagination/GetCellReadinessSummaryPaginator.d.ts +3 -0
  38. package/dist-types/pagination/GetReadinessCheckResourceStatusPaginator.d.ts +3 -0
  39. package/dist-types/pagination/GetReadinessCheckStatusPaginator.d.ts +3 -0
  40. package/dist-types/pagination/GetRecoveryGroupReadinessSummaryPaginator.d.ts +3 -0
  41. package/dist-types/pagination/Interfaces.d.ts +3 -0
  42. package/dist-types/pagination/ListCellsPaginator.d.ts +3 -0
  43. package/dist-types/pagination/ListCrossAccountAuthorizationsPaginator.d.ts +3 -0
  44. package/dist-types/pagination/ListReadinessChecksPaginator.d.ts +3 -0
  45. package/dist-types/pagination/ListRecoveryGroupsPaginator.d.ts +3 -0
  46. package/dist-types/pagination/ListResourceSetsPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListRulesPaginator.d.ts +3 -0
  48. package/package.json +3 -3
@@ -33,196 +33,229 @@ import { UpdateRecoveryGroupCommandInput, UpdateRecoveryGroupCommandOutput } fro
33
33
  import { UpdateResourceSetCommandInput, UpdateResourceSetCommandOutput } from "./commands/UpdateResourceSetCommand";
34
34
  import { Route53RecoveryReadinessClient } from "./Route53RecoveryReadinessClient";
35
35
  /**
36
+ * @public
36
37
  * <p>Recovery readiness</p>
37
38
  */
38
39
  export declare class Route53RecoveryReadiness extends Route53RecoveryReadinessClient {
39
40
  /**
41
+ * @public
40
42
  * <p>Creates a cell in an account.</p>
41
43
  */
42
44
  createCell(args: CreateCellCommandInput, options?: __HttpHandlerOptions): Promise<CreateCellCommandOutput>;
43
45
  createCell(args: CreateCellCommandInput, cb: (err: any, data?: CreateCellCommandOutput) => void): void;
44
46
  createCell(args: CreateCellCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCellCommandOutput) => void): void;
45
47
  /**
48
+ * @public
46
49
  * <p>Creates a cross-account readiness authorization. This lets you authorize another account to work with Route 53 Application Recovery Controller, for example, to check the readiness status of resources in a separate account.</p>
47
50
  */
48
51
  createCrossAccountAuthorization(args: CreateCrossAccountAuthorizationCommandInput, options?: __HttpHandlerOptions): Promise<CreateCrossAccountAuthorizationCommandOutput>;
49
52
  createCrossAccountAuthorization(args: CreateCrossAccountAuthorizationCommandInput, cb: (err: any, data?: CreateCrossAccountAuthorizationCommandOutput) => void): void;
50
53
  createCrossAccountAuthorization(args: CreateCrossAccountAuthorizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCrossAccountAuthorizationCommandOutput) => void): void;
51
54
  /**
55
+ * @public
52
56
  * <p>Creates a readiness check in an account. A readiness check monitors a resource set in your application, such as a set of Amazon Aurora instances, that Application Recovery Controller is auditing recovery readiness for. The audits run once every minute on every resource that's associated with a readiness check.</p>
53
57
  */
54
58
  createReadinessCheck(args: CreateReadinessCheckCommandInput, options?: __HttpHandlerOptions): Promise<CreateReadinessCheckCommandOutput>;
55
59
  createReadinessCheck(args: CreateReadinessCheckCommandInput, cb: (err: any, data?: CreateReadinessCheckCommandOutput) => void): void;
56
60
  createReadinessCheck(args: CreateReadinessCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReadinessCheckCommandOutput) => void): void;
57
61
  /**
62
+ * @public
58
63
  * <p>Creates a recovery group in an account. A recovery group corresponds to an application and includes a list of the cells that make up the application.</p>
59
64
  */
60
65
  createRecoveryGroup(args: CreateRecoveryGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateRecoveryGroupCommandOutput>;
61
66
  createRecoveryGroup(args: CreateRecoveryGroupCommandInput, cb: (err: any, data?: CreateRecoveryGroupCommandOutput) => void): void;
62
67
  createRecoveryGroup(args: CreateRecoveryGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRecoveryGroupCommandOutput) => void): void;
63
68
  /**
69
+ * @public
64
70
  * <p>Creates a resource set. A resource set is a set of resources of one type that span multiple cells. You can associate a resource set with a readiness check to monitor the resources for failover readiness.</p>
65
71
  */
66
72
  createResourceSet(args: CreateResourceSetCommandInput, options?: __HttpHandlerOptions): Promise<CreateResourceSetCommandOutput>;
67
73
  createResourceSet(args: CreateResourceSetCommandInput, cb: (err: any, data?: CreateResourceSetCommandOutput) => void): void;
68
74
  createResourceSet(args: CreateResourceSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateResourceSetCommandOutput) => void): void;
69
75
  /**
76
+ * @public
70
77
  * <p>Delete a cell. When successful, the response code is 204, with no response body.</p>
71
78
  */
72
79
  deleteCell(args: DeleteCellCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCellCommandOutput>;
73
80
  deleteCell(args: DeleteCellCommandInput, cb: (err: any, data?: DeleteCellCommandOutput) => void): void;
74
81
  deleteCell(args: DeleteCellCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCellCommandOutput) => void): void;
75
82
  /**
83
+ * @public
76
84
  * <p>Deletes cross account readiness authorization.</p>
77
85
  */
78
86
  deleteCrossAccountAuthorization(args: DeleteCrossAccountAuthorizationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCrossAccountAuthorizationCommandOutput>;
79
87
  deleteCrossAccountAuthorization(args: DeleteCrossAccountAuthorizationCommandInput, cb: (err: any, data?: DeleteCrossAccountAuthorizationCommandOutput) => void): void;
80
88
  deleteCrossAccountAuthorization(args: DeleteCrossAccountAuthorizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCrossAccountAuthorizationCommandOutput) => void): void;
81
89
  /**
90
+ * @public
82
91
  * <p>Deletes a readiness check.</p>
83
92
  */
84
93
  deleteReadinessCheck(args: DeleteReadinessCheckCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReadinessCheckCommandOutput>;
85
94
  deleteReadinessCheck(args: DeleteReadinessCheckCommandInput, cb: (err: any, data?: DeleteReadinessCheckCommandOutput) => void): void;
86
95
  deleteReadinessCheck(args: DeleteReadinessCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReadinessCheckCommandOutput) => void): void;
87
96
  /**
97
+ * @public
88
98
  * <p>Deletes a recovery group.</p>
89
99
  */
90
100
  deleteRecoveryGroup(args: DeleteRecoveryGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRecoveryGroupCommandOutput>;
91
101
  deleteRecoveryGroup(args: DeleteRecoveryGroupCommandInput, cb: (err: any, data?: DeleteRecoveryGroupCommandOutput) => void): void;
92
102
  deleteRecoveryGroup(args: DeleteRecoveryGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRecoveryGroupCommandOutput) => void): void;
93
103
  /**
104
+ * @public
94
105
  * <p>Deletes a resource set.</p>
95
106
  */
96
107
  deleteResourceSet(args: DeleteResourceSetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourceSetCommandOutput>;
97
108
  deleteResourceSet(args: DeleteResourceSetCommandInput, cb: (err: any, data?: DeleteResourceSetCommandOutput) => void): void;
98
109
  deleteResourceSet(args: DeleteResourceSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourceSetCommandOutput) => void): void;
99
110
  /**
111
+ * @public
100
112
  * <p>Gets recommendations about architecture designs for improving resiliency for an application, based on a recovery group.</p>
101
113
  */
102
114
  getArchitectureRecommendations(args: GetArchitectureRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<GetArchitectureRecommendationsCommandOutput>;
103
115
  getArchitectureRecommendations(args: GetArchitectureRecommendationsCommandInput, cb: (err: any, data?: GetArchitectureRecommendationsCommandOutput) => void): void;
104
116
  getArchitectureRecommendations(args: GetArchitectureRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetArchitectureRecommendationsCommandOutput) => void): void;
105
117
  /**
118
+ * @public
106
119
  * <p>Gets information about a cell including cell name, cell Amazon Resource Name (ARN), ARNs of nested cells for this cell, and a list of those cell ARNs with their associated recovery group ARNs.</p>
107
120
  */
108
121
  getCell(args: GetCellCommandInput, options?: __HttpHandlerOptions): Promise<GetCellCommandOutput>;
109
122
  getCell(args: GetCellCommandInput, cb: (err: any, data?: GetCellCommandOutput) => void): void;
110
123
  getCell(args: GetCellCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCellCommandOutput) => void): void;
111
124
  /**
125
+ * @public
112
126
  * <p>Gets readiness for a cell. Aggregates the readiness of all the resources that are associated with the cell into a single value.</p>
113
127
  */
114
128
  getCellReadinessSummary(args: GetCellReadinessSummaryCommandInput, options?: __HttpHandlerOptions): Promise<GetCellReadinessSummaryCommandOutput>;
115
129
  getCellReadinessSummary(args: GetCellReadinessSummaryCommandInput, cb: (err: any, data?: GetCellReadinessSummaryCommandOutput) => void): void;
116
130
  getCellReadinessSummary(args: GetCellReadinessSummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCellReadinessSummaryCommandOutput) => void): void;
117
131
  /**
132
+ * @public
118
133
  * <p>Gets details about a readiness check.</p>
119
134
  */
120
135
  getReadinessCheck(args: GetReadinessCheckCommandInput, options?: __HttpHandlerOptions): Promise<GetReadinessCheckCommandOutput>;
121
136
  getReadinessCheck(args: GetReadinessCheckCommandInput, cb: (err: any, data?: GetReadinessCheckCommandOutput) => void): void;
122
137
  getReadinessCheck(args: GetReadinessCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReadinessCheckCommandOutput) => void): void;
123
138
  /**
139
+ * @public
124
140
  * <p>Gets individual readiness status for a readiness check. To see the overall readiness status for a recovery group, that considers the readiness status for all the readiness checks in the recovery group, use GetRecoveryGroupReadinessSummary.</p>
125
141
  */
126
142
  getReadinessCheckResourceStatus(args: GetReadinessCheckResourceStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetReadinessCheckResourceStatusCommandOutput>;
127
143
  getReadinessCheckResourceStatus(args: GetReadinessCheckResourceStatusCommandInput, cb: (err: any, data?: GetReadinessCheckResourceStatusCommandOutput) => void): void;
128
144
  getReadinessCheckResourceStatus(args: GetReadinessCheckResourceStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReadinessCheckResourceStatusCommandOutput) => void): void;
129
145
  /**
146
+ * @public
130
147
  * <p>Gets the readiness status for an individual readiness check. To see the overall readiness status for a recovery group, that considers the readiness status for all the readiness checks in a recovery group, use GetRecoveryGroupReadinessSummary.</p>
131
148
  */
132
149
  getReadinessCheckStatus(args: GetReadinessCheckStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetReadinessCheckStatusCommandOutput>;
133
150
  getReadinessCheckStatus(args: GetReadinessCheckStatusCommandInput, cb: (err: any, data?: GetReadinessCheckStatusCommandOutput) => void): void;
134
151
  getReadinessCheckStatus(args: GetReadinessCheckStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReadinessCheckStatusCommandOutput) => void): void;
135
152
  /**
153
+ * @public
136
154
  * <p>Gets details about a recovery group, including a list of the cells that are included in it.</p>
137
155
  */
138
156
  getRecoveryGroup(args: GetRecoveryGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetRecoveryGroupCommandOutput>;
139
157
  getRecoveryGroup(args: GetRecoveryGroupCommandInput, cb: (err: any, data?: GetRecoveryGroupCommandOutput) => void): void;
140
158
  getRecoveryGroup(args: GetRecoveryGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecoveryGroupCommandOutput) => void): void;
141
159
  /**
160
+ * @public
142
161
  * <p>Displays a summary of information about a recovery group's readiness status. Includes the readiness checks for resources in the recovery group and the readiness status of each one.</p>
143
162
  */
144
163
  getRecoveryGroupReadinessSummary(args: GetRecoveryGroupReadinessSummaryCommandInput, options?: __HttpHandlerOptions): Promise<GetRecoveryGroupReadinessSummaryCommandOutput>;
145
164
  getRecoveryGroupReadinessSummary(args: GetRecoveryGroupReadinessSummaryCommandInput, cb: (err: any, data?: GetRecoveryGroupReadinessSummaryCommandOutput) => void): void;
146
165
  getRecoveryGroupReadinessSummary(args: GetRecoveryGroupReadinessSummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecoveryGroupReadinessSummaryCommandOutput) => void): void;
147
166
  /**
167
+ * @public
148
168
  * <p>Displays the details about a resource set, including a list of the resources in the set.</p>
149
169
  */
150
170
  getResourceSet(args: GetResourceSetCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceSetCommandOutput>;
151
171
  getResourceSet(args: GetResourceSetCommandInput, cb: (err: any, data?: GetResourceSetCommandOutput) => void): void;
152
172
  getResourceSet(args: GetResourceSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceSetCommandOutput) => void): void;
153
173
  /**
174
+ * @public
154
175
  * <p>Lists the cells for an account.</p>
155
176
  */
156
177
  listCells(args: ListCellsCommandInput, options?: __HttpHandlerOptions): Promise<ListCellsCommandOutput>;
157
178
  listCells(args: ListCellsCommandInput, cb: (err: any, data?: ListCellsCommandOutput) => void): void;
158
179
  listCells(args: ListCellsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCellsCommandOutput) => void): void;
159
180
  /**
181
+ * @public
160
182
  * <p>Lists the cross-account readiness authorizations that are in place for an account.</p>
161
183
  */
162
184
  listCrossAccountAuthorizations(args: ListCrossAccountAuthorizationsCommandInput, options?: __HttpHandlerOptions): Promise<ListCrossAccountAuthorizationsCommandOutput>;
163
185
  listCrossAccountAuthorizations(args: ListCrossAccountAuthorizationsCommandInput, cb: (err: any, data?: ListCrossAccountAuthorizationsCommandOutput) => void): void;
164
186
  listCrossAccountAuthorizations(args: ListCrossAccountAuthorizationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCrossAccountAuthorizationsCommandOutput) => void): void;
165
187
  /**
188
+ * @public
166
189
  * <p>Lists the readiness checks for an account.</p>
167
190
  */
168
191
  listReadinessChecks(args: ListReadinessChecksCommandInput, options?: __HttpHandlerOptions): Promise<ListReadinessChecksCommandOutput>;
169
192
  listReadinessChecks(args: ListReadinessChecksCommandInput, cb: (err: any, data?: ListReadinessChecksCommandOutput) => void): void;
170
193
  listReadinessChecks(args: ListReadinessChecksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReadinessChecksCommandOutput) => void): void;
171
194
  /**
195
+ * @public
172
196
  * <p>Lists the recovery groups in an account.</p>
173
197
  */
174
198
  listRecoveryGroups(args: ListRecoveryGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListRecoveryGroupsCommandOutput>;
175
199
  listRecoveryGroups(args: ListRecoveryGroupsCommandInput, cb: (err: any, data?: ListRecoveryGroupsCommandOutput) => void): void;
176
200
  listRecoveryGroups(args: ListRecoveryGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecoveryGroupsCommandOutput) => void): void;
177
201
  /**
202
+ * @public
178
203
  * <p>Lists the resource sets in an account.</p>
179
204
  */
180
205
  listResourceSets(args: ListResourceSetsCommandInput, options?: __HttpHandlerOptions): Promise<ListResourceSetsCommandOutput>;
181
206
  listResourceSets(args: ListResourceSetsCommandInput, cb: (err: any, data?: ListResourceSetsCommandOutput) => void): void;
182
207
  listResourceSets(args: ListResourceSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourceSetsCommandOutput) => void): void;
183
208
  /**
209
+ * @public
184
210
  * <p>Lists all readiness rules, or lists the readiness rules for a specific resource type.</p>
185
211
  */
186
212
  listRules(args: ListRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListRulesCommandOutput>;
187
213
  listRules(args: ListRulesCommandInput, cb: (err: any, data?: ListRulesCommandOutput) => void): void;
188
214
  listRules(args: ListRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRulesCommandOutput) => void): void;
189
215
  /**
216
+ * @public
190
217
  * <p>Lists the tags for a resource.</p>
191
218
  */
192
219
  listTagsForResources(args: ListTagsForResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourcesCommandOutput>;
193
220
  listTagsForResources(args: ListTagsForResourcesCommandInput, cb: (err: any, data?: ListTagsForResourcesCommandOutput) => void): void;
194
221
  listTagsForResources(args: ListTagsForResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourcesCommandOutput) => void): void;
195
222
  /**
223
+ * @public
196
224
  * <p>Adds a tag to a resource.</p>
197
225
  */
198
226
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
199
227
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
200
228
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
201
229
  /**
230
+ * @public
202
231
  * <p>Removes a tag from a resource.</p>
203
232
  */
204
233
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
205
234
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
206
235
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
207
236
  /**
237
+ * @public
208
238
  * <p>Updates a cell to replace the list of nested cells with a new list of nested cells.</p>
209
239
  */
210
240
  updateCell(args: UpdateCellCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCellCommandOutput>;
211
241
  updateCell(args: UpdateCellCommandInput, cb: (err: any, data?: UpdateCellCommandOutput) => void): void;
212
242
  updateCell(args: UpdateCellCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCellCommandOutput) => void): void;
213
243
  /**
244
+ * @public
214
245
  * <p>Updates a readiness check.</p>
215
246
  */
216
247
  updateReadinessCheck(args: UpdateReadinessCheckCommandInput, options?: __HttpHandlerOptions): Promise<UpdateReadinessCheckCommandOutput>;
217
248
  updateReadinessCheck(args: UpdateReadinessCheckCommandInput, cb: (err: any, data?: UpdateReadinessCheckCommandOutput) => void): void;
218
249
  updateReadinessCheck(args: UpdateReadinessCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateReadinessCheckCommandOutput) => void): void;
219
250
  /**
251
+ * @public
220
252
  * <p>Updates a recovery group.</p>
221
253
  */
222
254
  updateRecoveryGroup(args: UpdateRecoveryGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRecoveryGroupCommandOutput>;
223
255
  updateRecoveryGroup(args: UpdateRecoveryGroupCommandInput, cb: (err: any, data?: UpdateRecoveryGroupCommandOutput) => void): void;
224
256
  updateRecoveryGroup(args: UpdateRecoveryGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRecoveryGroupCommandOutput) => void): void;
225
257
  /**
258
+ * @public
226
259
  * <p>Updates a resource set.</p>
227
260
  */
228
261
  updateResourceSet(args: UpdateResourceSetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResourceSetCommandOutput>;
@@ -40,15 +40,24 @@ import { UpdateReadinessCheckCommandInput, UpdateReadinessCheckCommandOutput } f
40
40
  import { UpdateRecoveryGroupCommandInput, UpdateRecoveryGroupCommandOutput } from "./commands/UpdateRecoveryGroupCommand";
41
41
  import { UpdateResourceSetCommandInput, UpdateResourceSetCommandOutput } from "./commands/UpdateResourceSetCommand";
42
42
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
43
+ /**
44
+ * @public
45
+ */
43
46
  export type ServiceInputTypes = CreateCellCommandInput | CreateCrossAccountAuthorizationCommandInput | CreateReadinessCheckCommandInput | CreateRecoveryGroupCommandInput | CreateResourceSetCommandInput | DeleteCellCommandInput | DeleteCrossAccountAuthorizationCommandInput | DeleteReadinessCheckCommandInput | DeleteRecoveryGroupCommandInput | DeleteResourceSetCommandInput | GetArchitectureRecommendationsCommandInput | GetCellCommandInput | GetCellReadinessSummaryCommandInput | GetReadinessCheckCommandInput | GetReadinessCheckResourceStatusCommandInput | GetReadinessCheckStatusCommandInput | GetRecoveryGroupCommandInput | GetRecoveryGroupReadinessSummaryCommandInput | GetResourceSetCommandInput | ListCellsCommandInput | ListCrossAccountAuthorizationsCommandInput | ListReadinessChecksCommandInput | ListRecoveryGroupsCommandInput | ListResourceSetsCommandInput | ListRulesCommandInput | ListTagsForResourcesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCellCommandInput | UpdateReadinessCheckCommandInput | UpdateRecoveryGroupCommandInput | UpdateResourceSetCommandInput;
47
+ /**
48
+ * @public
49
+ */
44
50
  export type ServiceOutputTypes = CreateCellCommandOutput | CreateCrossAccountAuthorizationCommandOutput | CreateReadinessCheckCommandOutput | CreateRecoveryGroupCommandOutput | CreateResourceSetCommandOutput | DeleteCellCommandOutput | DeleteCrossAccountAuthorizationCommandOutput | DeleteReadinessCheckCommandOutput | DeleteRecoveryGroupCommandOutput | DeleteResourceSetCommandOutput | GetArchitectureRecommendationsCommandOutput | GetCellCommandOutput | GetCellReadinessSummaryCommandOutput | GetReadinessCheckCommandOutput | GetReadinessCheckResourceStatusCommandOutput | GetReadinessCheckStatusCommandOutput | GetRecoveryGroupCommandOutput | GetRecoveryGroupReadinessSummaryCommandOutput | GetResourceSetCommandOutput | ListCellsCommandOutput | ListCrossAccountAuthorizationsCommandOutput | ListReadinessChecksCommandOutput | ListRecoveryGroupsCommandOutput | ListResourceSetsCommandOutput | ListRulesCommandOutput | ListTagsForResourcesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCellCommandOutput | UpdateReadinessCheckCommandOutput | UpdateRecoveryGroupCommandOutput | UpdateResourceSetCommandOutput;
51
+ /**
52
+ * @public
53
+ */
45
54
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
46
55
  /**
47
56
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
48
57
  */
49
58
  requestHandler?: __HttpHandler;
50
59
  /**
51
- * A constructor for a class implementing the {@link __Checksum} interface
60
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
52
61
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
53
62
  * @internal
54
63
  */
@@ -138,23 +147,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
138
147
  */
139
148
  logger?: __Logger;
140
149
  /**
141
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
150
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
142
151
  */
143
152
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
144
153
  }
154
+ /**
155
+ * @public
156
+ */
145
157
  type Route53RecoveryReadinessClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
146
158
  /**
147
- * The configuration interface of Route53RecoveryReadinessClient class constructor that set the region, credentials and other options.
159
+ * @public
160
+ *
161
+ * The configuration interface of Route53RecoveryReadinessClient class constructor that set the region, credentials and other options.
148
162
  */
149
163
  export interface Route53RecoveryReadinessClientConfig extends Route53RecoveryReadinessClientConfigType {
150
164
  }
165
+ /**
166
+ * @public
167
+ */
151
168
  type Route53RecoveryReadinessClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
152
169
  /**
153
- * The resolved configuration interface of Route53RecoveryReadinessClient class. This is resolved and normalized from the {@link Route53RecoveryReadinessClientConfig | constructor configuration interface}.
170
+ * @public
171
+ *
172
+ * The resolved configuration interface of Route53RecoveryReadinessClient class. This is resolved and normalized from the {@link Route53RecoveryReadinessClientConfig | constructor configuration interface}.
154
173
  */
155
174
  export interface Route53RecoveryReadinessClientResolvedConfig extends Route53RecoveryReadinessClientResolvedConfigType {
156
175
  }
157
176
  /**
177
+ * @public
158
178
  * <p>Recovery readiness</p>
159
179
  */
160
180
  export declare class Route53RecoveryReadinessClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, Route53RecoveryReadinessClientResolvedConfig> {
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CreateCellRequest, CreateCellResponse } from "../models/models_0";
5
5
  import { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53RecoveryReadinessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateCellCommand}.
8
10
  */
9
11
  export interface CreateCellCommandInput extends CreateCellRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateCellCommand}.
13
17
  */
14
18
  export interface CreateCellCommandOutput extends CreateCellResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a cell in an account.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateCellCommandOutput extends CreateCellResponse, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateCellCommandInput - {@link CreateCellCommandInput}
34
+ * @returns {@link CreateCellCommandOutput}
28
35
  * @see {@link CreateCellCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateCellCommandOutput} for command's `response` shape.
30
37
  * @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
@@ -49,11 +56,20 @@ export interface CreateCellCommandOutput extends CreateCellResponse, __MetadataB
49
56
  export declare class CreateCellCommand extends $Command<CreateCellCommandInput, CreateCellCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
50
57
  readonly input: CreateCellCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: CreateCellCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53RecoveryReadinessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCellCommandInput, CreateCellCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CreateCrossAccountAuthorizationRequest, CreateCrossAccountAuthorizationResponse } from "../models/models_0";
5
5
  import { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53RecoveryReadinessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateCrossAccountAuthorizationCommand}.
8
10
  */
9
11
  export interface CreateCrossAccountAuthorizationCommandInput extends CreateCrossAccountAuthorizationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateCrossAccountAuthorizationCommand}.
13
17
  */
14
18
  export interface CreateCrossAccountAuthorizationCommandOutput extends CreateCrossAccountAuthorizationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a cross-account readiness authorization. This lets you authorize another account to work with Route 53 Application Recovery Controller, for example, to check the readiness status of resources in a separate account.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateCrossAccountAuthorizationCommandOutput extends CreateCros
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateCrossAccountAuthorizationCommandInput - {@link CreateCrossAccountAuthorizationCommandInput}
34
+ * @returns {@link CreateCrossAccountAuthorizationCommandOutput}
28
35
  * @see {@link CreateCrossAccountAuthorizationCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateCrossAccountAuthorizationCommandOutput} for command's `response` shape.
30
37
  * @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
@@ -49,11 +56,20 @@ export interface CreateCrossAccountAuthorizationCommandOutput extends CreateCros
49
56
  export declare class CreateCrossAccountAuthorizationCommand extends $Command<CreateCrossAccountAuthorizationCommandInput, CreateCrossAccountAuthorizationCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
50
57
  readonly input: CreateCrossAccountAuthorizationCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: CreateCrossAccountAuthorizationCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53RecoveryReadinessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCrossAccountAuthorizationCommandInput, CreateCrossAccountAuthorizationCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CreateReadinessCheckRequest, CreateReadinessCheckResponse } from "../models/models_0";
5
5
  import { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53RecoveryReadinessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateReadinessCheckCommand}.
8
10
  */
9
11
  export interface CreateReadinessCheckCommandInput extends CreateReadinessCheckRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateReadinessCheckCommand}.
13
17
  */
14
18
  export interface CreateReadinessCheckCommandOutput extends CreateReadinessCheckResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a readiness check in an account. A readiness check monitors a resource set in your application, such as a set of Amazon Aurora instances, that Application Recovery Controller is auditing recovery readiness for. The audits run once every minute on every resource that's associated with a readiness check.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateReadinessCheckCommandOutput extends CreateReadinessCheckR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateReadinessCheckCommandInput - {@link CreateReadinessCheckCommandInput}
34
+ * @returns {@link CreateReadinessCheckCommandOutput}
28
35
  * @see {@link CreateReadinessCheckCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateReadinessCheckCommandOutput} for command's `response` shape.
30
37
  * @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
@@ -49,11 +56,20 @@ export interface CreateReadinessCheckCommandOutput extends CreateReadinessCheckR
49
56
  export declare class CreateReadinessCheckCommand extends $Command<CreateReadinessCheckCommandInput, CreateReadinessCheckCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
50
57
  readonly input: CreateReadinessCheckCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: CreateReadinessCheckCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53RecoveryReadinessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateReadinessCheckCommandInput, CreateReadinessCheckCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CreateRecoveryGroupRequest, CreateRecoveryGroupResponse } from "../models/models_0";
5
5
  import { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53RecoveryReadinessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateRecoveryGroupCommand}.
8
10
  */
9
11
  export interface CreateRecoveryGroupCommandInput extends CreateRecoveryGroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateRecoveryGroupCommand}.
13
17
  */
14
18
  export interface CreateRecoveryGroupCommandOutput extends CreateRecoveryGroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a recovery group in an account. A recovery group corresponds to an application and includes a list of the cells that make up the application.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateRecoveryGroupCommandOutput extends CreateRecoveryGroupRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateRecoveryGroupCommandInput - {@link CreateRecoveryGroupCommandInput}
34
+ * @returns {@link CreateRecoveryGroupCommandOutput}
28
35
  * @see {@link CreateRecoveryGroupCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateRecoveryGroupCommandOutput} for command's `response` shape.
30
37
  * @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
@@ -49,11 +56,20 @@ export interface CreateRecoveryGroupCommandOutput extends CreateRecoveryGroupRes
49
56
  export declare class CreateRecoveryGroupCommand extends $Command<CreateRecoveryGroupCommandInput, CreateRecoveryGroupCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
50
57
  readonly input: CreateRecoveryGroupCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: CreateRecoveryGroupCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53RecoveryReadinessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRecoveryGroupCommandInput, CreateRecoveryGroupCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CreateResourceSetRequest, CreateResourceSetResponse } from "../models/models_0";
5
5
  import { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53RecoveryReadinessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateResourceSetCommand}.
8
10
  */
9
11
  export interface CreateResourceSetCommandInput extends CreateResourceSetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateResourceSetCommand}.
13
17
  */
14
18
  export interface CreateResourceSetCommandOutput extends CreateResourceSetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a resource set. A resource set is a set of resources of one type that span multiple cells. You can associate a resource set with a readiness check to monitor the resources for failover readiness.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateResourceSetCommandOutput extends CreateResourceSetRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateResourceSetCommandInput - {@link CreateResourceSetCommandInput}
34
+ * @returns {@link CreateResourceSetCommandOutput}
28
35
  * @see {@link CreateResourceSetCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateResourceSetCommandOutput} for command's `response` shape.
30
37
  * @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
@@ -49,11 +56,20 @@ export interface CreateResourceSetCommandOutput extends CreateResourceSetRespons
49
56
  export declare class CreateResourceSetCommand extends $Command<CreateResourceSetCommandInput, CreateResourceSetCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
50
57
  readonly input: CreateResourceSetCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: CreateResourceSetCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53RecoveryReadinessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateResourceSetCommandInput, CreateResourceSetCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DeleteCellRequest } from "../models/models_0";
5
5
  import { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53RecoveryReadinessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteCellCommand}.
8
10
  */
9
11
  export interface DeleteCellCommandInput extends DeleteCellRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteCellCommand}.
13
17
  */
14
18
  export interface DeleteCellCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Delete a cell. When successful, the response code is 204, with no response body.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeleteCellCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteCellCommandInput - {@link DeleteCellCommandInput}
34
+ * @returns {@link DeleteCellCommandOutput}
28
35
  * @see {@link DeleteCellCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteCellCommandOutput} for command's `response` shape.
30
37
  * @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
@@ -49,11 +56,20 @@ export interface DeleteCellCommandOutput extends __MetadataBearer {
49
56
  export declare class DeleteCellCommand extends $Command<DeleteCellCommandInput, DeleteCellCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
50
57
  readonly input: DeleteCellCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: DeleteCellCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53RecoveryReadinessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteCellCommandInput, DeleteCellCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }