@aws-sdk/client-route53-recovery-cluster 3.686.0 → 3.691.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.
@@ -86,7 +86,7 @@ export interface GetRoutingControlStateResponse {
86
86
  * <p>The routing control name.</p>
87
87
  * @public
88
88
  */
89
- RoutingControlName?: string;
89
+ RoutingControlName?: string | undefined;
90
90
  }
91
91
  /**
92
92
  * <p>There was an unexpected error during processing of the request.</p>
@@ -99,7 +99,7 @@ export declare class InternalServerException extends __BaseException {
99
99
  * Advice to clients on when the call can be safely retried
100
100
  * @public
101
101
  */
102
- retryAfterSeconds?: number;
102
+ retryAfterSeconds?: number | undefined;
103
103
  /**
104
104
  * @internal
105
105
  */
@@ -138,7 +138,7 @@ export declare class ThrottlingException extends __BaseException {
138
138
  * Advice to clients on when the call can be safely retried
139
139
  * @public
140
140
  */
141
- retryAfterSeconds?: number;
141
+ retryAfterSeconds?: number | undefined;
142
142
  /**
143
143
  * @internal
144
144
  */
@@ -185,12 +185,12 @@ export declare class ValidationException extends __BaseException {
185
185
  * Reason the request failed validation
186
186
  * @public
187
187
  */
188
- reason?: ValidationExceptionReason;
188
+ reason?: ValidationExceptionReason | undefined;
189
189
  /**
190
190
  * The fields that caused the error, if applicable
191
191
  * @public
192
192
  */
193
- fields?: ValidationExceptionField[];
193
+ fields?: ValidationExceptionField[] | undefined;
194
194
  /**
195
195
  * @internal
196
196
  */
@@ -204,17 +204,17 @@ export interface ListRoutingControlsRequest {
204
204
  * <p>The Amazon Resource Name (ARN) of the control panel of the routing controls to list.</p>
205
205
  * @public
206
206
  */
207
- ControlPanelArn?: string;
207
+ ControlPanelArn?: string | undefined;
208
208
  /**
209
209
  * <p>The token for the next set of results. You receive this token from a previous call.</p>
210
210
  * @public
211
211
  */
212
- NextToken?: string;
212
+ NextToken?: string | undefined;
213
213
  /**
214
214
  * <p>The number of routing controls objects that you want to return with this call. The default value is 500.</p>
215
215
  * @public
216
216
  */
217
- MaxResults?: number;
217
+ MaxResults?: number | undefined;
218
218
  }
219
219
  /**
220
220
  * <p>A routing control, which is a simple on/off switch that you
@@ -227,34 +227,34 @@ export interface RoutingControl {
227
227
  * <p>The Amazon Resource Name (ARN) of the control panel where the routing control is located.</p>
228
228
  * @public
229
229
  */
230
- ControlPanelArn?: string;
230
+ ControlPanelArn?: string | undefined;
231
231
  /**
232
232
  * <p>The name of the control panel where the routing control is located. Only ASCII characters are supported for control
233
233
  * panel names.</p>
234
234
  * @public
235
235
  */
236
- ControlPanelName?: string;
236
+ ControlPanelName?: string | undefined;
237
237
  /**
238
238
  * <p>The Amazon Resource Name (ARN) of the routing control.</p>
239
239
  * @public
240
240
  */
241
- RoutingControlArn?: string;
241
+ RoutingControlArn?: string | undefined;
242
242
  /**
243
243
  * <p>The name of the routing control.</p>
244
244
  * @public
245
245
  */
246
- RoutingControlName?: string;
246
+ RoutingControlName?: string | undefined;
247
247
  /**
248
248
  * <p>The current state of the routing control. When a routing control state is set to ON, traffic flows to a cell. When
249
249
  * the state is set to OFF, traffic does not flow. </p>
250
250
  * @public
251
251
  */
252
- RoutingControlState?: RoutingControlState;
252
+ RoutingControlState?: RoutingControlState | undefined;
253
253
  /**
254
254
  * <p>The Amazon Web Services account ID of the routing control owner.</p>
255
255
  * @public
256
256
  */
257
- Owner?: string;
257
+ Owner?: string | undefined;
258
258
  }
259
259
  /**
260
260
  * @public
@@ -269,7 +269,7 @@ export interface ListRoutingControlsResponse {
269
269
  * <p>The token for the next set of results. You receive this token from a previous call.</p>
270
270
  * @public
271
271
  */
272
- NextToken?: string;
272
+ NextToken?: string | undefined;
273
273
  }
274
274
  /**
275
275
  * <p>The request can't update that many routing control states at the same time. Try again with fewer routing control states.</p>
@@ -282,12 +282,12 @@ export declare class ServiceLimitExceededException extends __BaseException {
282
282
  * <p>The resource identifier of the limit that was exceeded.</p>
283
283
  * @public
284
284
  */
285
- resourceId?: string;
285
+ resourceId?: string | undefined;
286
286
  /**
287
287
  * <p>The resource type of the limit that was exceeded.</p>
288
288
  * @public
289
289
  */
290
- resourceType?: string;
290
+ resourceType?: string | undefined;
291
291
  /**
292
292
  * <p>The code of the limit that was exceeded.</p>
293
293
  * @public
@@ -325,7 +325,7 @@ export interface UpdateRoutingControlStateRequest {
325
325
  * Override safety rules to reroute traffic</a> in the Amazon Route 53 Application Recovery Controller Developer Guide.</p>
326
326
  * @public
327
327
  */
328
- SafetyRulesToOverride?: string[];
328
+ SafetyRulesToOverride?: string[] | undefined;
329
329
  }
330
330
  /**
331
331
  * @public
@@ -365,7 +365,7 @@ export interface UpdateRoutingControlStatesRequest {
365
365
  * Override safety rules to reroute traffic</a> in the Amazon Route 53 Application Recovery Controller Developer Guide.</p>
366
366
  * @public
367
367
  */
368
- SafetyRulesToOverride?: string[];
368
+ SafetyRulesToOverride?: string[] | undefined;
369
369
  }
370
370
  /**
371
371
  * @public
@@ -36,12 +36,12 @@ export type RoutingControlState =
36
36
  export interface GetRoutingControlStateResponse {
37
37
  RoutingControlArn: string | undefined;
38
38
  RoutingControlState: RoutingControlState | undefined;
39
- RoutingControlName?: string;
39
+ RoutingControlName?: string | undefined;
40
40
  }
41
41
  export declare class InternalServerException extends __BaseException {
42
42
  readonly name: "InternalServerException";
43
43
  readonly $fault: "server";
44
- retryAfterSeconds?: number;
44
+ retryAfterSeconds?: number | undefined;
45
45
  constructor(
46
46
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
47
47
  );
@@ -58,7 +58,7 @@ export declare class ResourceNotFoundException extends __BaseException {
58
58
  export declare class ThrottlingException extends __BaseException {
59
59
  readonly name: "ThrottlingException";
60
60
  readonly $fault: "client";
61
- retryAfterSeconds?: number;
61
+ retryAfterSeconds?: number | undefined;
62
62
  constructor(
63
63
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
64
64
  );
@@ -78,34 +78,34 @@ export type ValidationExceptionReason =
78
78
  export declare class ValidationException extends __BaseException {
79
79
  readonly name: "ValidationException";
80
80
  readonly $fault: "client";
81
- reason?: ValidationExceptionReason;
82
- fields?: ValidationExceptionField[];
81
+ reason?: ValidationExceptionReason | undefined;
82
+ fields?: ValidationExceptionField[] | undefined;
83
83
  constructor(
84
84
  opts: __ExceptionOptionType<ValidationException, __BaseException>
85
85
  );
86
86
  }
87
87
  export interface ListRoutingControlsRequest {
88
- ControlPanelArn?: string;
89
- NextToken?: string;
90
- MaxResults?: number;
88
+ ControlPanelArn?: string | undefined;
89
+ NextToken?: string | undefined;
90
+ MaxResults?: number | undefined;
91
91
  }
92
92
  export interface RoutingControl {
93
- ControlPanelArn?: string;
94
- ControlPanelName?: string;
95
- RoutingControlArn?: string;
96
- RoutingControlName?: string;
97
- RoutingControlState?: RoutingControlState;
98
- Owner?: string;
93
+ ControlPanelArn?: string | undefined;
94
+ ControlPanelName?: string | undefined;
95
+ RoutingControlArn?: string | undefined;
96
+ RoutingControlName?: string | undefined;
97
+ RoutingControlState?: RoutingControlState | undefined;
98
+ Owner?: string | undefined;
99
99
  }
100
100
  export interface ListRoutingControlsResponse {
101
101
  RoutingControls: RoutingControl[] | undefined;
102
- NextToken?: string;
102
+ NextToken?: string | undefined;
103
103
  }
104
104
  export declare class ServiceLimitExceededException extends __BaseException {
105
105
  readonly name: "ServiceLimitExceededException";
106
106
  readonly $fault: "client";
107
- resourceId?: string;
108
- resourceType?: string;
107
+ resourceId?: string | undefined;
108
+ resourceType?: string | undefined;
109
109
  limitCode: string | undefined;
110
110
  serviceCode: string | undefined;
111
111
  constructor(
@@ -115,7 +115,7 @@ export declare class ServiceLimitExceededException extends __BaseException {
115
115
  export interface UpdateRoutingControlStateRequest {
116
116
  RoutingControlArn: string | undefined;
117
117
  RoutingControlState: RoutingControlState | undefined;
118
- SafetyRulesToOverride?: string[];
118
+ SafetyRulesToOverride?: string[] | undefined;
119
119
  }
120
120
  export interface UpdateRoutingControlStateResponse {}
121
121
  export interface UpdateRoutingControlStateEntry {
@@ -126,6 +126,6 @@ export interface UpdateRoutingControlStatesRequest {
126
126
  UpdateRoutingControlStateEntries:
127
127
  | UpdateRoutingControlStateEntry[]
128
128
  | undefined;
129
- SafetyRulesToOverride?: string[];
129
+ SafetyRulesToOverride?: string[] | undefined;
130
130
  }
131
131
  export interface UpdateRoutingControlStatesResponse {}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-route53-recovery-cluster",
3
3
  "description": "AWS SDK for JavaScript Route53 Recovery Cluster Client for Node.js, Browser and React Native",
4
- "version": "3.686.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-route53-recovery-cluster",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.686.0",
24
- "@aws-sdk/client-sts": "3.686.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.686.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",