@aws-sdk/client-route53-recovery-readiness 3.299.0 → 3.300.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 (33) hide show
  1. package/dist-types/commands/CreateCellCommand.d.ts +9 -0
  2. package/dist-types/commands/CreateCrossAccountAuthorizationCommand.d.ts +3 -0
  3. package/dist-types/commands/CreateReadinessCheckCommand.d.ts +7 -0
  4. package/dist-types/commands/CreateRecoveryGroupCommand.d.ts +9 -0
  5. package/dist-types/commands/CreateResourceSetCommand.d.ts +31 -0
  6. package/dist-types/commands/DeleteCellCommand.d.ts +3 -0
  7. package/dist-types/commands/DeleteCrossAccountAuthorizationCommand.d.ts +3 -0
  8. package/dist-types/commands/DeleteReadinessCheckCommand.d.ts +3 -0
  9. package/dist-types/commands/DeleteRecoveryGroupCommand.d.ts +3 -0
  10. package/dist-types/commands/DeleteResourceSetCommand.d.ts +3 -0
  11. package/dist-types/commands/GetArchitectureRecommendationsCommand.d.ts +5 -0
  12. package/dist-types/commands/GetCellCommand.d.ts +3 -0
  13. package/dist-types/commands/GetCellReadinessSummaryCommand.d.ts +5 -0
  14. package/dist-types/commands/GetReadinessCheckCommand.d.ts +3 -0
  15. package/dist-types/commands/GetReadinessCheckResourceStatusCommand.d.ts +6 -0
  16. package/dist-types/commands/GetReadinessCheckStatusCommand.d.ts +5 -0
  17. package/dist-types/commands/GetRecoveryGroupCommand.d.ts +3 -0
  18. package/dist-types/commands/GetRecoveryGroupReadinessSummaryCommand.d.ts +5 -0
  19. package/dist-types/commands/GetResourceSetCommand.d.ts +3 -0
  20. package/dist-types/commands/ListCellsCommand.d.ts +4 -0
  21. package/dist-types/commands/ListCrossAccountAuthorizationsCommand.d.ts +4 -0
  22. package/dist-types/commands/ListReadinessChecksCommand.d.ts +4 -0
  23. package/dist-types/commands/ListRecoveryGroupsCommand.d.ts +4 -0
  24. package/dist-types/commands/ListResourceSetsCommand.d.ts +4 -0
  25. package/dist-types/commands/ListRulesCommand.d.ts +5 -0
  26. package/dist-types/commands/ListTagsForResourcesCommand.d.ts +3 -0
  27. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  28. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  29. package/dist-types/commands/UpdateCellCommand.d.ts +6 -0
  30. package/dist-types/commands/UpdateReadinessCheckCommand.d.ts +4 -0
  31. package/dist-types/commands/UpdateRecoveryGroupCommand.d.ts +6 -0
  32. package/dist-types/commands/UpdateResourceSetCommand.d.ts +28 -0
  33. package/package.json +8 -8
@@ -26,6 +26,15 @@ export interface CreateCellCommandOutput extends CreateCellResponse, __MetadataB
26
26
  * import { Route53RecoveryReadinessClient, CreateCellCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, CreateCellCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * CellName: "STRING_VALUE", // required
31
+ * Cells: [
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * Tags: {
35
+ * "<keys>": "STRING_VALUE",
36
+ * },
37
+ * };
29
38
  * const command = new CreateCellCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
@@ -26,6 +26,9 @@ export interface CreateCrossAccountAuthorizationCommandOutput extends CreateCros
26
26
  * import { Route53RecoveryReadinessClient, CreateCrossAccountAuthorizationCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, CreateCrossAccountAuthorizationCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * CrossAccountAuthorization: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new CreateCrossAccountAuthorizationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,13 @@ export interface CreateReadinessCheckCommandOutput extends CreateReadinessCheckR
26
26
  * import { Route53RecoveryReadinessClient, CreateReadinessCheckCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, CreateReadinessCheckCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * ReadinessCheckName: "STRING_VALUE", // required
31
+ * ResourceSetName: "STRING_VALUE", // required
32
+ * Tags: {
33
+ * "<keys>": "STRING_VALUE",
34
+ * },
35
+ * };
29
36
  * const command = new CreateReadinessCheckCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,15 @@ export interface CreateRecoveryGroupCommandOutput extends CreateRecoveryGroupRes
26
26
  * import { Route53RecoveryReadinessClient, CreateRecoveryGroupCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, CreateRecoveryGroupCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * Cells: [
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * RecoveryGroupName: "STRING_VALUE", // required
34
+ * Tags: {
35
+ * "<keys>": "STRING_VALUE",
36
+ * },
37
+ * };
29
38
  * const command = new CreateRecoveryGroupCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
@@ -26,6 +26,37 @@ export interface CreateResourceSetCommandOutput extends CreateResourceSetRespons
26
26
  * import { Route53RecoveryReadinessClient, CreateResourceSetCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, CreateResourceSetCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * ResourceSetName: "STRING_VALUE", // required
31
+ * ResourceSetType: "STRING_VALUE", // required
32
+ * Resources: [ // required
33
+ * {
34
+ * ComponentId: "STRING_VALUE",
35
+ * DnsTargetResource: {
36
+ * DomainName: "STRING_VALUE",
37
+ * HostedZoneArn: "STRING_VALUE",
38
+ * RecordSetId: "STRING_VALUE",
39
+ * RecordType: "STRING_VALUE",
40
+ * TargetResource: {
41
+ * NLBResource: {
42
+ * Arn: "STRING_VALUE",
43
+ * },
44
+ * R53Resource: {
45
+ * DomainName: "STRING_VALUE",
46
+ * RecordSetId: "STRING_VALUE",
47
+ * },
48
+ * },
49
+ * },
50
+ * ReadinessScopes: [
51
+ * "STRING_VALUE",
52
+ * ],
53
+ * ResourceArn: "STRING_VALUE",
54
+ * },
55
+ * ],
56
+ * Tags: {
57
+ * "<keys>": "STRING_VALUE",
58
+ * },
59
+ * };
29
60
  * const command = new CreateResourceSetCommand(input);
30
61
  * const response = await client.send(command);
31
62
  * ```
@@ -26,6 +26,9 @@ export interface DeleteCellCommandOutput extends __MetadataBearer {
26
26
  * import { Route53RecoveryReadinessClient, DeleteCellCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, DeleteCellCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * CellName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteCellCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DeleteCrossAccountAuthorizationCommandOutput extends DeleteCros
26
26
  * import { Route53RecoveryReadinessClient, DeleteCrossAccountAuthorizationCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, DeleteCrossAccountAuthorizationCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * CrossAccountAuthorization: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteCrossAccountAuthorizationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DeleteReadinessCheckCommandOutput extends __MetadataBearer {
26
26
  * import { Route53RecoveryReadinessClient, DeleteReadinessCheckCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, DeleteReadinessCheckCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * ReadinessCheckName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteReadinessCheckCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DeleteRecoveryGroupCommandOutput extends __MetadataBearer {
26
26
  * import { Route53RecoveryReadinessClient, DeleteRecoveryGroupCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, DeleteRecoveryGroupCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * RecoveryGroupName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteRecoveryGroupCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DeleteResourceSetCommandOutput extends __MetadataBearer {
26
26
  * import { Route53RecoveryReadinessClient, DeleteResourceSetCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, DeleteResourceSetCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * ResourceSetName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteResourceSetCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,11 @@ export interface GetArchitectureRecommendationsCommandOutput extends GetArchitec
26
26
  * import { Route53RecoveryReadinessClient, GetArchitectureRecommendationsCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, GetArchitectureRecommendationsCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * RecoveryGroupName: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new GetArchitectureRecommendationsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,9 @@ export interface GetCellCommandOutput extends GetCellResponse, __MetadataBearer
26
26
  * import { Route53RecoveryReadinessClient, GetCellCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, GetCellCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * CellName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetCellCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,11 @@ export interface GetCellReadinessSummaryCommandOutput extends GetCellReadinessSu
26
26
  * import { Route53RecoveryReadinessClient, GetCellReadinessSummaryCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, GetCellReadinessSummaryCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * CellName: "STRING_VALUE", // required
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new GetCellReadinessSummaryCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,9 @@ export interface GetReadinessCheckCommandOutput extends GetReadinessCheckRespons
26
26
  * import { Route53RecoveryReadinessClient, GetReadinessCheckCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, GetReadinessCheckCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * ReadinessCheckName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetReadinessCheckCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,12 @@ export interface GetReadinessCheckResourceStatusCommandOutput extends GetReadine
26
26
  * import { Route53RecoveryReadinessClient, GetReadinessCheckResourceStatusCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, GetReadinessCheckResourceStatusCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * ReadinessCheckName: "STRING_VALUE", // required
33
+ * ResourceIdentifier: "STRING_VALUE", // required
34
+ * };
29
35
  * const command = new GetReadinessCheckResourceStatusCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,11 @@ export interface GetReadinessCheckStatusCommandOutput extends GetReadinessCheckS
26
26
  * import { Route53RecoveryReadinessClient, GetReadinessCheckStatusCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, GetReadinessCheckStatusCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * ReadinessCheckName: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new GetReadinessCheckStatusCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,9 @@ export interface GetRecoveryGroupCommandOutput extends GetRecoveryGroupResponse,
26
26
  * import { Route53RecoveryReadinessClient, GetRecoveryGroupCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, GetRecoveryGroupCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * RecoveryGroupName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetRecoveryGroupCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,11 @@ export interface GetRecoveryGroupReadinessSummaryCommandOutput extends GetRecove
26
26
  * import { Route53RecoveryReadinessClient, GetRecoveryGroupReadinessSummaryCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, GetRecoveryGroupReadinessSummaryCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * RecoveryGroupName: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new GetRecoveryGroupReadinessSummaryCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,9 @@ export interface GetResourceSetCommandOutput extends GetResourceSetResponse, __M
26
26
  * import { Route53RecoveryReadinessClient, GetResourceSetCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, GetResourceSetCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * ResourceSetName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetResourceSetCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ export interface ListCellsCommandOutput extends ListCellsResponse, __MetadataBea
26
26
  * import { Route53RecoveryReadinessClient, ListCellsCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, ListCellsCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListCellsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface ListCrossAccountAuthorizationsCommandOutput extends ListCrossAc
26
26
  * import { Route53RecoveryReadinessClient, ListCrossAccountAuthorizationsCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, ListCrossAccountAuthorizationsCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListCrossAccountAuthorizationsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface ListReadinessChecksCommandOutput extends ListReadinessChecksRes
26
26
  * import { Route53RecoveryReadinessClient, ListReadinessChecksCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, ListReadinessChecksCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListReadinessChecksCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface ListRecoveryGroupsCommandOutput extends ListRecoveryGroupsRespo
26
26
  * import { Route53RecoveryReadinessClient, ListRecoveryGroupsCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, ListRecoveryGroupsCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListRecoveryGroupsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface ListResourceSetsCommandOutput extends ListResourceSetsResponse,
26
26
  * import { Route53RecoveryReadinessClient, ListResourceSetsCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, ListResourceSetsCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListResourceSetsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea
26
26
  * import { Route53RecoveryReadinessClient, ListRulesCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, ListRulesCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * ResourceType: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListRulesCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,9 @@ export interface ListTagsForResourcesCommandOutput extends ListTagsForResourcesR
26
26
  * import { Route53RecoveryReadinessClient, ListTagsForResourcesCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, ListTagsForResourcesCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourcesCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { Route53RecoveryReadinessClient, TagResourceCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, TagResourceCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * Tags: { // required
32
+ * "<keys>": "STRING_VALUE",
33
+ * },
34
+ * };
29
35
  * const command = new TagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
26
26
  * import { Route53RecoveryReadinessClient, UntagResourceCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, UntagResourceCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * TagKeys: [ // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ export interface UpdateCellCommandOutput extends UpdateCellResponse, __MetadataB
26
26
  * import { Route53RecoveryReadinessClient, UpdateCellCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, UpdateCellCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * CellName: "STRING_VALUE", // required
31
+ * Cells: [ // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UpdateCellCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,10 @@ export interface UpdateReadinessCheckCommandOutput extends UpdateReadinessCheckR
26
26
  * import { Route53RecoveryReadinessClient, UpdateReadinessCheckCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, UpdateReadinessCheckCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * ReadinessCheckName: "STRING_VALUE", // required
31
+ * ResourceSetName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new UpdateReadinessCheckCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,12 @@ export interface UpdateRecoveryGroupCommandOutput extends UpdateRecoveryGroupRes
26
26
  * import { Route53RecoveryReadinessClient, UpdateRecoveryGroupCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, UpdateRecoveryGroupCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * Cells: [ // required
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * RecoveryGroupName: "STRING_VALUE", // required
34
+ * };
29
35
  * const command = new UpdateRecoveryGroupCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,34 @@ export interface UpdateResourceSetCommandOutput extends UpdateResourceSetRespons
26
26
  * import { Route53RecoveryReadinessClient, UpdateResourceSetCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
27
27
  * // const { Route53RecoveryReadinessClient, UpdateResourceSetCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
28
28
  * const client = new Route53RecoveryReadinessClient(config);
29
+ * const input = {
30
+ * ResourceSetName: "STRING_VALUE", // required
31
+ * ResourceSetType: "STRING_VALUE", // required
32
+ * Resources: [ // required
33
+ * {
34
+ * ComponentId: "STRING_VALUE",
35
+ * DnsTargetResource: {
36
+ * DomainName: "STRING_VALUE",
37
+ * HostedZoneArn: "STRING_VALUE",
38
+ * RecordSetId: "STRING_VALUE",
39
+ * RecordType: "STRING_VALUE",
40
+ * TargetResource: {
41
+ * NLBResource: {
42
+ * Arn: "STRING_VALUE",
43
+ * },
44
+ * R53Resource: {
45
+ * DomainName: "STRING_VALUE",
46
+ * RecordSetId: "STRING_VALUE",
47
+ * },
48
+ * },
49
+ * },
50
+ * ReadinessScopes: [
51
+ * "STRING_VALUE",
52
+ * ],
53
+ * ResourceArn: "STRING_VALUE",
54
+ * },
55
+ * ],
56
+ * };
29
57
  * const command = new UpdateResourceSetCommand(input);
30
58
  * const response = await client.send(command);
31
59
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-route53-recovery-readiness",
3
3
  "description": "AWS SDK for JavaScript Route53 Recovery Readiness Client for Node.js, Browser and React Native",
4
- "version": "3.299.0",
4
+ "version": "3.300.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.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.300.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.300.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",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0"
57
57
  },