@aws-sdk/client-route53-recovery-control-config 3.529.1 → 3.535.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/Route53RecoveryControlConfig.d.ts +5 -1
- package/dist-types/Route53RecoveryControlConfigClient.d.ts +1 -1
- package/dist-types/commands/CreateClusterCommand.d.ts +2 -1
- package/dist-types/commands/CreateControlPanelCommand.d.ts +2 -1
- package/dist-types/commands/CreateRoutingControlCommand.d.ts +2 -1
- package/dist-types/commands/CreateSafetyRuleCommand.d.ts +2 -1
- package/dist-types/commands/DeleteClusterCommand.d.ts +2 -1
- package/dist-types/commands/DeleteControlPanelCommand.d.ts +2 -1
- package/dist-types/commands/DeleteRoutingControlCommand.d.ts +2 -1
- package/dist-types/commands/DeleteSafetyRuleCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClusterCommand.d.ts +2 -1
- package/dist-types/commands/DescribeControlPanelCommand.d.ts +2 -1
- package/dist-types/commands/DescribeRoutingControlCommand.d.ts +2 -1
- package/dist-types/commands/DescribeSafetyRuleCommand.d.ts +2 -1
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +2 -1
- package/dist-types/commands/ListAssociatedRoute53HealthChecksCommand.d.ts +2 -1
- package/dist-types/commands/ListClustersCommand.d.ts +2 -1
- package/dist-types/commands/ListControlPanelsCommand.d.ts +2 -1
- package/dist-types/commands/ListRoutingControlsCommand.d.ts +2 -1
- package/dist-types/commands/ListSafetyRulesCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateControlPanelCommand.d.ts +2 -1
- package/dist-types/commands/UpdateRoutingControlCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSafetyRuleCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +160 -160
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/Route53RecoveryControlConfig.d.ts +4 -0
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateControlPanelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateRoutingControlCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateSafetyRuleCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteControlPanelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteRoutingControlCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteSafetyRuleCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeControlPanelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeRoutingControlCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeSafetyRuleCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListAssociatedRoute53HealthChecksCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListControlPanelsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListRoutingControlsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListSafetyRulesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateControlPanelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateRoutingControlCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateSafetyRuleCommand.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +41 -41
|
@@ -46,6 +46,7 @@ export interface Route53RecoveryControlConfig {
|
|
|
46
46
|
/**
|
|
47
47
|
* @see {@link CreateSafetyRuleCommand}
|
|
48
48
|
*/
|
|
49
|
+
createSafetyRule(): Promise<CreateSafetyRuleCommandOutput>;
|
|
49
50
|
createSafetyRule(args: CreateSafetyRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateSafetyRuleCommandOutput>;
|
|
50
51
|
createSafetyRule(args: CreateSafetyRuleCommandInput, cb: (err: any, data?: CreateSafetyRuleCommandOutput) => void): void;
|
|
51
52
|
createSafetyRule(args: CreateSafetyRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSafetyRuleCommandOutput) => void): void;
|
|
@@ -112,12 +113,14 @@ export interface Route53RecoveryControlConfig {
|
|
|
112
113
|
/**
|
|
113
114
|
* @see {@link ListClustersCommand}
|
|
114
115
|
*/
|
|
116
|
+
listClusters(): Promise<ListClustersCommandOutput>;
|
|
115
117
|
listClusters(args: ListClustersCommandInput, options?: __HttpHandlerOptions): Promise<ListClustersCommandOutput>;
|
|
116
118
|
listClusters(args: ListClustersCommandInput, cb: (err: any, data?: ListClustersCommandOutput) => void): void;
|
|
117
119
|
listClusters(args: ListClustersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClustersCommandOutput) => void): void;
|
|
118
120
|
/**
|
|
119
121
|
* @see {@link ListControlPanelsCommand}
|
|
120
122
|
*/
|
|
123
|
+
listControlPanels(): Promise<ListControlPanelsCommandOutput>;
|
|
121
124
|
listControlPanels(args: ListControlPanelsCommandInput, options?: __HttpHandlerOptions): Promise<ListControlPanelsCommandOutput>;
|
|
122
125
|
listControlPanels(args: ListControlPanelsCommandInput, cb: (err: any, data?: ListControlPanelsCommandOutput) => void): void;
|
|
123
126
|
listControlPanels(args: ListControlPanelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListControlPanelsCommandOutput) => void): void;
|
|
@@ -166,13 +169,14 @@ export interface Route53RecoveryControlConfig {
|
|
|
166
169
|
/**
|
|
167
170
|
* @see {@link UpdateSafetyRuleCommand}
|
|
168
171
|
*/
|
|
172
|
+
updateSafetyRule(): Promise<UpdateSafetyRuleCommandOutput>;
|
|
169
173
|
updateSafetyRule(args: UpdateSafetyRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSafetyRuleCommandOutput>;
|
|
170
174
|
updateSafetyRule(args: UpdateSafetyRuleCommandInput, cb: (err: any, data?: UpdateSafetyRuleCommandOutput) => void): void;
|
|
171
175
|
updateSafetyRule(args: UpdateSafetyRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSafetyRuleCommandOutput) => void): void;
|
|
172
176
|
}
|
|
173
177
|
/**
|
|
174
|
-
* @public
|
|
175
178
|
* <p>Recovery Control Configuration API Reference for Amazon Route 53 Application Recovery Controller</p>
|
|
179
|
+
* @public
|
|
176
180
|
*/
|
|
177
181
|
export declare class Route53RecoveryControlConfig extends Route53RecoveryControlConfigClient implements Route53RecoveryControlConfig {
|
|
178
182
|
}
|
|
@@ -175,8 +175,8 @@ export type Route53RecoveryControlConfigClientResolvedConfigType = __SmithyResol
|
|
|
175
175
|
export interface Route53RecoveryControlConfigClientResolvedConfig extends Route53RecoveryControlConfigClientResolvedConfigType {
|
|
176
176
|
}
|
|
177
177
|
/**
|
|
178
|
-
* @public
|
|
179
178
|
* <p>Recovery Control Configuration API Reference for Amazon Route 53 Application Recovery Controller</p>
|
|
179
|
+
* @public
|
|
180
180
|
*/
|
|
181
181
|
export declare class Route53RecoveryControlConfigClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, Route53RecoveryControlConfigClientResolvedConfig> {
|
|
182
182
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateClusterCommand_base: {
|
|
24
24
|
new (input: CreateClusterCommandInput): import("@smithy/smithy-client").CommandImpl<CreateClusterCommandInput, CreateClusterCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateClusterCommandInput): import("@smithy/smithy-client").CommandImpl<CreateClusterCommandInput, CreateClusterCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Create a new cluster. A cluster is a set of redundant Regional endpoints against which you can run API calls to update or get the state of one or more routing controls. Each cluster has a name, status, Amazon Resource Name (ARN), and an array of the five cluster endpoints (one for each supported Amazon Web Services Region) that you can use with API calls to the cluster data plane.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -89,6 +89,7 @@ declare const CreateClusterCommand_base: {
|
|
|
89
89
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
91
91
|
*
|
|
92
|
+
* @public
|
|
92
93
|
*/
|
|
93
94
|
export declare class CreateClusterCommand extends CreateClusterCommand_base {
|
|
94
95
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateControlPanelCommandOutput extends CreateControlPanelRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateControlPanelCommand_base: {
|
|
24
24
|
new (input: CreateControlPanelCommandInput): import("@smithy/smithy-client").CommandImpl<CreateControlPanelCommandInput, CreateControlPanelCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateControlPanelCommandInput): import("@smithy/smithy-client").CommandImpl<CreateControlPanelCommandInput, CreateControlPanelCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a new control panel. A control panel represents a group of routing controls that can be changed together in a single transaction. You can use a control panel to centrally view the operational status of applications across your organization, and trigger multi-app failovers in a single transaction, for example, to fail over an Availability Zone or Amazon Web Services Region.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -87,6 +87,7 @@ declare const CreateControlPanelCommand_base: {
|
|
|
87
87
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
89
89
|
*
|
|
90
|
+
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class CreateControlPanelCommand extends CreateControlPanelCommand_base {
|
|
92
93
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateRoutingControlCommandOutput extends CreateRoutingControlR
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateRoutingControlCommand_base: {
|
|
24
24
|
new (input: CreateRoutingControlCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRoutingControlCommandInput, CreateRoutingControlCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateRoutingControlCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRoutingControlCommandInput, CreateRoutingControlCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a new routing control.</p> <p>A routing control has one of two states: ON and OFF. You can map the routing control state to the state of an Amazon Route 53 health check, which can be used to control traffic routing.</p> <p>To get or update the routing control state, see the Recovery Cluster (data plane) API actions for Amazon Route 53 Application Recovery Controller.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -83,6 +83,7 @@ declare const CreateRoutingControlCommand_base: {
|
|
|
83
83
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
85
85
|
*
|
|
86
|
+
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class CreateRoutingControlCommand extends CreateRoutingControlCommand_base {
|
|
88
89
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateSafetyRuleCommandOutput extends CreateSafetyRuleResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateSafetyRuleCommand_base: {
|
|
24
24
|
new (input: CreateSafetyRuleCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSafetyRuleCommandInput, CreateSafetyRuleCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [CreateSafetyRuleCommandInput]): import("@smithy/smithy-client").CommandImpl<CreateSafetyRuleCommandInput, CreateSafetyRuleCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a safety rule in a control panel. Safety rules let you add safeguards around changing routing control states, and for enabling and disabling routing controls, to help prevent unexpected outcomes.</p> <p>There are two types of safety rules: assertion rules and gating rules.</p> <p>Assertion rule: An assertion rule enforces that, when you change a routing control state, that a certain criteria is met. For example, the criteria might be that at least one routing control state is On after the transaction so that traffic continues to flow to at least one cell for the application. This ensures that you avoid a fail-open scenario.</p> <p>Gating rule: A gating rule lets you configure a gating routing control as an overall "on/off" switch for a group of routing controls. Or, you can configure more complex gating scenarios, for example by configuring multiple gating routing controls.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/r53recovery/latest/dg/routing-control.safety-rules.html">Safety rules</a> in the Amazon Route 53 Application Recovery Controller Developer Guide.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -125,6 +125,7 @@ declare const CreateSafetyRuleCommand_base: {
|
|
|
125
125
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
126
126
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
127
127
|
*
|
|
128
|
+
* @public
|
|
128
129
|
*/
|
|
129
130
|
export declare class CreateSafetyRuleCommand extends CreateSafetyRuleCommand_base {
|
|
130
131
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteClusterCommand_base: {
|
|
24
24
|
new (input: DeleteClusterCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteClusterCommandInput, DeleteClusterCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteClusterCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteClusterCommandInput, DeleteClusterCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Delete a cluster.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const DeleteClusterCommand_base: {
|
|
|
69
69
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class DeleteClusterCommand extends DeleteClusterCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteControlPanelCommandOutput extends DeleteControlPanelRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteControlPanelCommand_base: {
|
|
24
24
|
new (input: DeleteControlPanelCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteControlPanelCommandInput, DeleteControlPanelCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteControlPanelCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteControlPanelCommandInput, DeleteControlPanelCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a control panel.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const DeleteControlPanelCommand_base: {
|
|
|
69
69
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class DeleteControlPanelCommand extends DeleteControlPanelCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteRoutingControlCommandOutput extends DeleteRoutingControlR
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteRoutingControlCommand_base: {
|
|
24
24
|
new (input: DeleteRoutingControlCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRoutingControlCommandInput, DeleteRoutingControlCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteRoutingControlCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRoutingControlCommandInput, DeleteRoutingControlCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a routing control.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const DeleteRoutingControlCommand_base: {
|
|
|
69
69
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class DeleteRoutingControlCommand extends DeleteRoutingControlCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteSafetyRuleCommandOutput extends DeleteSafetyRuleResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteSafetyRuleCommand_base: {
|
|
24
24
|
new (input: DeleteSafetyRuleCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSafetyRuleCommandInput, DeleteSafetyRuleCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteSafetyRuleCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSafetyRuleCommandInput, DeleteSafetyRuleCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a safety rule.</p>/>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -60,6 +60,7 @@ declare const DeleteSafetyRuleCommand_base: {
|
|
|
60
60
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
61
61
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
62
62
|
*
|
|
63
|
+
* @public
|
|
63
64
|
*/
|
|
64
65
|
export declare class DeleteSafetyRuleCommand extends DeleteSafetyRuleCommand_base {
|
|
65
66
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeClusterCommand_base: {
|
|
24
24
|
new (input: DescribeClusterCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeClusterCommandInput, DescribeClusterCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeClusterCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeClusterCommandInput, DescribeClusterCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Display the details about a cluster. The response includes the cluster name, endpoints, status, and Amazon Resource Name (ARN).</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -82,6 +82,7 @@ declare const DescribeClusterCommand_base: {
|
|
|
82
82
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class DescribeClusterCommand extends DescribeClusterCommand_base {
|
|
87
88
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeControlPanelCommandOutput extends DescribeControlPanelR
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeControlPanelCommand_base: {
|
|
24
24
|
new (input: DescribeControlPanelCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeControlPanelCommandInput, DescribeControlPanelCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeControlPanelCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeControlPanelCommandInput, DescribeControlPanelCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Displays details about a control panel.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -79,6 +79,7 @@ declare const DescribeControlPanelCommand_base: {
|
|
|
79
79
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class DescribeControlPanelCommand extends DescribeControlPanelCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeRoutingControlCommandOutput extends DescribeRoutingCont
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeRoutingControlCommand_base: {
|
|
24
24
|
new (input: DescribeRoutingControlCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeRoutingControlCommandInput, DescribeRoutingControlCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeRoutingControlCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeRoutingControlCommandInput, DescribeRoutingControlCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Displays details about a routing control. A routing control has one of two states: ON and OFF. You can map the routing control state to the state of an Amazon Route 53 health check, which can be used to control routing.</p> <p>To get or update the routing control state, see the Recovery Cluster (data plane) API actions for Amazon Route 53 Application Recovery Controller.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -77,6 +77,7 @@ declare const DescribeRoutingControlCommand_base: {
|
|
|
77
77
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class DescribeRoutingControlCommand extends DescribeRoutingControlCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeSafetyRuleCommandOutput extends DescribeSafetyRuleRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeSafetyRuleCommand_base: {
|
|
24
24
|
new (input: DescribeSafetyRuleCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSafetyRuleCommandInput, DescribeSafetyRuleCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeSafetyRuleCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSafetyRuleCommandInput, DescribeSafetyRuleCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about a safety rule.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -93,6 +93,7 @@ declare const DescribeSafetyRuleCommand_base: {
|
|
|
93
93
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
94
94
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
95
95
|
*
|
|
96
|
+
* @public
|
|
96
97
|
*/
|
|
97
98
|
export declare class DescribeSafetyRuleCommand extends DescribeSafetyRuleCommand_base {
|
|
98
99
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetResourcePolicyCommand_base: {
|
|
24
24
|
new (input: GetResourcePolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetResourcePolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Get information about the resource policy for a cluster.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -59,6 +59,7 @@ declare const GetResourcePolicyCommand_base: {
|
|
|
59
59
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
60
60
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
61
61
|
*
|
|
62
|
+
* @public
|
|
62
63
|
*/
|
|
63
64
|
export declare class GetResourcePolicyCommand extends GetResourcePolicyCommand_base {
|
|
64
65
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListAssociatedRoute53HealthChecksCommandOutput extends ListAsso
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListAssociatedRoute53HealthChecksCommand_base: {
|
|
24
24
|
new (input: ListAssociatedRoute53HealthChecksCommandInput): import("@smithy/smithy-client").CommandImpl<ListAssociatedRoute53HealthChecksCommandInput, ListAssociatedRoute53HealthChecksCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListAssociatedRoute53HealthChecksCommandInput): import("@smithy/smithy-client").CommandImpl<ListAssociatedRoute53HealthChecksCommandInput, ListAssociatedRoute53HealthChecksCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns an array of all Amazon Route 53 health checks associated with a specific routing control.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -67,6 +67,7 @@ declare const ListAssociatedRoute53HealthChecksCommand_base: {
|
|
|
67
67
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class ListAssociatedRoute53HealthChecksCommand extends ListAssociatedRoute53HealthChecksCommand_base {
|
|
72
73
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListClustersCommand_base: {
|
|
24
24
|
new (input: ListClustersCommandInput): import("@smithy/smithy-client").CommandImpl<ListClustersCommandInput, ListClustersCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListClustersCommandInput]): import("@smithy/smithy-client").CommandImpl<ListClustersCommandInput, ListClustersCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns an array of all the clusters in an account.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -83,6 +83,7 @@ declare const ListClustersCommand_base: {
|
|
|
83
83
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
85
85
|
*
|
|
86
|
+
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class ListClustersCommand extends ListClustersCommand_base {
|
|
88
89
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListControlPanelsCommandOutput extends ListControlPanelsRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListControlPanelsCommand_base: {
|
|
24
24
|
new (input: ListControlPanelsCommandInput): import("@smithy/smithy-client").CommandImpl<ListControlPanelsCommandInput, ListControlPanelsCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListControlPanelsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListControlPanelsCommandInput, ListControlPanelsCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns an array of control panels in an account or in a cluster.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -81,6 +81,7 @@ declare const ListControlPanelsCommand_base: {
|
|
|
81
81
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class ListControlPanelsCommand extends ListControlPanelsCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListRoutingControlsCommandOutput extends ListRoutingControlsRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListRoutingControlsCommand_base: {
|
|
24
24
|
new (input: ListRoutingControlsCommandInput): import("@smithy/smithy-client").CommandImpl<ListRoutingControlsCommandInput, ListRoutingControlsCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListRoutingControlsCommandInput): import("@smithy/smithy-client").CommandImpl<ListRoutingControlsCommandInput, ListRoutingControlsCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns an array of routing controls for a control panel. A routing control is an Amazon Route 53 Application Recovery Controller construct that has one of two states: ON and OFF. You can map the routing control state to the state of an Amazon Route 53 health check, which can be used to control routing.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -79,6 +79,7 @@ declare const ListRoutingControlsCommand_base: {
|
|
|
79
79
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class ListRoutingControlsCommand extends ListRoutingControlsCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListSafetyRulesCommandOutput extends ListSafetyRulesResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListSafetyRulesCommand_base: {
|
|
24
24
|
new (input: ListSafetyRulesCommandInput): import("@smithy/smithy-client").CommandImpl<ListSafetyRulesCommandInput, ListSafetyRulesCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListSafetyRulesCommandInput): import("@smithy/smithy-client").CommandImpl<ListSafetyRulesCommandInput, ListSafetyRulesCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>List the safety rules (the assertion rules and gating rules) that you've defined for the routing controls in a control panel.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -109,6 +109,7 @@ declare const ListSafetyRulesCommand_base: {
|
|
|
109
109
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
110
110
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
111
111
|
*
|
|
112
|
+
* @public
|
|
112
113
|
*/
|
|
113
114
|
export declare class ListSafetyRulesCommand extends ListSafetyRulesCommand_base {
|
|
114
115
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the tags for a resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -64,6 +64,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
64
64
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
69
70
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds a tag to a resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const TagResourceCommand_base: {
|
|
|
63
63
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
68
69
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes a tag from a resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const UntagResourceCommand_base: {
|
|
|
63
63
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
68
69
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateControlPanelCommandOutput extends UpdateControlPanelRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateControlPanelCommand_base: {
|
|
24
24
|
new (input: UpdateControlPanelCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateControlPanelCommandInput, UpdateControlPanelCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateControlPanelCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateControlPanelCommandInput, UpdateControlPanelCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates a control panel. The only update you can make to a control panel is to change the name of the control panel.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -80,6 +80,7 @@ declare const UpdateControlPanelCommand_base: {
|
|
|
80
80
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
82
82
|
*
|
|
83
|
+
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class UpdateControlPanelCommand extends UpdateControlPanelCommand_base {
|
|
85
86
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateRoutingControlCommandOutput extends UpdateRoutingControlR
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateRoutingControlCommand_base: {
|
|
24
24
|
new (input: UpdateRoutingControlCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateRoutingControlCommandInput, UpdateRoutingControlCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateRoutingControlCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateRoutingControlCommandInput, UpdateRoutingControlCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates a routing control. You can only update the name of the routing control. To get or update the routing control state, see the Recovery Cluster (data plane) API actions for Amazon Route 53 Application Recovery Controller.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -78,6 +78,7 @@ declare const UpdateRoutingControlCommand_base: {
|
|
|
78
78
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
80
80
|
*
|
|
81
|
+
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class UpdateRoutingControlCommand extends UpdateRoutingControlCommand_base {
|
|
83
84
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateSafetyRuleCommandOutput extends UpdateSafetyRuleResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateSafetyRuleCommand_base: {
|
|
24
24
|
new (input: UpdateSafetyRuleCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateSafetyRuleCommandInput, UpdateSafetyRuleCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [UpdateSafetyRuleCommandInput]): import("@smithy/smithy-client").CommandImpl<UpdateSafetyRuleCommandInput, UpdateSafetyRuleCommandOutput, Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Update a safety rule (an assertion rule or gating rule). You can only update the name and the waiting period for a safety rule. To make other updates, delete the safety rule and create a new one.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -105,6 +105,7 @@ declare const UpdateSafetyRuleCommand_base: {
|
|
|
105
105
|
* @throws {@link Route53RecoveryControlConfigServiceException}
|
|
106
106
|
* <p>Base exception class for all service exceptions from Route53RecoveryControlConfig service.</p>
|
|
107
107
|
*
|
|
108
|
+
* @public
|
|
108
109
|
*/
|
|
109
110
|
export declare class UpdateSafetyRuleCommand extends UpdateSafetyRuleCommand_base {
|
|
110
111
|
}
|