@aws-sdk/client-route53-recovery-control-config 3.321.1 → 3.326.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/CreateClusterCommand.d.ts +16 -0
- package/dist-types/commands/CreateControlPanelCommand.d.ts +13 -0
- package/dist-types/commands/CreateRoutingControlCommand.d.ts +11 -0
- package/dist-types/commands/CreateSafetyRuleCommand.d.ts +38 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +4 -0
- package/dist-types/commands/DeleteControlPanelCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRoutingControlCommand.d.ts +4 -0
- package/dist-types/commands/DeleteSafetyRuleCommand.d.ts +4 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +16 -0
- package/dist-types/commands/DescribeControlPanelCommand.d.ts +13 -0
- package/dist-types/commands/DescribeRoutingControlCommand.d.ts +11 -0
- package/dist-types/commands/DescribeSafetyRuleCommand.d.ts +38 -0
- package/dist-types/commands/ListAssociatedRoute53HealthChecksCommand.d.ts +9 -0
- package/dist-types/commands/ListClustersCommand.d.ts +19 -0
- package/dist-types/commands/ListControlPanelsCommand.d.ts +16 -0
- package/dist-types/commands/ListRoutingControlsCommand.d.ts +14 -0
- package/dist-types/commands/ListSafetyRulesCommand.d.ts +43 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateControlPanelCommand.d.ts +13 -0
- package/dist-types/commands/UpdateRoutingControlCommand.d.ts +11 -0
- package/dist-types/commands/UpdateSafetyRuleCommand.d.ts +38 -0
- package/package.json +16 -16
|
@@ -35,6 +35,20 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new CreateClusterCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // CreateClusterResponse
|
|
39
|
+
* // Cluster: { // Cluster
|
|
40
|
+
* // ClusterArn: "STRING_VALUE",
|
|
41
|
+
* // ClusterEndpoints: [ // __listOfClusterEndpoint
|
|
42
|
+
* // { // ClusterEndpoint
|
|
43
|
+
* // Endpoint: "STRING_VALUE",
|
|
44
|
+
* // Region: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // Name: "STRING_VALUE",
|
|
48
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION",
|
|
49
|
+
* // },
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
38
52
|
* ```
|
|
39
53
|
*
|
|
40
54
|
* @param CreateClusterCommandInput - {@link CreateClusterCommandInput}
|
|
@@ -64,6 +78,8 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
|
|
|
64
78
|
* @throws {@link ValidationException} (client fault)
|
|
65
79
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
66
80
|
*
|
|
81
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
67
83
|
*
|
|
68
84
|
*/
|
|
69
85
|
export declare class CreateClusterCommand extends $Command<CreateClusterCommandInput, CreateClusterCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -36,6 +36,17 @@ export interface CreateControlPanelCommandOutput extends CreateControlPanelRespo
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new CreateControlPanelCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // CreateControlPanelResponse
|
|
40
|
+
* // ControlPanel: { // ControlPanel
|
|
41
|
+
* // ClusterArn: "STRING_VALUE",
|
|
42
|
+
* // ControlPanelArn: "STRING_VALUE",
|
|
43
|
+
* // DefaultControlPanel: true || false,
|
|
44
|
+
* // Name: "STRING_VALUE",
|
|
45
|
+
* // RoutingControlCount: Number("int"),
|
|
46
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION",
|
|
47
|
+
* // },
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
39
50
|
* ```
|
|
40
51
|
*
|
|
41
52
|
* @param CreateControlPanelCommandInput - {@link CreateControlPanelCommandInput}
|
|
@@ -65,6 +76,8 @@ export interface CreateControlPanelCommandOutput extends CreateControlPanelRespo
|
|
|
65
76
|
* @throws {@link ValidationException} (client fault)
|
|
66
77
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
67
78
|
*
|
|
79
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
68
81
|
*
|
|
69
82
|
*/
|
|
70
83
|
export declare class CreateControlPanelCommand extends $Command<CreateControlPanelCommandInput, CreateControlPanelCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -34,6 +34,15 @@ export interface CreateRoutingControlCommandOutput extends CreateRoutingControlR
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new CreateRoutingControlCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // CreateRoutingControlResponse
|
|
38
|
+
* // RoutingControl: { // RoutingControl
|
|
39
|
+
* // ControlPanelArn: "STRING_VALUE",
|
|
40
|
+
* // Name: "STRING_VALUE",
|
|
41
|
+
* // RoutingControlArn: "STRING_VALUE",
|
|
42
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION",
|
|
43
|
+
* // },
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
37
46
|
* ```
|
|
38
47
|
*
|
|
39
48
|
* @param CreateRoutingControlCommandInput - {@link CreateRoutingControlCommandInput}
|
|
@@ -63,6 +72,8 @@ export interface CreateRoutingControlCommandOutput extends CreateRoutingControlR
|
|
|
63
72
|
* @throws {@link ValidationException} (client fault)
|
|
64
73
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
65
74
|
*
|
|
75
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
66
77
|
*
|
|
67
78
|
*/
|
|
68
79
|
export declare class CreateRoutingControlCommand extends $Command<CreateRoutingControlCommandInput, CreateRoutingControlCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -63,6 +63,42 @@ export interface CreateSafetyRuleCommandOutput extends CreateSafetyRuleResponse,
|
|
|
63
63
|
* };
|
|
64
64
|
* const command = new CreateSafetyRuleCommand(input);
|
|
65
65
|
* const response = await client.send(command);
|
|
66
|
+
* // { // CreateSafetyRuleResponse
|
|
67
|
+
* // AssertionRule: { // AssertionRule
|
|
68
|
+
* // AssertedControls: [ // __listOf__stringMin1Max256PatternAZaZ09 // required
|
|
69
|
+
* // "STRING_VALUE",
|
|
70
|
+
* // ],
|
|
71
|
+
* // ControlPanelArn: "STRING_VALUE", // required
|
|
72
|
+
* // Name: "STRING_VALUE", // required
|
|
73
|
+
* // RuleConfig: { // RuleConfig
|
|
74
|
+
* // Inverted: true || false, // required
|
|
75
|
+
* // Threshold: Number("int"), // required
|
|
76
|
+
* // Type: "ATLEAST" || "AND" || "OR", // required
|
|
77
|
+
* // },
|
|
78
|
+
* // SafetyRuleArn: "STRING_VALUE", // required
|
|
79
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION", // required
|
|
80
|
+
* // WaitPeriodMs: Number("int"), // required
|
|
81
|
+
* // },
|
|
82
|
+
* // GatingRule: { // GatingRule
|
|
83
|
+
* // ControlPanelArn: "STRING_VALUE", // required
|
|
84
|
+
* // GatingControls: [ // required
|
|
85
|
+
* // "STRING_VALUE",
|
|
86
|
+
* // ],
|
|
87
|
+
* // Name: "STRING_VALUE", // required
|
|
88
|
+
* // RuleConfig: {
|
|
89
|
+
* // Inverted: true || false, // required
|
|
90
|
+
* // Threshold: Number("int"), // required
|
|
91
|
+
* // Type: "ATLEAST" || "AND" || "OR", // required
|
|
92
|
+
* // },
|
|
93
|
+
* // SafetyRuleArn: "STRING_VALUE", // required
|
|
94
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION", // required
|
|
95
|
+
* // TargetControls: [ // required
|
|
96
|
+
* // "STRING_VALUE",
|
|
97
|
+
* // ],
|
|
98
|
+
* // WaitPeriodMs: Number("int"), // required
|
|
99
|
+
* // },
|
|
100
|
+
* // };
|
|
101
|
+
*
|
|
66
102
|
* ```
|
|
67
103
|
*
|
|
68
104
|
* @param CreateSafetyRuleCommandInput - {@link CreateSafetyRuleCommandInput}
|
|
@@ -77,6 +113,8 @@ export interface CreateSafetyRuleCommandOutput extends CreateSafetyRuleResponse,
|
|
|
77
113
|
* @throws {@link ValidationException} (client fault)
|
|
78
114
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
79
115
|
*
|
|
116
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
117
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
80
118
|
*
|
|
81
119
|
*/
|
|
82
120
|
export declare class CreateSafetyRuleCommand extends $Command<CreateSafetyRuleCommandInput, CreateSafetyRuleCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteClusterCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteClusterCommandInput - {@link DeleteClusterCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
|
|
|
57
59
|
* @throws {@link ValidationException} (client fault)
|
|
58
60
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class DeleteClusterCommand extends $Command<DeleteClusterCommandInput, DeleteClusterCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteControlPanelCommandOutput extends DeleteControlPanelRespo
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteControlPanelCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteControlPanelCommandInput - {@link DeleteControlPanelCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface DeleteControlPanelCommandOutput extends DeleteControlPanelRespo
|
|
|
57
59
|
* @throws {@link ValidationException} (client fault)
|
|
58
60
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class DeleteControlPanelCommand extends $Command<DeleteControlPanelCommandInput, DeleteControlPanelCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteRoutingControlCommandOutput extends DeleteRoutingControlR
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteRoutingControlCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteRoutingControlCommandInput - {@link DeleteRoutingControlCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface DeleteRoutingControlCommandOutput extends DeleteRoutingControlR
|
|
|
57
59
|
* @throws {@link ValidationException} (client fault)
|
|
58
60
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class DeleteRoutingControlCommand extends $Command<DeleteRoutingControlCommandInput, DeleteRoutingControlCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteSafetyRuleCommandOutput extends DeleteSafetyRuleResponse,
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteSafetyRuleCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteSafetyRuleCommandInput - {@link DeleteSafetyRuleCommandInput}
|
|
@@ -48,6 +50,8 @@ export interface DeleteSafetyRuleCommandOutput extends DeleteSafetyRuleResponse,
|
|
|
48
50
|
* @throws {@link ValidationException} (client fault)
|
|
49
51
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
50
52
|
*
|
|
53
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
51
55
|
*
|
|
52
56
|
*/
|
|
53
57
|
export declare class DeleteSafetyRuleCommand extends $Command<DeleteSafetyRuleCommandInput, DeleteSafetyRuleCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -31,6 +31,20 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeClusterCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeClusterResponse
|
|
35
|
+
* // Cluster: { // Cluster
|
|
36
|
+
* // ClusterArn: "STRING_VALUE",
|
|
37
|
+
* // ClusterEndpoints: [ // __listOfClusterEndpoint
|
|
38
|
+
* // { // ClusterEndpoint
|
|
39
|
+
* // Endpoint: "STRING_VALUE",
|
|
40
|
+
* // Region: "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // ],
|
|
43
|
+
* // Name: "STRING_VALUE",
|
|
44
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION",
|
|
45
|
+
* // },
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
34
48
|
* ```
|
|
35
49
|
*
|
|
36
50
|
* @param DescribeClusterCommandInput - {@link DescribeClusterCommandInput}
|
|
@@ -57,6 +71,8 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _
|
|
|
57
71
|
* @throws {@link ValidationException} (client fault)
|
|
58
72
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
59
73
|
*
|
|
74
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
60
76
|
*
|
|
61
77
|
*/
|
|
62
78
|
export declare class DescribeClusterCommand extends $Command<DescribeClusterCommandInput, DescribeClusterCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -31,6 +31,17 @@ export interface DescribeControlPanelCommandOutput extends DescribeControlPanelR
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeControlPanelCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeControlPanelResponse
|
|
35
|
+
* // ControlPanel: { // ControlPanel
|
|
36
|
+
* // ClusterArn: "STRING_VALUE",
|
|
37
|
+
* // ControlPanelArn: "STRING_VALUE",
|
|
38
|
+
* // DefaultControlPanel: true || false,
|
|
39
|
+
* // Name: "STRING_VALUE",
|
|
40
|
+
* // RoutingControlCount: Number("int"),
|
|
41
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION",
|
|
42
|
+
* // },
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
34
45
|
* ```
|
|
35
46
|
*
|
|
36
47
|
* @param DescribeControlPanelCommandInput - {@link DescribeControlPanelCommandInput}
|
|
@@ -57,6 +68,8 @@ export interface DescribeControlPanelCommandOutput extends DescribeControlPanelR
|
|
|
57
68
|
* @throws {@link ValidationException} (client fault)
|
|
58
69
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
59
70
|
*
|
|
71
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
60
73
|
*
|
|
61
74
|
*/
|
|
62
75
|
export declare class DescribeControlPanelCommand extends $Command<DescribeControlPanelCommandInput, DescribeControlPanelCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -31,6 +31,15 @@ export interface DescribeRoutingControlCommandOutput extends DescribeRoutingCont
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeRoutingControlCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeRoutingControlResponse
|
|
35
|
+
* // RoutingControl: { // RoutingControl
|
|
36
|
+
* // ControlPanelArn: "STRING_VALUE",
|
|
37
|
+
* // Name: "STRING_VALUE",
|
|
38
|
+
* // RoutingControlArn: "STRING_VALUE",
|
|
39
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION",
|
|
40
|
+
* // },
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
34
43
|
* ```
|
|
35
44
|
*
|
|
36
45
|
* @param DescribeRoutingControlCommandInput - {@link DescribeRoutingControlCommandInput}
|
|
@@ -57,6 +66,8 @@ export interface DescribeRoutingControlCommandOutput extends DescribeRoutingCont
|
|
|
57
66
|
* @throws {@link ValidationException} (client fault)
|
|
58
67
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
59
68
|
*
|
|
69
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
60
71
|
*
|
|
61
72
|
*/
|
|
62
73
|
export declare class DescribeRoutingControlCommand extends $Command<DescribeRoutingControlCommandInput, DescribeRoutingControlCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -31,6 +31,42 @@ export interface DescribeSafetyRuleCommandOutput extends DescribeSafetyRuleRespo
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeSafetyRuleCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeSafetyRuleResponse
|
|
35
|
+
* // AssertionRule: { // AssertionRule
|
|
36
|
+
* // AssertedControls: [ // __listOf__stringMin1Max256PatternAZaZ09 // required
|
|
37
|
+
* // "STRING_VALUE",
|
|
38
|
+
* // ],
|
|
39
|
+
* // ControlPanelArn: "STRING_VALUE", // required
|
|
40
|
+
* // Name: "STRING_VALUE", // required
|
|
41
|
+
* // RuleConfig: { // RuleConfig
|
|
42
|
+
* // Inverted: true || false, // required
|
|
43
|
+
* // Threshold: Number("int"), // required
|
|
44
|
+
* // Type: "ATLEAST" || "AND" || "OR", // required
|
|
45
|
+
* // },
|
|
46
|
+
* // SafetyRuleArn: "STRING_VALUE", // required
|
|
47
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION", // required
|
|
48
|
+
* // WaitPeriodMs: Number("int"), // required
|
|
49
|
+
* // },
|
|
50
|
+
* // GatingRule: { // GatingRule
|
|
51
|
+
* // ControlPanelArn: "STRING_VALUE", // required
|
|
52
|
+
* // GatingControls: [ // required
|
|
53
|
+
* // "STRING_VALUE",
|
|
54
|
+
* // ],
|
|
55
|
+
* // Name: "STRING_VALUE", // required
|
|
56
|
+
* // RuleConfig: {
|
|
57
|
+
* // Inverted: true || false, // required
|
|
58
|
+
* // Threshold: Number("int"), // required
|
|
59
|
+
* // Type: "ATLEAST" || "AND" || "OR", // required
|
|
60
|
+
* // },
|
|
61
|
+
* // SafetyRuleArn: "STRING_VALUE", // required
|
|
62
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION", // required
|
|
63
|
+
* // TargetControls: [ // required
|
|
64
|
+
* // "STRING_VALUE",
|
|
65
|
+
* // ],
|
|
66
|
+
* // WaitPeriodMs: Number("int"), // required
|
|
67
|
+
* // },
|
|
68
|
+
* // };
|
|
69
|
+
*
|
|
34
70
|
* ```
|
|
35
71
|
*
|
|
36
72
|
* @param DescribeSafetyRuleCommandInput - {@link DescribeSafetyRuleCommandInput}
|
|
@@ -45,6 +81,8 @@ export interface DescribeSafetyRuleCommandOutput extends DescribeSafetyRuleRespo
|
|
|
45
81
|
* @throws {@link ValidationException} (client fault)
|
|
46
82
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
47
83
|
*
|
|
84
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
48
86
|
*
|
|
49
87
|
*/
|
|
50
88
|
export declare class DescribeSafetyRuleCommand extends $Command<DescribeSafetyRuleCommandInput, DescribeSafetyRuleCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -33,6 +33,13 @@ export interface ListAssociatedRoute53HealthChecksCommandOutput extends ListAsso
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListAssociatedRoute53HealthChecksCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListAssociatedRoute53HealthChecksResponse
|
|
37
|
+
* // HealthCheckIds: [ // __listOf__stringMax36PatternS
|
|
38
|
+
* // "STRING_VALUE",
|
|
39
|
+
* // ],
|
|
40
|
+
* // NextToken: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
36
43
|
* ```
|
|
37
44
|
*
|
|
38
45
|
* @param ListAssociatedRoute53HealthChecksCommandInput - {@link ListAssociatedRoute53HealthChecksCommandInput}
|
|
@@ -50,6 +57,8 @@ export interface ListAssociatedRoute53HealthChecksCommandOutput extends ListAsso
|
|
|
50
57
|
* @throws {@link ValidationException} (client fault)
|
|
51
58
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
52
59
|
*
|
|
60
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
53
62
|
*
|
|
54
63
|
*/
|
|
55
64
|
export declare class ListAssociatedRoute53HealthChecksCommand extends $Command<ListAssociatedRoute53HealthChecksCommandInput, ListAssociatedRoute53HealthChecksCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -32,6 +32,23 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListClustersCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListClustersResponse
|
|
36
|
+
* // Clusters: [ // __listOfCluster
|
|
37
|
+
* // { // Cluster
|
|
38
|
+
* // ClusterArn: "STRING_VALUE",
|
|
39
|
+
* // ClusterEndpoints: [ // __listOfClusterEndpoint
|
|
40
|
+
* // { // ClusterEndpoint
|
|
41
|
+
* // Endpoint: "STRING_VALUE",
|
|
42
|
+
* // Region: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // Name: "STRING_VALUE",
|
|
46
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION",
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // NextToken: "STRING_VALUE",
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
35
52
|
* ```
|
|
36
53
|
*
|
|
37
54
|
* @param ListClustersCommandInput - {@link ListClustersCommandInput}
|
|
@@ -55,6 +72,8 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad
|
|
|
55
72
|
* @throws {@link ValidationException} (client fault)
|
|
56
73
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
57
74
|
*
|
|
75
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
58
77
|
*
|
|
59
78
|
*/
|
|
60
79
|
export declare class ListClustersCommand extends $Command<ListClustersCommandInput, ListClustersCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -33,6 +33,20 @@ export interface ListControlPanelsCommandOutput extends ListControlPanelsRespons
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListControlPanelsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListControlPanelsResponse
|
|
37
|
+
* // ControlPanels: [ // __listOfControlPanel
|
|
38
|
+
* // { // ControlPanel
|
|
39
|
+
* // ClusterArn: "STRING_VALUE",
|
|
40
|
+
* // ControlPanelArn: "STRING_VALUE",
|
|
41
|
+
* // DefaultControlPanel: true || false,
|
|
42
|
+
* // Name: "STRING_VALUE",
|
|
43
|
+
* // RoutingControlCount: Number("int"),
|
|
44
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION",
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // NextToken: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
36
50
|
* ```
|
|
37
51
|
*
|
|
38
52
|
* @param ListControlPanelsCommandInput - {@link ListControlPanelsCommandInput}
|
|
@@ -56,6 +70,8 @@ export interface ListControlPanelsCommandOutput extends ListControlPanelsRespons
|
|
|
56
70
|
* @throws {@link ValidationException} (client fault)
|
|
57
71
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
58
72
|
*
|
|
73
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
59
75
|
*
|
|
60
76
|
*/
|
|
61
77
|
export declare class ListControlPanelsCommand extends $Command<ListControlPanelsCommandInput, ListControlPanelsCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -33,6 +33,18 @@ export interface ListRoutingControlsCommandOutput extends ListRoutingControlsRes
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListRoutingControlsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListRoutingControlsResponse
|
|
37
|
+
* // NextToken: "STRING_VALUE",
|
|
38
|
+
* // RoutingControls: [ // __listOfRoutingControl
|
|
39
|
+
* // { // RoutingControl
|
|
40
|
+
* // ControlPanelArn: "STRING_VALUE",
|
|
41
|
+
* // Name: "STRING_VALUE",
|
|
42
|
+
* // RoutingControlArn: "STRING_VALUE",
|
|
43
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION",
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
36
48
|
* ```
|
|
37
49
|
*
|
|
38
50
|
* @param ListRoutingControlsCommandInput - {@link ListRoutingControlsCommandInput}
|
|
@@ -56,6 +68,8 @@ export interface ListRoutingControlsCommandOutput extends ListRoutingControlsRes
|
|
|
56
68
|
* @throws {@link ValidationException} (client fault)
|
|
57
69
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
58
70
|
*
|
|
71
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
59
73
|
*
|
|
60
74
|
*/
|
|
61
75
|
export declare class ListRoutingControlsCommand extends $Command<ListRoutingControlsCommandInput, ListRoutingControlsCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -33,6 +33,47 @@ export interface ListSafetyRulesCommandOutput extends ListSafetyRulesResponse, _
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListSafetyRulesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListSafetyRulesResponse
|
|
37
|
+
* // NextToken: "STRING_VALUE",
|
|
38
|
+
* // SafetyRules: [ // __listOfRule
|
|
39
|
+
* // { // Rule
|
|
40
|
+
* // ASSERTION: { // AssertionRule
|
|
41
|
+
* // AssertedControls: [ // __listOf__stringMin1Max256PatternAZaZ09 // required
|
|
42
|
+
* // "STRING_VALUE",
|
|
43
|
+
* // ],
|
|
44
|
+
* // ControlPanelArn: "STRING_VALUE", // required
|
|
45
|
+
* // Name: "STRING_VALUE", // required
|
|
46
|
+
* // RuleConfig: { // RuleConfig
|
|
47
|
+
* // Inverted: true || false, // required
|
|
48
|
+
* // Threshold: Number("int"), // required
|
|
49
|
+
* // Type: "ATLEAST" || "AND" || "OR", // required
|
|
50
|
+
* // },
|
|
51
|
+
* // SafetyRuleArn: "STRING_VALUE", // required
|
|
52
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION", // required
|
|
53
|
+
* // WaitPeriodMs: Number("int"), // required
|
|
54
|
+
* // },
|
|
55
|
+
* // GATING: { // GatingRule
|
|
56
|
+
* // ControlPanelArn: "STRING_VALUE", // required
|
|
57
|
+
* // GatingControls: [ // required
|
|
58
|
+
* // "STRING_VALUE",
|
|
59
|
+
* // ],
|
|
60
|
+
* // Name: "STRING_VALUE", // required
|
|
61
|
+
* // RuleConfig: {
|
|
62
|
+
* // Inverted: true || false, // required
|
|
63
|
+
* // Threshold: Number("int"), // required
|
|
64
|
+
* // Type: "ATLEAST" || "AND" || "OR", // required
|
|
65
|
+
* // },
|
|
66
|
+
* // SafetyRuleArn: "STRING_VALUE", // required
|
|
67
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION", // required
|
|
68
|
+
* // TargetControls: [ // required
|
|
69
|
+
* // "STRING_VALUE",
|
|
70
|
+
* // ],
|
|
71
|
+
* // WaitPeriodMs: Number("int"), // required
|
|
72
|
+
* // },
|
|
73
|
+
* // },
|
|
74
|
+
* // ],
|
|
75
|
+
* // };
|
|
76
|
+
*
|
|
36
77
|
* ```
|
|
37
78
|
*
|
|
38
79
|
* @param ListSafetyRulesCommandInput - {@link ListSafetyRulesCommandInput}
|
|
@@ -56,6 +97,8 @@ export interface ListSafetyRulesCommandOutput extends ListSafetyRulesResponse, _
|
|
|
56
97
|
* @throws {@link ValidationException} (client fault)
|
|
57
98
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
58
99
|
*
|
|
100
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
101
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
59
102
|
*
|
|
60
103
|
*/
|
|
61
104
|
export declare class ListSafetyRulesCommand extends $Command<ListSafetyRulesCommandInput, ListSafetyRulesCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // Tags: { // __mapOf__stringMin0Max256PatternS
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -48,6 +54,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
48
54
|
* @throws {@link ValidationException} (client fault)
|
|
49
55
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
50
56
|
*
|
|
57
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
51
59
|
*
|
|
52
60
|
*/
|
|
53
61
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -32,6 +32,17 @@ export interface UpdateControlPanelCommandOutput extends UpdateControlPanelRespo
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UpdateControlPanelCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // UpdateControlPanelResponse
|
|
36
|
+
* // ControlPanel: { // ControlPanel
|
|
37
|
+
* // ClusterArn: "STRING_VALUE",
|
|
38
|
+
* // ControlPanelArn: "STRING_VALUE",
|
|
39
|
+
* // DefaultControlPanel: true || false,
|
|
40
|
+
* // Name: "STRING_VALUE",
|
|
41
|
+
* // RoutingControlCount: Number("int"),
|
|
42
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION",
|
|
43
|
+
* // },
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
35
46
|
* ```
|
|
36
47
|
*
|
|
37
48
|
* @param UpdateControlPanelCommandInput - {@link UpdateControlPanelCommandInput}
|
|
@@ -58,6 +69,8 @@ export interface UpdateControlPanelCommandOutput extends UpdateControlPanelRespo
|
|
|
58
69
|
* @throws {@link ValidationException} (client fault)
|
|
59
70
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
60
71
|
*
|
|
72
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
61
74
|
*
|
|
62
75
|
*/
|
|
63
76
|
export declare class UpdateControlPanelCommand extends $Command<UpdateControlPanelCommandInput, UpdateControlPanelCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -32,6 +32,15 @@ export interface UpdateRoutingControlCommandOutput extends UpdateRoutingControlR
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UpdateRoutingControlCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // UpdateRoutingControlResponse
|
|
36
|
+
* // RoutingControl: { // RoutingControl
|
|
37
|
+
* // ControlPanelArn: "STRING_VALUE",
|
|
38
|
+
* // Name: "STRING_VALUE",
|
|
39
|
+
* // RoutingControlArn: "STRING_VALUE",
|
|
40
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION",
|
|
41
|
+
* // },
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
35
44
|
* ```
|
|
36
45
|
*
|
|
37
46
|
* @param UpdateRoutingControlCommandInput - {@link UpdateRoutingControlCommandInput}
|
|
@@ -58,6 +67,8 @@ export interface UpdateRoutingControlCommandOutput extends UpdateRoutingControlR
|
|
|
58
67
|
* @throws {@link ValidationException} (client fault)
|
|
59
68
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
60
69
|
*
|
|
70
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
61
72
|
*
|
|
62
73
|
*/
|
|
63
74
|
export declare class UpdateRoutingControlCommand extends $Command<UpdateRoutingControlCommandInput, UpdateRoutingControlCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
@@ -40,6 +40,42 @@ export interface UpdateSafetyRuleCommandOutput extends UpdateSafetyRuleResponse,
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new UpdateSafetyRuleCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // UpdateSafetyRuleResponse
|
|
44
|
+
* // AssertionRule: { // AssertionRule
|
|
45
|
+
* // AssertedControls: [ // __listOf__stringMin1Max256PatternAZaZ09 // required
|
|
46
|
+
* // "STRING_VALUE",
|
|
47
|
+
* // ],
|
|
48
|
+
* // ControlPanelArn: "STRING_VALUE", // required
|
|
49
|
+
* // Name: "STRING_VALUE", // required
|
|
50
|
+
* // RuleConfig: { // RuleConfig
|
|
51
|
+
* // Inverted: true || false, // required
|
|
52
|
+
* // Threshold: Number("int"), // required
|
|
53
|
+
* // Type: "ATLEAST" || "AND" || "OR", // required
|
|
54
|
+
* // },
|
|
55
|
+
* // SafetyRuleArn: "STRING_VALUE", // required
|
|
56
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION", // required
|
|
57
|
+
* // WaitPeriodMs: Number("int"), // required
|
|
58
|
+
* // },
|
|
59
|
+
* // GatingRule: { // GatingRule
|
|
60
|
+
* // ControlPanelArn: "STRING_VALUE", // required
|
|
61
|
+
* // GatingControls: [ // required
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // Name: "STRING_VALUE", // required
|
|
65
|
+
* // RuleConfig: {
|
|
66
|
+
* // Inverted: true || false, // required
|
|
67
|
+
* // Threshold: Number("int"), // required
|
|
68
|
+
* // Type: "ATLEAST" || "AND" || "OR", // required
|
|
69
|
+
* // },
|
|
70
|
+
* // SafetyRuleArn: "STRING_VALUE", // required
|
|
71
|
+
* // Status: "PENDING" || "DEPLOYED" || "PENDING_DELETION", // required
|
|
72
|
+
* // TargetControls: [ // required
|
|
73
|
+
* // "STRING_VALUE",
|
|
74
|
+
* // ],
|
|
75
|
+
* // WaitPeriodMs: Number("int"), // required
|
|
76
|
+
* // },
|
|
77
|
+
* // };
|
|
78
|
+
*
|
|
43
79
|
* ```
|
|
44
80
|
*
|
|
45
81
|
* @param UpdateSafetyRuleCommandInput - {@link UpdateSafetyRuleCommandInput}
|
|
@@ -57,6 +93,8 @@ export interface UpdateSafetyRuleCommandOutput extends UpdateSafetyRuleResponse,
|
|
|
57
93
|
* @throws {@link ValidationException} (client fault)
|
|
58
94
|
* <p>400 response - Multiple causes. For example, you might have a malformed query string and input parameter might be out of range, or you might have used parameters together incorrectly.</p>
|
|
59
95
|
*
|
|
96
|
+
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
60
98
|
*
|
|
61
99
|
*/
|
|
62
100
|
export declare class UpdateSafetyRuleCommand extends $Command<UpdateSafetyRuleCommandInput, UpdateSafetyRuleCommandOutput, Route53RecoveryControlConfigClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route53-recovery-control-config",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route53 Recovery Control Config Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.326.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,33 +21,33 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|