@aws-sdk/client-route53-recovery-control-config 3.428.0 → 3.429.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.
@@ -53,7 +53,7 @@ export interface Cluster {
53
53
  * @public
54
54
  * <p>Deployment status of a resource. Status can be one of the following: PENDING, DEPLOYED, PENDING_DELETION.</p>
55
55
  */
56
- Status?: Status | string;
56
+ Status?: Status;
57
57
  }
58
58
  /**
59
59
  * @public
@@ -89,7 +89,7 @@ export interface ControlPanel {
89
89
  * @public
90
90
  * <p>The deployment status of control panel. Status can be one of the following: PENDING, DEPLOYED, PENDING_DELETION.</p>
91
91
  */
92
- Status?: Status | string;
92
+ Status?: Status;
93
93
  }
94
94
  /**
95
95
  * @public
@@ -115,7 +115,7 @@ export interface RoutingControl {
115
115
  * @public
116
116
  * <p>The deployment status of a routing control. Status can be one of the following: PENDING, DEPLOYED, PENDING_DELETION.</p>
117
117
  */
118
- Status?: Status | string;
118
+ Status?: Status;
119
119
  }
120
120
  /**
121
121
  * @public
@@ -149,7 +149,7 @@ export interface RuleConfig {
149
149
  * @public
150
150
  * <p>A rule can be one of the following: ATLEAST, AND, or OR.</p>
151
151
  */
152
- Type: RuleType | string | undefined;
152
+ Type: RuleType | undefined;
153
153
  }
154
154
  /**
155
155
  * @public
@@ -185,7 +185,7 @@ export interface AssertionRule {
185
185
  * @public
186
186
  * <p>The deployment status of an assertion rule. Status can be one of the following: PENDING, DEPLOYED, PENDING_DELETION.</p>
187
187
  */
188
- Status: Status | string | undefined;
188
+ Status: Status | undefined;
189
189
  /**
190
190
  * @public
191
191
  * <p>An evaluation period, in milliseconds (ms), during which any request against the target routing controls will fail. This helps prevent "flapping" of state. The wait period is 5000 ms by default, but you can choose a custom value.</p>
@@ -226,7 +226,7 @@ export interface GatingRule {
226
226
  * @public
227
227
  * <p>The deployment status of a gating rule. Status can be one of the following: PENDING, DEPLOYED, PENDING_DELETION.</p>
228
228
  */
229
- Status: Status | string | undefined;
229
+ Status: Status | undefined;
230
230
  /**
231
231
  * @public
232
232
  * <p>An array of target routing control Amazon Resource Names (ARNs) for which the states can only be updated if the rule configuration that you specify evaluates to true for the gating routing control. As a simple example, if you have a single gating control, it acts as an overall "on/off" switch for a set of target routing controls. You can use this to manually override automated failover, for example.</p>
@@ -14,7 +14,7 @@ export interface Cluster {
14
14
  ClusterArn?: string;
15
15
  ClusterEndpoints?: ClusterEndpoint[];
16
16
  Name?: string;
17
- Status?: Status | string;
17
+ Status?: Status;
18
18
  }
19
19
  export interface ControlPanel {
20
20
  ClusterArn?: string;
@@ -22,13 +22,13 @@ export interface ControlPanel {
22
22
  DefaultControlPanel?: boolean;
23
23
  Name?: string;
24
24
  RoutingControlCount?: number;
25
- Status?: Status | string;
25
+ Status?: Status;
26
26
  }
27
27
  export interface RoutingControl {
28
28
  ControlPanelArn?: string;
29
29
  Name?: string;
30
30
  RoutingControlArn?: string;
31
- Status?: Status | string;
31
+ Status?: Status;
32
32
  }
33
33
  export declare const RuleType: {
34
34
  readonly AND: "AND";
@@ -39,7 +39,7 @@ export type RuleType = (typeof RuleType)[keyof typeof RuleType];
39
39
  export interface RuleConfig {
40
40
  Inverted: boolean | undefined;
41
41
  Threshold: number | undefined;
42
- Type: RuleType | string | undefined;
42
+ Type: RuleType | undefined;
43
43
  }
44
44
  export interface AssertionRule {
45
45
  AssertedControls: string[] | undefined;
@@ -47,7 +47,7 @@ export interface AssertionRule {
47
47
  Name: string | undefined;
48
48
  RuleConfig: RuleConfig | undefined;
49
49
  SafetyRuleArn: string | undefined;
50
- Status: Status | string | undefined;
50
+ Status: Status | undefined;
51
51
  WaitPeriodMs: number | undefined;
52
52
  }
53
53
  export interface GatingRule {
@@ -56,7 +56,7 @@ export interface GatingRule {
56
56
  Name: string | undefined;
57
57
  RuleConfig: RuleConfig | undefined;
58
58
  SafetyRuleArn: string | undefined;
59
- Status: Status | string | undefined;
59
+ Status: Status | undefined;
60
60
  TargetControls: string[] | undefined;
61
61
  WaitPeriodMs: number | undefined;
62
62
  }
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.428.0",
4
+ "version": "3.429.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.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
@@ -38,7 +38,7 @@
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
42
  "@smithy/middleware-retry": "^2.0.16",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",