@aws-sdk/client-dax 3.687.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.
- package/dist-types/models/models_0.d.ts +136 -136
- package/dist-types/ts3.4/models/models_0.d.ts +136 -136
- package/package.json +7 -7
|
@@ -27,50 +27,50 @@ export interface SSESpecification {
|
|
|
27
27
|
Enabled: boolean | undefined;
|
|
28
28
|
}
|
|
29
29
|
export interface Tag {
|
|
30
|
-
Key?: string;
|
|
31
|
-
Value?: string;
|
|
30
|
+
Key?: string | undefined;
|
|
31
|
+
Value?: string | undefined;
|
|
32
32
|
}
|
|
33
33
|
export interface CreateClusterRequest {
|
|
34
34
|
ClusterName: string | undefined;
|
|
35
35
|
NodeType: string | undefined;
|
|
36
|
-
Description?: string;
|
|
36
|
+
Description?: string | undefined;
|
|
37
37
|
ReplicationFactor: number | undefined;
|
|
38
|
-
AvailabilityZones?: string[];
|
|
39
|
-
SubnetGroupName?: string;
|
|
40
|
-
SecurityGroupIds?: string[];
|
|
41
|
-
PreferredMaintenanceWindow?: string;
|
|
42
|
-
NotificationTopicArn?: string;
|
|
38
|
+
AvailabilityZones?: string[] | undefined;
|
|
39
|
+
SubnetGroupName?: string | undefined;
|
|
40
|
+
SecurityGroupIds?: string[] | undefined;
|
|
41
|
+
PreferredMaintenanceWindow?: string | undefined;
|
|
42
|
+
NotificationTopicArn?: string | undefined;
|
|
43
43
|
IamRoleArn: string | undefined;
|
|
44
|
-
ParameterGroupName?: string;
|
|
45
|
-
Tags?: Tag[];
|
|
46
|
-
SSESpecification?: SSESpecification;
|
|
47
|
-
ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType;
|
|
44
|
+
ParameterGroupName?: string | undefined;
|
|
45
|
+
Tags?: Tag[] | undefined;
|
|
46
|
+
SSESpecification?: SSESpecification | undefined;
|
|
47
|
+
ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType | undefined;
|
|
48
48
|
}
|
|
49
49
|
export interface Endpoint {
|
|
50
|
-
Address?: string;
|
|
51
|
-
Port?: number;
|
|
52
|
-
URL?: string;
|
|
50
|
+
Address?: string | undefined;
|
|
51
|
+
Port?: number | undefined;
|
|
52
|
+
URL?: string | undefined;
|
|
53
53
|
}
|
|
54
54
|
export interface Node {
|
|
55
|
-
NodeId?: string;
|
|
56
|
-
Endpoint?: Endpoint;
|
|
57
|
-
NodeCreateTime?: Date;
|
|
58
|
-
AvailabilityZone?: string;
|
|
59
|
-
NodeStatus?: string;
|
|
60
|
-
ParameterGroupStatus?: string;
|
|
55
|
+
NodeId?: string | undefined;
|
|
56
|
+
Endpoint?: Endpoint | undefined;
|
|
57
|
+
NodeCreateTime?: Date | undefined;
|
|
58
|
+
AvailabilityZone?: string | undefined;
|
|
59
|
+
NodeStatus?: string | undefined;
|
|
60
|
+
ParameterGroupStatus?: string | undefined;
|
|
61
61
|
}
|
|
62
62
|
export interface NotificationConfiguration {
|
|
63
|
-
TopicArn?: string;
|
|
64
|
-
TopicStatus?: string;
|
|
63
|
+
TopicArn?: string | undefined;
|
|
64
|
+
TopicStatus?: string | undefined;
|
|
65
65
|
}
|
|
66
66
|
export interface ParameterGroupStatus {
|
|
67
|
-
ParameterGroupName?: string;
|
|
68
|
-
ParameterApplyStatus?: string;
|
|
69
|
-
NodeIdsToReboot?: string[];
|
|
67
|
+
ParameterGroupName?: string | undefined;
|
|
68
|
+
ParameterApplyStatus?: string | undefined;
|
|
69
|
+
NodeIdsToReboot?: string[] | undefined;
|
|
70
70
|
}
|
|
71
71
|
export interface SecurityGroupMembership {
|
|
72
|
-
SecurityGroupIdentifier?: string;
|
|
73
|
-
Status?: string;
|
|
72
|
+
SecurityGroupIdentifier?: string | undefined;
|
|
73
|
+
Status?: string | undefined;
|
|
74
74
|
}
|
|
75
75
|
export declare const SSEStatus: {
|
|
76
76
|
readonly DISABLED: "DISABLED";
|
|
@@ -80,30 +80,30 @@ export declare const SSEStatus: {
|
|
|
80
80
|
};
|
|
81
81
|
export type SSEStatus = (typeof SSEStatus)[keyof typeof SSEStatus];
|
|
82
82
|
export interface SSEDescription {
|
|
83
|
-
Status?: SSEStatus;
|
|
83
|
+
Status?: SSEStatus | undefined;
|
|
84
84
|
}
|
|
85
85
|
export interface Cluster {
|
|
86
|
-
ClusterName?: string;
|
|
87
|
-
Description?: string;
|
|
88
|
-
ClusterArn?: string;
|
|
89
|
-
TotalNodes?: number;
|
|
90
|
-
ActiveNodes?: number;
|
|
91
|
-
NodeType?: string;
|
|
92
|
-
Status?: string;
|
|
93
|
-
ClusterDiscoveryEndpoint?: Endpoint;
|
|
94
|
-
NodeIdsToRemove?: string[];
|
|
95
|
-
Nodes?: Node[];
|
|
96
|
-
PreferredMaintenanceWindow?: string;
|
|
97
|
-
NotificationConfiguration?: NotificationConfiguration;
|
|
98
|
-
SubnetGroup?: string;
|
|
99
|
-
SecurityGroups?: SecurityGroupMembership[];
|
|
100
|
-
IamRoleArn?: string;
|
|
101
|
-
ParameterGroup?: ParameterGroupStatus;
|
|
102
|
-
SSEDescription?: SSEDescription;
|
|
103
|
-
ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType;
|
|
86
|
+
ClusterName?: string | undefined;
|
|
87
|
+
Description?: string | undefined;
|
|
88
|
+
ClusterArn?: string | undefined;
|
|
89
|
+
TotalNodes?: number | undefined;
|
|
90
|
+
ActiveNodes?: number | undefined;
|
|
91
|
+
NodeType?: string | undefined;
|
|
92
|
+
Status?: string | undefined;
|
|
93
|
+
ClusterDiscoveryEndpoint?: Endpoint | undefined;
|
|
94
|
+
NodeIdsToRemove?: string[] | undefined;
|
|
95
|
+
Nodes?: Node[] | undefined;
|
|
96
|
+
PreferredMaintenanceWindow?: string | undefined;
|
|
97
|
+
NotificationConfiguration?: NotificationConfiguration | undefined;
|
|
98
|
+
SubnetGroup?: string | undefined;
|
|
99
|
+
SecurityGroups?: SecurityGroupMembership[] | undefined;
|
|
100
|
+
IamRoleArn?: string | undefined;
|
|
101
|
+
ParameterGroup?: ParameterGroupStatus | undefined;
|
|
102
|
+
SSEDescription?: SSEDescription | undefined;
|
|
103
|
+
ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType | undefined;
|
|
104
104
|
}
|
|
105
105
|
export interface CreateClusterResponse {
|
|
106
|
-
Cluster?: Cluster;
|
|
106
|
+
Cluster?: Cluster | undefined;
|
|
107
107
|
}
|
|
108
108
|
export declare class InsufficientClusterCapacityFault extends __BaseException {
|
|
109
109
|
readonly name: "InsufficientClusterCapacityFault";
|
|
@@ -213,14 +213,14 @@ export declare class TagQuotaPerResourceExceeded extends __BaseException {
|
|
|
213
213
|
}
|
|
214
214
|
export interface CreateParameterGroupRequest {
|
|
215
215
|
ParameterGroupName: string | undefined;
|
|
216
|
-
Description?: string;
|
|
216
|
+
Description?: string | undefined;
|
|
217
217
|
}
|
|
218
218
|
export interface ParameterGroup {
|
|
219
|
-
ParameterGroupName?: string;
|
|
220
|
-
Description?: string;
|
|
219
|
+
ParameterGroupName?: string | undefined;
|
|
220
|
+
Description?: string | undefined;
|
|
221
221
|
}
|
|
222
222
|
export interface CreateParameterGroupResponse {
|
|
223
|
-
ParameterGroup?: ParameterGroup;
|
|
223
|
+
ParameterGroup?: ParameterGroup | undefined;
|
|
224
224
|
}
|
|
225
225
|
export declare class ParameterGroupAlreadyExistsFault extends __BaseException {
|
|
226
226
|
readonly name: "ParameterGroupAlreadyExistsFault";
|
|
@@ -244,21 +244,21 @@ export declare class ParameterGroupQuotaExceededFault extends __BaseException {
|
|
|
244
244
|
}
|
|
245
245
|
export interface CreateSubnetGroupRequest {
|
|
246
246
|
SubnetGroupName: string | undefined;
|
|
247
|
-
Description?: string;
|
|
247
|
+
Description?: string | undefined;
|
|
248
248
|
SubnetIds: string[] | undefined;
|
|
249
249
|
}
|
|
250
250
|
export interface Subnet {
|
|
251
|
-
SubnetIdentifier?: string;
|
|
252
|
-
SubnetAvailabilityZone?: string;
|
|
251
|
+
SubnetIdentifier?: string | undefined;
|
|
252
|
+
SubnetAvailabilityZone?: string | undefined;
|
|
253
253
|
}
|
|
254
254
|
export interface SubnetGroup {
|
|
255
|
-
SubnetGroupName?: string;
|
|
256
|
-
Description?: string;
|
|
257
|
-
VpcId?: string;
|
|
258
|
-
Subnets?: Subnet[];
|
|
255
|
+
SubnetGroupName?: string | undefined;
|
|
256
|
+
Description?: string | undefined;
|
|
257
|
+
VpcId?: string | undefined;
|
|
258
|
+
Subnets?: Subnet[] | undefined;
|
|
259
259
|
}
|
|
260
260
|
export interface CreateSubnetGroupResponse {
|
|
261
|
-
SubnetGroup?: SubnetGroup;
|
|
261
|
+
SubnetGroup?: SubnetGroup | undefined;
|
|
262
262
|
}
|
|
263
263
|
export declare class InvalidSubnet extends __BaseException {
|
|
264
264
|
readonly name: "InvalidSubnet";
|
|
@@ -296,11 +296,11 @@ export declare class ClusterNotFoundFault extends __BaseException {
|
|
|
296
296
|
export interface DecreaseReplicationFactorRequest {
|
|
297
297
|
ClusterName: string | undefined;
|
|
298
298
|
NewReplicationFactor: number | undefined;
|
|
299
|
-
AvailabilityZones?: string[];
|
|
300
|
-
NodeIdsToRemove?: string[];
|
|
299
|
+
AvailabilityZones?: string[] | undefined;
|
|
300
|
+
NodeIdsToRemove?: string[] | undefined;
|
|
301
301
|
}
|
|
302
302
|
export interface DecreaseReplicationFactorResponse {
|
|
303
|
-
Cluster?: Cluster;
|
|
303
|
+
Cluster?: Cluster | undefined;
|
|
304
304
|
}
|
|
305
305
|
export declare class NodeNotFoundFault extends __BaseException {
|
|
306
306
|
readonly name: "NodeNotFoundFault";
|
|
@@ -311,19 +311,19 @@ export interface DeleteClusterRequest {
|
|
|
311
311
|
ClusterName: string | undefined;
|
|
312
312
|
}
|
|
313
313
|
export interface DeleteClusterResponse {
|
|
314
|
-
Cluster?: Cluster;
|
|
314
|
+
Cluster?: Cluster | undefined;
|
|
315
315
|
}
|
|
316
316
|
export interface DeleteParameterGroupRequest {
|
|
317
317
|
ParameterGroupName: string | undefined;
|
|
318
318
|
}
|
|
319
319
|
export interface DeleteParameterGroupResponse {
|
|
320
|
-
DeletionMessage?: string;
|
|
320
|
+
DeletionMessage?: string | undefined;
|
|
321
321
|
}
|
|
322
322
|
export interface DeleteSubnetGroupRequest {
|
|
323
323
|
SubnetGroupName: string | undefined;
|
|
324
324
|
}
|
|
325
325
|
export interface DeleteSubnetGroupResponse {
|
|
326
|
-
DeletionMessage?: string;
|
|
326
|
+
DeletionMessage?: string | undefined;
|
|
327
327
|
}
|
|
328
328
|
export declare class SubnetGroupInUseFault extends __BaseException {
|
|
329
329
|
readonly name: "SubnetGroupInUseFault";
|
|
@@ -333,17 +333,17 @@ export declare class SubnetGroupInUseFault extends __BaseException {
|
|
|
333
333
|
);
|
|
334
334
|
}
|
|
335
335
|
export interface DescribeClustersRequest {
|
|
336
|
-
ClusterNames?: string[];
|
|
337
|
-
MaxResults?: number;
|
|
338
|
-
NextToken?: string;
|
|
336
|
+
ClusterNames?: string[] | undefined;
|
|
337
|
+
MaxResults?: number | undefined;
|
|
338
|
+
NextToken?: string | undefined;
|
|
339
339
|
}
|
|
340
340
|
export interface DescribeClustersResponse {
|
|
341
|
-
NextToken?: string;
|
|
342
|
-
Clusters?: Cluster[];
|
|
341
|
+
NextToken?: string | undefined;
|
|
342
|
+
Clusters?: Cluster[] | undefined;
|
|
343
343
|
}
|
|
344
344
|
export interface DescribeDefaultParametersRequest {
|
|
345
|
-
MaxResults?: number;
|
|
346
|
-
NextToken?: string;
|
|
345
|
+
MaxResults?: number | undefined;
|
|
346
|
+
NextToken?: string | undefined;
|
|
347
347
|
}
|
|
348
348
|
export declare const ChangeType: {
|
|
349
349
|
readonly IMMEDIATE: "IMMEDIATE";
|
|
@@ -357,8 +357,8 @@ export declare const IsModifiable: {
|
|
|
357
357
|
};
|
|
358
358
|
export type IsModifiable = (typeof IsModifiable)[keyof typeof IsModifiable];
|
|
359
359
|
export interface NodeTypeSpecificValue {
|
|
360
|
-
NodeType?: string;
|
|
361
|
-
Value?: string;
|
|
360
|
+
NodeType?: string | undefined;
|
|
361
|
+
Value?: string | undefined;
|
|
362
362
|
}
|
|
363
363
|
export declare const ParameterType: {
|
|
364
364
|
readonly DEFAULT: "DEFAULT";
|
|
@@ -366,20 +366,20 @@ export declare const ParameterType: {
|
|
|
366
366
|
};
|
|
367
367
|
export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
|
|
368
368
|
export interface Parameter {
|
|
369
|
-
ParameterName?: string;
|
|
370
|
-
ParameterType?: ParameterType;
|
|
371
|
-
ParameterValue?: string;
|
|
372
|
-
NodeTypeSpecificValues?: NodeTypeSpecificValue[];
|
|
373
|
-
Description?: string;
|
|
374
|
-
Source?: string;
|
|
375
|
-
DataType?: string;
|
|
376
|
-
AllowedValues?: string;
|
|
377
|
-
IsModifiable?: IsModifiable;
|
|
378
|
-
ChangeType?: ChangeType;
|
|
369
|
+
ParameterName?: string | undefined;
|
|
370
|
+
ParameterType?: ParameterType | undefined;
|
|
371
|
+
ParameterValue?: string | undefined;
|
|
372
|
+
NodeTypeSpecificValues?: NodeTypeSpecificValue[] | undefined;
|
|
373
|
+
Description?: string | undefined;
|
|
374
|
+
Source?: string | undefined;
|
|
375
|
+
DataType?: string | undefined;
|
|
376
|
+
AllowedValues?: string | undefined;
|
|
377
|
+
IsModifiable?: IsModifiable | undefined;
|
|
378
|
+
ChangeType?: ChangeType | undefined;
|
|
379
379
|
}
|
|
380
380
|
export interface DescribeDefaultParametersResponse {
|
|
381
|
-
NextToken?: string;
|
|
382
|
-
Parameters?: Parameter[];
|
|
381
|
+
NextToken?: string | undefined;
|
|
382
|
+
Parameters?: Parameter[] | undefined;
|
|
383
383
|
}
|
|
384
384
|
export declare const SourceType: {
|
|
385
385
|
readonly CLUSTER: "CLUSTER";
|
|
@@ -388,59 +388,59 @@ export declare const SourceType: {
|
|
|
388
388
|
};
|
|
389
389
|
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
390
390
|
export interface DescribeEventsRequest {
|
|
391
|
-
SourceName?: string;
|
|
392
|
-
SourceType?: SourceType;
|
|
393
|
-
StartTime?: Date;
|
|
394
|
-
EndTime?: Date;
|
|
395
|
-
Duration?: number;
|
|
396
|
-
MaxResults?: number;
|
|
397
|
-
NextToken?: string;
|
|
391
|
+
SourceName?: string | undefined;
|
|
392
|
+
SourceType?: SourceType | undefined;
|
|
393
|
+
StartTime?: Date | undefined;
|
|
394
|
+
EndTime?: Date | undefined;
|
|
395
|
+
Duration?: number | undefined;
|
|
396
|
+
MaxResults?: number | undefined;
|
|
397
|
+
NextToken?: string | undefined;
|
|
398
398
|
}
|
|
399
399
|
export interface Event {
|
|
400
|
-
SourceName?: string;
|
|
401
|
-
SourceType?: SourceType;
|
|
402
|
-
Message?: string;
|
|
403
|
-
Date?: Date;
|
|
400
|
+
SourceName?: string | undefined;
|
|
401
|
+
SourceType?: SourceType | undefined;
|
|
402
|
+
Message?: string | undefined;
|
|
403
|
+
Date?: Date | undefined;
|
|
404
404
|
}
|
|
405
405
|
export interface DescribeEventsResponse {
|
|
406
|
-
NextToken?: string;
|
|
407
|
-
Events?: Event[];
|
|
406
|
+
NextToken?: string | undefined;
|
|
407
|
+
Events?: Event[] | undefined;
|
|
408
408
|
}
|
|
409
409
|
export interface DescribeParameterGroupsRequest {
|
|
410
|
-
ParameterGroupNames?: string[];
|
|
411
|
-
MaxResults?: number;
|
|
412
|
-
NextToken?: string;
|
|
410
|
+
ParameterGroupNames?: string[] | undefined;
|
|
411
|
+
MaxResults?: number | undefined;
|
|
412
|
+
NextToken?: string | undefined;
|
|
413
413
|
}
|
|
414
414
|
export interface DescribeParameterGroupsResponse {
|
|
415
|
-
NextToken?: string;
|
|
416
|
-
ParameterGroups?: ParameterGroup[];
|
|
415
|
+
NextToken?: string | undefined;
|
|
416
|
+
ParameterGroups?: ParameterGroup[] | undefined;
|
|
417
417
|
}
|
|
418
418
|
export interface DescribeParametersRequest {
|
|
419
419
|
ParameterGroupName: string | undefined;
|
|
420
|
-
Source?: string;
|
|
421
|
-
MaxResults?: number;
|
|
422
|
-
NextToken?: string;
|
|
420
|
+
Source?: string | undefined;
|
|
421
|
+
MaxResults?: number | undefined;
|
|
422
|
+
NextToken?: string | undefined;
|
|
423
423
|
}
|
|
424
424
|
export interface DescribeParametersResponse {
|
|
425
|
-
NextToken?: string;
|
|
426
|
-
Parameters?: Parameter[];
|
|
425
|
+
NextToken?: string | undefined;
|
|
426
|
+
Parameters?: Parameter[] | undefined;
|
|
427
427
|
}
|
|
428
428
|
export interface DescribeSubnetGroupsRequest {
|
|
429
|
-
SubnetGroupNames?: string[];
|
|
430
|
-
MaxResults?: number;
|
|
431
|
-
NextToken?: string;
|
|
429
|
+
SubnetGroupNames?: string[] | undefined;
|
|
430
|
+
MaxResults?: number | undefined;
|
|
431
|
+
NextToken?: string | undefined;
|
|
432
432
|
}
|
|
433
433
|
export interface DescribeSubnetGroupsResponse {
|
|
434
|
-
NextToken?: string;
|
|
435
|
-
SubnetGroups?: SubnetGroup[];
|
|
434
|
+
NextToken?: string | undefined;
|
|
435
|
+
SubnetGroups?: SubnetGroup[] | undefined;
|
|
436
436
|
}
|
|
437
437
|
export interface IncreaseReplicationFactorRequest {
|
|
438
438
|
ClusterName: string | undefined;
|
|
439
439
|
NewReplicationFactor: number | undefined;
|
|
440
|
-
AvailabilityZones?: string[];
|
|
440
|
+
AvailabilityZones?: string[] | undefined;
|
|
441
441
|
}
|
|
442
442
|
export interface IncreaseReplicationFactorResponse {
|
|
443
|
-
Cluster?: Cluster;
|
|
443
|
+
Cluster?: Cluster | undefined;
|
|
444
444
|
}
|
|
445
445
|
export declare class InvalidARNFault extends __BaseException {
|
|
446
446
|
readonly name: "InvalidARNFault";
|
|
@@ -449,25 +449,25 @@ export declare class InvalidARNFault extends __BaseException {
|
|
|
449
449
|
}
|
|
450
450
|
export interface ListTagsRequest {
|
|
451
451
|
ResourceName: string | undefined;
|
|
452
|
-
NextToken?: string;
|
|
452
|
+
NextToken?: string | undefined;
|
|
453
453
|
}
|
|
454
454
|
export interface ListTagsResponse {
|
|
455
|
-
Tags?: Tag[];
|
|
456
|
-
NextToken?: string;
|
|
455
|
+
Tags?: Tag[] | undefined;
|
|
456
|
+
NextToken?: string | undefined;
|
|
457
457
|
}
|
|
458
458
|
export interface RebootNodeRequest {
|
|
459
459
|
ClusterName: string | undefined;
|
|
460
460
|
NodeId: string | undefined;
|
|
461
461
|
}
|
|
462
462
|
export interface RebootNodeResponse {
|
|
463
|
-
Cluster?: Cluster;
|
|
463
|
+
Cluster?: Cluster | undefined;
|
|
464
464
|
}
|
|
465
465
|
export interface TagResourceRequest {
|
|
466
466
|
ResourceName: string | undefined;
|
|
467
467
|
Tags: Tag[] | undefined;
|
|
468
468
|
}
|
|
469
469
|
export interface TagResourceResponse {
|
|
470
|
-
Tags?: Tag[];
|
|
470
|
+
Tags?: Tag[] | undefined;
|
|
471
471
|
}
|
|
472
472
|
export declare class TagNotFoundFault extends __BaseException {
|
|
473
473
|
readonly name: "TagNotFoundFault";
|
|
@@ -479,30 +479,30 @@ export interface UntagResourceRequest {
|
|
|
479
479
|
TagKeys: string[] | undefined;
|
|
480
480
|
}
|
|
481
481
|
export interface UntagResourceResponse {
|
|
482
|
-
Tags?: Tag[];
|
|
482
|
+
Tags?: Tag[] | undefined;
|
|
483
483
|
}
|
|
484
484
|
export interface UpdateClusterRequest {
|
|
485
485
|
ClusterName: string | undefined;
|
|
486
|
-
Description?: string;
|
|
487
|
-
PreferredMaintenanceWindow?: string;
|
|
488
|
-
NotificationTopicArn?: string;
|
|
489
|
-
NotificationTopicStatus?: string;
|
|
490
|
-
ParameterGroupName?: string;
|
|
491
|
-
SecurityGroupIds?: string[];
|
|
486
|
+
Description?: string | undefined;
|
|
487
|
+
PreferredMaintenanceWindow?: string | undefined;
|
|
488
|
+
NotificationTopicArn?: string | undefined;
|
|
489
|
+
NotificationTopicStatus?: string | undefined;
|
|
490
|
+
ParameterGroupName?: string | undefined;
|
|
491
|
+
SecurityGroupIds?: string[] | undefined;
|
|
492
492
|
}
|
|
493
493
|
export interface UpdateClusterResponse {
|
|
494
|
-
Cluster?: Cluster;
|
|
494
|
+
Cluster?: Cluster | undefined;
|
|
495
495
|
}
|
|
496
496
|
export interface ParameterNameValue {
|
|
497
|
-
ParameterName?: string;
|
|
498
|
-
ParameterValue?: string;
|
|
497
|
+
ParameterName?: string | undefined;
|
|
498
|
+
ParameterValue?: string | undefined;
|
|
499
499
|
}
|
|
500
500
|
export interface UpdateParameterGroupRequest {
|
|
501
501
|
ParameterGroupName: string | undefined;
|
|
502
502
|
ParameterNameValues: ParameterNameValue[] | undefined;
|
|
503
503
|
}
|
|
504
504
|
export interface UpdateParameterGroupResponse {
|
|
505
|
-
ParameterGroup?: ParameterGroup;
|
|
505
|
+
ParameterGroup?: ParameterGroup | undefined;
|
|
506
506
|
}
|
|
507
507
|
export declare class SubnetInUse extends __BaseException {
|
|
508
508
|
readonly name: "SubnetInUse";
|
|
@@ -511,9 +511,9 @@ export declare class SubnetInUse extends __BaseException {
|
|
|
511
511
|
}
|
|
512
512
|
export interface UpdateSubnetGroupRequest {
|
|
513
513
|
SubnetGroupName: string | undefined;
|
|
514
|
-
Description?: string;
|
|
515
|
-
SubnetIds?: string[];
|
|
514
|
+
Description?: string | undefined;
|
|
515
|
+
SubnetIds?: string[] | undefined;
|
|
516
516
|
}
|
|
517
517
|
export interface UpdateSubnetGroupResponse {
|
|
518
|
-
SubnetGroup?: SubnetGroup;
|
|
518
|
+
SubnetGroup?: SubnetGroup | undefined;
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dax",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dax Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
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-dax",
|
|
@@ -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.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
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.
|
|
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.
|
|
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",
|