@aws-sdk/client-route53-recovery-readiness 3.300.0 → 3.301.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/dist-types/commands/CreateCellCommand.d.ts +3 -3
  2. package/dist-types/commands/CreateCrossAccountAuthorizationCommand.d.ts +1 -1
  3. package/dist-types/commands/CreateReadinessCheckCommand.d.ts +2 -2
  4. package/dist-types/commands/CreateRecoveryGroupCommand.d.ts +3 -3
  5. package/dist-types/commands/CreateResourceSetCommand.d.ts +9 -9
  6. package/dist-types/commands/DeleteCellCommand.d.ts +1 -1
  7. package/dist-types/commands/DeleteCrossAccountAuthorizationCommand.d.ts +1 -1
  8. package/dist-types/commands/DeleteReadinessCheckCommand.d.ts +1 -1
  9. package/dist-types/commands/DeleteRecoveryGroupCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteResourceSetCommand.d.ts +1 -1
  11. package/dist-types/commands/GetArchitectureRecommendationsCommand.d.ts +1 -1
  12. package/dist-types/commands/GetCellCommand.d.ts +1 -1
  13. package/dist-types/commands/GetCellReadinessSummaryCommand.d.ts +1 -1
  14. package/dist-types/commands/GetReadinessCheckCommand.d.ts +1 -1
  15. package/dist-types/commands/GetReadinessCheckResourceStatusCommand.d.ts +1 -1
  16. package/dist-types/commands/GetReadinessCheckStatusCommand.d.ts +1 -1
  17. package/dist-types/commands/GetRecoveryGroupCommand.d.ts +1 -1
  18. package/dist-types/commands/GetRecoveryGroupReadinessSummaryCommand.d.ts +1 -1
  19. package/dist-types/commands/GetResourceSetCommand.d.ts +1 -1
  20. package/dist-types/commands/ListCellsCommand.d.ts +1 -1
  21. package/dist-types/commands/ListCrossAccountAuthorizationsCommand.d.ts +1 -1
  22. package/dist-types/commands/ListReadinessChecksCommand.d.ts +1 -1
  23. package/dist-types/commands/ListRecoveryGroupsCommand.d.ts +1 -1
  24. package/dist-types/commands/ListResourceSetsCommand.d.ts +1 -1
  25. package/dist-types/commands/ListRulesCommand.d.ts +1 -1
  26. package/dist-types/commands/ListTagsForResourcesCommand.d.ts +1 -1
  27. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  28. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  29. package/dist-types/commands/UpdateCellCommand.d.ts +2 -2
  30. package/dist-types/commands/UpdateReadinessCheckCommand.d.ts +1 -1
  31. package/dist-types/commands/UpdateRecoveryGroupCommand.d.ts +2 -2
  32. package/dist-types/commands/UpdateResourceSetCommand.d.ts +8 -8
  33. package/package.json +3 -3
@@ -26,12 +26,12 @@ 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 = {
29
+ * const input = { // CreateCellRequest
30
30
  * CellName: "STRING_VALUE", // required
31
- * Cells: [
31
+ * Cells: [ // __listOf__string
32
32
  * "STRING_VALUE",
33
33
  * ],
34
- * Tags: {
34
+ * Tags: { // Tags
35
35
  * "<keys>": "STRING_VALUE",
36
36
  * },
37
37
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // CreateCrossAccountAuthorizationRequest
30
30
  * CrossAccountAuthorization: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new CreateCrossAccountAuthorizationCommand(input);
@@ -26,10 +26,10 @@ 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 = {
29
+ * const input = { // CreateReadinessCheckRequest
30
30
  * ReadinessCheckName: "STRING_VALUE", // required
31
31
  * ResourceSetName: "STRING_VALUE", // required
32
- * Tags: {
32
+ * Tags: { // Tags
33
33
  * "<keys>": "STRING_VALUE",
34
34
  * },
35
35
  * };
@@ -26,12 +26,12 @@ 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: [
29
+ * const input = { // CreateRecoveryGroupRequest
30
+ * Cells: [ // __listOf__string
31
31
  * "STRING_VALUE",
32
32
  * ],
33
33
  * RecoveryGroupName: "STRING_VALUE", // required
34
- * Tags: {
34
+ * Tags: { // Tags
35
35
  * "<keys>": "STRING_VALUE",
36
36
  * },
37
37
  * };
@@ -26,34 +26,34 @@ 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 = {
29
+ * const input = { // CreateResourceSetRequest
30
30
  * ResourceSetName: "STRING_VALUE", // required
31
31
  * ResourceSetType: "STRING_VALUE", // required
32
- * Resources: [ // required
33
- * {
32
+ * Resources: [ // __listOfResource // required
33
+ * { // Resource
34
34
  * ComponentId: "STRING_VALUE",
35
- * DnsTargetResource: {
35
+ * DnsTargetResource: { // DNSTargetResource
36
36
  * DomainName: "STRING_VALUE",
37
37
  * HostedZoneArn: "STRING_VALUE",
38
38
  * RecordSetId: "STRING_VALUE",
39
39
  * RecordType: "STRING_VALUE",
40
- * TargetResource: {
41
- * NLBResource: {
40
+ * TargetResource: { // TargetResource
41
+ * NLBResource: { // NLBResource
42
42
  * Arn: "STRING_VALUE",
43
43
  * },
44
- * R53Resource: {
44
+ * R53Resource: { // R53ResourceRecord
45
45
  * DomainName: "STRING_VALUE",
46
46
  * RecordSetId: "STRING_VALUE",
47
47
  * },
48
48
  * },
49
49
  * },
50
- * ReadinessScopes: [
50
+ * ReadinessScopes: [ // __listOf__string
51
51
  * "STRING_VALUE",
52
52
  * ],
53
53
  * ResourceArn: "STRING_VALUE",
54
54
  * },
55
55
  * ],
56
- * Tags: {
56
+ * Tags: { // Tags
57
57
  * "<keys>": "STRING_VALUE",
58
58
  * },
59
59
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DeleteCellRequest
30
30
  * CellName: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteCellCommand(input);
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DeleteCrossAccountAuthorizationRequest
30
30
  * CrossAccountAuthorization: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteCrossAccountAuthorizationCommand(input);
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DeleteReadinessCheckRequest
30
30
  * ReadinessCheckName: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteReadinessCheckCommand(input);
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DeleteRecoveryGroupRequest
30
30
  * RecoveryGroupName: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteRecoveryGroupCommand(input);
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DeleteResourceSetRequest
30
30
  * ResourceSetName: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteResourceSetCommand(input);
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // GetArchitectureRecommendationsRequest
30
30
  * MaxResults: Number("int"),
31
31
  * NextToken: "STRING_VALUE",
32
32
  * RecoveryGroupName: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // GetCellRequest
30
30
  * CellName: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetCellCommand(input);
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // GetCellReadinessSummaryRequest
30
30
  * CellName: "STRING_VALUE", // required
31
31
  * MaxResults: Number("int"),
32
32
  * NextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // GetReadinessCheckRequest
30
30
  * ReadinessCheckName: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetReadinessCheckCommand(input);
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // GetReadinessCheckResourceStatusRequest
30
30
  * MaxResults: Number("int"),
31
31
  * NextToken: "STRING_VALUE",
32
32
  * ReadinessCheckName: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // GetReadinessCheckStatusRequest
30
30
  * MaxResults: Number("int"),
31
31
  * NextToken: "STRING_VALUE",
32
32
  * ReadinessCheckName: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // GetRecoveryGroupRequest
30
30
  * RecoveryGroupName: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetRecoveryGroupCommand(input);
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // GetRecoveryGroupReadinessSummaryRequest
30
30
  * MaxResults: Number("int"),
31
31
  * NextToken: "STRING_VALUE",
32
32
  * RecoveryGroupName: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // GetResourceSetRequest
30
30
  * ResourceSetName: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetResourceSetCommand(input);
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // ListCellsRequest
30
30
  * MaxResults: Number("int"),
31
31
  * NextToken: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // ListCrossAccountAuthorizationsRequest
30
30
  * MaxResults: Number("int"),
31
31
  * NextToken: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // ListReadinessChecksRequest
30
30
  * MaxResults: Number("int"),
31
31
  * NextToken: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // ListRecoveryGroupsRequest
30
30
  * MaxResults: Number("int"),
31
31
  * NextToken: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // ListResourceSetsRequest
30
30
  * MaxResults: Number("int"),
31
31
  * NextToken: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // ListRulesRequest
30
30
  * MaxResults: Number("int"),
31
31
  * NextToken: "STRING_VALUE",
32
32
  * ResourceType: "STRING_VALUE",
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // ListTagsForResourcesRequest
30
30
  * ResourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourcesCommand(input);
@@ -26,9 +26,9 @@ 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 = {
29
+ * const input = { // TagResourceRequest
30
30
  * ResourceArn: "STRING_VALUE", // required
31
- * Tags: { // required
31
+ * Tags: { // Tags // required
32
32
  * "<keys>": "STRING_VALUE",
33
33
  * },
34
34
  * };
@@ -26,9 +26,9 @@ 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 = {
29
+ * const input = { // UntagResourceRequest
30
30
  * ResourceArn: "STRING_VALUE", // required
31
- * TagKeys: [ // required
31
+ * TagKeys: [ // __listOf__string // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -26,9 +26,9 @@ 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 = {
29
+ * const input = { // UpdateCellRequest
30
30
  * CellName: "STRING_VALUE", // required
31
- * Cells: [ // required
31
+ * Cells: [ // __listOf__string // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // UpdateReadinessCheckRequest
30
30
  * ReadinessCheckName: "STRING_VALUE", // required
31
31
  * ResourceSetName: "STRING_VALUE", // required
32
32
  * };
@@ -26,8 +26,8 @@ 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
29
+ * const input = { // UpdateRecoveryGroupRequest
30
+ * Cells: [ // __listOf__string // required
31
31
  * "STRING_VALUE",
32
32
  * ],
33
33
  * RecoveryGroupName: "STRING_VALUE", // required
@@ -26,28 +26,28 @@ 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 = {
29
+ * const input = { // UpdateResourceSetRequest
30
30
  * ResourceSetName: "STRING_VALUE", // required
31
31
  * ResourceSetType: "STRING_VALUE", // required
32
- * Resources: [ // required
33
- * {
32
+ * Resources: [ // __listOfResource // required
33
+ * { // Resource
34
34
  * ComponentId: "STRING_VALUE",
35
- * DnsTargetResource: {
35
+ * DnsTargetResource: { // DNSTargetResource
36
36
  * DomainName: "STRING_VALUE",
37
37
  * HostedZoneArn: "STRING_VALUE",
38
38
  * RecordSetId: "STRING_VALUE",
39
39
  * RecordType: "STRING_VALUE",
40
- * TargetResource: {
41
- * NLBResource: {
40
+ * TargetResource: { // TargetResource
41
+ * NLBResource: { // NLBResource
42
42
  * Arn: "STRING_VALUE",
43
43
  * },
44
- * R53Resource: {
44
+ * R53Resource: { // R53ResourceRecord
45
45
  * DomainName: "STRING_VALUE",
46
46
  * RecordSetId: "STRING_VALUE",
47
47
  * },
48
48
  * },
49
49
  * },
50
- * ReadinessScopes: [
50
+ * ReadinessScopes: [ // __listOf__string
51
51
  * "STRING_VALUE",
52
52
  * ],
53
53
  * ResourceArn: "STRING_VALUE",
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.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",