@aws-sdk/client-dax 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.
@@ -64,12 +64,12 @@ export interface Tag {
64
64
  * existing tag value will be updated to the new value.</p>
65
65
  * @public
66
66
  */
67
- Key?: string;
67
+ Key?: string | undefined;
68
68
  /**
69
69
  * <p>The value of the tag. Tag values are case-sensitive and can be null. </p>
70
70
  * @public
71
71
  */
72
- Value?: string;
72
+ Value?: string | undefined;
73
73
  }
74
74
  /**
75
75
  * @public
@@ -106,7 +106,7 @@ export interface CreateClusterRequest {
106
106
  * <p>A description of the cluster.</p>
107
107
  * @public
108
108
  */
109
- Description?: string;
109
+ Description?: string | undefined;
110
110
  /**
111
111
  * <p>The number of nodes in the DAX cluster. A replication factor of 1 will
112
112
  * create a single-node cluster, without any read replicas. For additional fault tolerance,
@@ -125,7 +125,7 @@ export interface CreateClusterRequest {
125
125
  * If you omit this parameter, DAX will spread the nodes across Availability Zones for the highest availability.</p>
126
126
  * @public
127
127
  */
128
- AvailabilityZones?: string[];
128
+ AvailabilityZones?: string[] | undefined;
129
129
  /**
130
130
  * <p>The name of the subnet group to be used for the replication group.</p>
131
131
  * <important>
@@ -134,7 +134,7 @@ export interface CreateClusterRequest {
134
134
  * </important>
135
135
  * @public
136
136
  */
137
- SubnetGroupName?: string;
137
+ SubnetGroupName?: string | undefined;
138
138
  /**
139
139
  * <p>A list of security group IDs to be assigned to each node in the DAX cluster. (Each of the
140
140
  * security group ID is system-generated.)</p>
@@ -142,7 +142,7 @@ export interface CreateClusterRequest {
142
142
  * each node.</p>
143
143
  * @public
144
144
  */
145
- SecurityGroupIds?: string[];
145
+ SecurityGroupIds?: string[] | undefined;
146
146
  /**
147
147
  * <p>Specifies the weekly time range during which maintenance on the DAX cluster is
148
148
  * performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock
@@ -194,7 +194,7 @@ export interface CreateClusterRequest {
194
194
  * </note>
195
195
  * @public
196
196
  */
197
- PreferredMaintenanceWindow?: string;
197
+ PreferredMaintenanceWindow?: string | undefined;
198
198
  /**
199
199
  * <p>The Amazon Resource Name (ARN) of the Amazon SNS topic to which notifications will
200
200
  * be sent.</p>
@@ -203,7 +203,7 @@ export interface CreateClusterRequest {
203
203
  * </note>
204
204
  * @public
205
205
  */
206
- NotificationTopicArn?: string;
206
+ NotificationTopicArn?: string | undefined;
207
207
  /**
208
208
  * <p>A valid Amazon Resource Name (ARN) that identifies an IAM role. At runtime, DAX
209
209
  * will assume this role and use the role's permissions to access DynamoDB on your
@@ -215,17 +215,17 @@ export interface CreateClusterRequest {
215
215
  * <p>The parameter group to be associated with the DAX cluster.</p>
216
216
  * @public
217
217
  */
218
- ParameterGroupName?: string;
218
+ ParameterGroupName?: string | undefined;
219
219
  /**
220
220
  * <p>A set of tags to associate with the DAX cluster. </p>
221
221
  * @public
222
222
  */
223
- Tags?: Tag[];
223
+ Tags?: Tag[] | undefined;
224
224
  /**
225
225
  * <p>Represents the settings used to enable server-side encryption on the cluster.</p>
226
226
  * @public
227
227
  */
228
- SSESpecification?: SSESpecification;
228
+ SSESpecification?: SSESpecification | undefined;
229
229
  /**
230
230
  * <p>The type of encryption the cluster's endpoint should support. Values are:</p>
231
231
  * <ul>
@@ -240,7 +240,7 @@ export interface CreateClusterRequest {
240
240
  * </ul>
241
241
  * @public
242
242
  */
243
- ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType;
243
+ ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType | undefined;
244
244
  }
245
245
  /**
246
246
  * <p>Represents the information required for client programs to connect to the
@@ -252,18 +252,18 @@ export interface Endpoint {
252
252
  * <p>The DNS hostname of the endpoint.</p>
253
253
  * @public
254
254
  */
255
- Address?: string;
255
+ Address?: string | undefined;
256
256
  /**
257
257
  * <p>The port number that applications should use to connect to the endpoint.</p>
258
258
  * @public
259
259
  */
260
- Port?: number;
260
+ Port?: number | undefined;
261
261
  /**
262
262
  * <p>The URL that applications should use to connect to the endpoint. The default
263
263
  * ports are 8111 for the "dax" protocol and 9111 for the "daxs" protocol.</p>
264
264
  * @public
265
265
  */
266
- URL?: string;
266
+ URL?: string | undefined;
267
267
  }
268
268
  /**
269
269
  * <p>Represents an individual node within a DAX cluster.</p>
@@ -274,7 +274,7 @@ export interface Node {
274
274
  * <p>A system-generated identifier for the node.</p>
275
275
  * @public
276
276
  */
277
- NodeId?: string;
277
+ NodeId?: string | undefined;
278
278
  /**
279
279
  * <p>The endpoint for the node, consisting of a DNS name and a port number. Client
280
280
  * applications can connect directly to a node endpoint, if desired (as an alternative to
@@ -282,28 +282,28 @@ export interface Node {
282
282
  * the DAX cluster.</p>
283
283
  * @public
284
284
  */
285
- Endpoint?: Endpoint;
285
+ Endpoint?: Endpoint | undefined;
286
286
  /**
287
287
  * <p>The date and time (in UNIX epoch format) when the node was launched.</p>
288
288
  * @public
289
289
  */
290
- NodeCreateTime?: Date;
290
+ NodeCreateTime?: Date | undefined;
291
291
  /**
292
292
  * <p>The Availability Zone (AZ) in which the node has been deployed.</p>
293
293
  * @public
294
294
  */
295
- AvailabilityZone?: string;
295
+ AvailabilityZone?: string | undefined;
296
296
  /**
297
297
  * <p>The current status of the node. For example: <code>available</code>.</p>
298
298
  * @public
299
299
  */
300
- NodeStatus?: string;
300
+ NodeStatus?: string | undefined;
301
301
  /**
302
302
  * <p>The status of the parameter group associated with this node. For example,
303
303
  * <code>in-sync</code>.</p>
304
304
  * @public
305
305
  */
306
- ParameterGroupStatus?: string;
306
+ ParameterGroupStatus?: string | undefined;
307
307
  }
308
308
  /**
309
309
  * <p>Describes a notification topic and its status. Notification topics are used for
@@ -316,14 +316,14 @@ export interface NotificationConfiguration {
316
316
  * <p>The Amazon Resource Name (ARN) that identifies the topic. </p>
317
317
  * @public
318
318
  */
319
- TopicArn?: string;
319
+ TopicArn?: string | undefined;
320
320
  /**
321
321
  * <p>The current state of the topic. A value of “active” means that notifications will
322
322
  * be sent to the topic. A value of “inactive” means that notifications will not be sent to the
323
323
  * topic.</p>
324
324
  * @public
325
325
  */
326
- TopicStatus?: string;
326
+ TopicStatus?: string | undefined;
327
327
  }
328
328
  /**
329
329
  * <p>The status of a parameter group.</p>
@@ -334,17 +334,17 @@ export interface ParameterGroupStatus {
334
334
  * <p>The name of the parameter group.</p>
335
335
  * @public
336
336
  */
337
- ParameterGroupName?: string;
337
+ ParameterGroupName?: string | undefined;
338
338
  /**
339
339
  * <p>The status of parameter updates. </p>
340
340
  * @public
341
341
  */
342
- ParameterApplyStatus?: string;
342
+ ParameterApplyStatus?: string | undefined;
343
343
  /**
344
344
  * <p>The node IDs of one or more nodes to be rebooted.</p>
345
345
  * @public
346
346
  */
347
- NodeIdsToReboot?: string[];
347
+ NodeIdsToReboot?: string[] | undefined;
348
348
  }
349
349
  /**
350
350
  * <p>An individual VPC security group and its status.</p>
@@ -355,12 +355,12 @@ export interface SecurityGroupMembership {
355
355
  * <p>The unique ID for this security group.</p>
356
356
  * @public
357
357
  */
358
- SecurityGroupIdentifier?: string;
358
+ SecurityGroupIdentifier?: string | undefined;
359
359
  /**
360
360
  * <p>The status of this security group.</p>
361
361
  * @public
362
362
  */
363
- Status?: string;
363
+ Status?: string | undefined;
364
364
  }
365
365
  /**
366
366
  * @public
@@ -403,7 +403,7 @@ export interface SSEDescription {
403
403
  * </ul>
404
404
  * @public
405
405
  */
406
- Status?: SSEStatus;
406
+ Status?: SSEStatus | undefined;
407
407
  }
408
408
  /**
409
409
  * <p>Contains all of the attributes of a specific DAX cluster.</p>
@@ -414,98 +414,98 @@ export interface Cluster {
414
414
  * <p>The name of the DAX cluster.</p>
415
415
  * @public
416
416
  */
417
- ClusterName?: string;
417
+ ClusterName?: string | undefined;
418
418
  /**
419
419
  * <p>The description of the cluster.</p>
420
420
  * @public
421
421
  */
422
- Description?: string;
422
+ Description?: string | undefined;
423
423
  /**
424
424
  * <p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.
425
425
  * </p>
426
426
  * @public
427
427
  */
428
- ClusterArn?: string;
428
+ ClusterArn?: string | undefined;
429
429
  /**
430
430
  * <p>The total number of nodes in the cluster.</p>
431
431
  * @public
432
432
  */
433
- TotalNodes?: number;
433
+ TotalNodes?: number | undefined;
434
434
  /**
435
435
  * <p>The number of nodes in the cluster that are active (i.e., capable of serving
436
436
  * requests).</p>
437
437
  * @public
438
438
  */
439
- ActiveNodes?: number;
439
+ ActiveNodes?: number | undefined;
440
440
  /**
441
441
  * <p>The node type for the nodes in the cluster. (All nodes in a DAX cluster are of
442
442
  * the same type.)</p>
443
443
  * @public
444
444
  */
445
- NodeType?: string;
445
+ NodeType?: string | undefined;
446
446
  /**
447
447
  * <p>The current status of the cluster.</p>
448
448
  * @public
449
449
  */
450
- Status?: string;
450
+ Status?: string | undefined;
451
451
  /**
452
452
  * <p>The endpoint for this DAX cluster, consisting of a DNS name, a port number,
453
453
  * and a URL. Applications should use the URL to configure the DAX client to find
454
454
  * their cluster.</p>
455
455
  * @public
456
456
  */
457
- ClusterDiscoveryEndpoint?: Endpoint;
457
+ ClusterDiscoveryEndpoint?: Endpoint | undefined;
458
458
  /**
459
459
  * <p>A list of nodes to be removed from the cluster.</p>
460
460
  * @public
461
461
  */
462
- NodeIdsToRemove?: string[];
462
+ NodeIdsToRemove?: string[] | undefined;
463
463
  /**
464
464
  * <p>A list of nodes that are currently in the cluster.</p>
465
465
  * @public
466
466
  */
467
- Nodes?: Node[];
467
+ Nodes?: Node[] | undefined;
468
468
  /**
469
469
  * <p>A range of time when maintenance of DAX cluster software will be performed. For
470
470
  * example: <code>sun:01:00-sun:09:00</code>. Cluster maintenance normally takes less than
471
471
  * 30 minutes, and is performed automatically within the maintenance window.</p>
472
472
  * @public
473
473
  */
474
- PreferredMaintenanceWindow?: string;
474
+ PreferredMaintenanceWindow?: string | undefined;
475
475
  /**
476
476
  * <p>Describes a notification topic and its status. Notification topics are used for
477
477
  * publishing DAX events to subscribers using Amazon Simple Notification Service
478
478
  * (SNS).</p>
479
479
  * @public
480
480
  */
481
- NotificationConfiguration?: NotificationConfiguration;
481
+ NotificationConfiguration?: NotificationConfiguration | undefined;
482
482
  /**
483
483
  * <p>The subnet group where the DAX cluster is running.</p>
484
484
  * @public
485
485
  */
486
- SubnetGroup?: string;
486
+ SubnetGroup?: string | undefined;
487
487
  /**
488
488
  * <p>A list of security groups, and the status of each, for the nodes in the cluster.</p>
489
489
  * @public
490
490
  */
491
- SecurityGroups?: SecurityGroupMembership[];
491
+ SecurityGroups?: SecurityGroupMembership[] | undefined;
492
492
  /**
493
493
  * <p>A valid Amazon Resource Name (ARN) that identifies an IAM role. At runtime, DAX
494
494
  * will assume this role and use the role's permissions to access DynamoDB on your
495
495
  * behalf.</p>
496
496
  * @public
497
497
  */
498
- IamRoleArn?: string;
498
+ IamRoleArn?: string | undefined;
499
499
  /**
500
500
  * <p>The parameter group being used by nodes in the cluster.</p>
501
501
  * @public
502
502
  */
503
- ParameterGroup?: ParameterGroupStatus;
503
+ ParameterGroup?: ParameterGroupStatus | undefined;
504
504
  /**
505
505
  * <p>The description of the server-side encryption status on the specified DAX cluster.</p>
506
506
  * @public
507
507
  */
508
- SSEDescription?: SSEDescription;
508
+ SSEDescription?: SSEDescription | undefined;
509
509
  /**
510
510
  * <p>The type of encryption supported by the cluster's endpoint. Values are:</p>
511
511
  * <ul>
@@ -518,7 +518,7 @@ export interface Cluster {
518
518
  * </ul>
519
519
  * @public
520
520
  */
521
- ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType;
521
+ ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType | undefined;
522
522
  }
523
523
  /**
524
524
  * @public
@@ -528,7 +528,7 @@ export interface CreateClusterResponse {
528
528
  * <p>A description of the DAX cluster that you have created.</p>
529
529
  * @public
530
530
  */
531
- Cluster?: Cluster;
531
+ Cluster?: Cluster | undefined;
532
532
  }
533
533
  /**
534
534
  * <p>There are not enough system resources to create the cluster you requested (or to
@@ -707,7 +707,7 @@ export interface CreateParameterGroupRequest {
707
707
  * <p>A description of the parameter group.</p>
708
708
  * @public
709
709
  */
710
- Description?: string;
710
+ Description?: string | undefined;
711
711
  }
712
712
  /**
713
713
  * <p>A named set of parameters that are applied to all of the nodes in a DAX
@@ -719,12 +719,12 @@ export interface ParameterGroup {
719
719
  * <p>The name of the parameter group.</p>
720
720
  * @public
721
721
  */
722
- ParameterGroupName?: string;
722
+ ParameterGroupName?: string | undefined;
723
723
  /**
724
724
  * <p>A description of the parameter group.</p>
725
725
  * @public
726
726
  */
727
- Description?: string;
727
+ Description?: string | undefined;
728
728
  }
729
729
  /**
730
730
  * @public
@@ -735,7 +735,7 @@ export interface CreateParameterGroupResponse {
735
735
  * action.</p>
736
736
  * @public
737
737
  */
738
- ParameterGroup?: ParameterGroup;
738
+ ParameterGroup?: ParameterGroup | undefined;
739
739
  }
740
740
  /**
741
741
  * <p>The specified parameter group already exists.</p>
@@ -774,7 +774,7 @@ export interface CreateSubnetGroupRequest {
774
774
  * <p>A description for the subnet group</p>
775
775
  * @public
776
776
  */
777
- Description?: string;
777
+ Description?: string | undefined;
778
778
  /**
779
779
  * <p>A list of VPC subnet IDs for the subnet group.</p>
780
780
  * @public
@@ -792,12 +792,12 @@ export interface Subnet {
792
792
  * <p>The system-assigned identifier for the subnet.</p>
793
793
  * @public
794
794
  */
795
- SubnetIdentifier?: string;
795
+ SubnetIdentifier?: string | undefined;
796
796
  /**
797
797
  * <p>The Availability Zone (AZ) for the subnet.</p>
798
798
  * @public
799
799
  */
800
- SubnetAvailabilityZone?: string;
800
+ SubnetAvailabilityZone?: string | undefined;
801
801
  }
802
802
  /**
803
803
  * <p>Represents the output of one of the following actions:</p>
@@ -820,22 +820,22 @@ export interface SubnetGroup {
820
820
  * <p>The name of the subnet group.</p>
821
821
  * @public
822
822
  */
823
- SubnetGroupName?: string;
823
+ SubnetGroupName?: string | undefined;
824
824
  /**
825
825
  * <p>The description of the subnet group.</p>
826
826
  * @public
827
827
  */
828
- Description?: string;
828
+ Description?: string | undefined;
829
829
  /**
830
830
  * <p>The Amazon Virtual Private Cloud identifier (VPC ID) of the subnet group.</p>
831
831
  * @public
832
832
  */
833
- VpcId?: string;
833
+ VpcId?: string | undefined;
834
834
  /**
835
835
  * <p>A list of subnets associated with the subnet group. </p>
836
836
  * @public
837
837
  */
838
- Subnets?: Subnet[];
838
+ Subnets?: Subnet[] | undefined;
839
839
  }
840
840
  /**
841
841
  * @public
@@ -846,7 +846,7 @@ export interface CreateSubnetGroupResponse {
846
846
  * operation.</p>
847
847
  * @public
848
848
  */
849
- SubnetGroup?: SubnetGroup;
849
+ SubnetGroup?: SubnetGroup | undefined;
850
850
  }
851
851
  /**
852
852
  * <p>An invalid subnet identifier was specified.</p>
@@ -928,12 +928,12 @@ export interface DecreaseReplicationFactorRequest {
928
928
  * <p>The Availability Zone(s) from which to remove nodes.</p>
929
929
  * @public
930
930
  */
931
- AvailabilityZones?: string[];
931
+ AvailabilityZones?: string[] | undefined;
932
932
  /**
933
933
  * <p>The unique identifiers of the nodes to be removed from the cluster.</p>
934
934
  * @public
935
935
  */
936
- NodeIdsToRemove?: string[];
936
+ NodeIdsToRemove?: string[] | undefined;
937
937
  }
938
938
  /**
939
939
  * @public
@@ -944,7 +944,7 @@ export interface DecreaseReplicationFactorResponse {
944
944
  * factor.</p>
945
945
  * @public
946
946
  */
947
- Cluster?: Cluster;
947
+ Cluster?: Cluster | undefined;
948
948
  }
949
949
  /**
950
950
  * <p>None of the nodes in the cluster have the given node ID.</p>
@@ -976,7 +976,7 @@ export interface DeleteClusterResponse {
976
976
  * <p>A description of the DAX cluster that is being deleted.</p>
977
977
  * @public
978
978
  */
979
- Cluster?: Cluster;
979
+ Cluster?: Cluster | undefined;
980
980
  }
981
981
  /**
982
982
  * @public
@@ -997,7 +997,7 @@ export interface DeleteParameterGroupResponse {
997
997
  * group).</p>
998
998
  * @public
999
999
  */
1000
- DeletionMessage?: string;
1000
+ DeletionMessage?: string | undefined;
1001
1001
  }
1002
1002
  /**
1003
1003
  * @public
@@ -1018,7 +1018,7 @@ export interface DeleteSubnetGroupResponse {
1018
1018
  * group).</p>
1019
1019
  * @public
1020
1020
  */
1021
- DeletionMessage?: string;
1021
+ DeletionMessage?: string | undefined;
1022
1022
  }
1023
1023
  /**
1024
1024
  * <p>The specified subnet group is currently in use.</p>
@@ -1040,7 +1040,7 @@ export interface DescribeClustersRequest {
1040
1040
  * <p>The names of the DAX clusters being described.</p>
1041
1041
  * @public
1042
1042
  */
1043
- ClusterNames?: string[];
1043
+ ClusterNames?: string[] | undefined;
1044
1044
  /**
1045
1045
  * <p>The maximum number of results to include in the response. If more results exist
1046
1046
  * than the specified <code>MaxResults</code> value, a token is included in the response so
@@ -1048,7 +1048,7 @@ export interface DescribeClustersRequest {
1048
1048
  * <p>The value for <code>MaxResults</code> must be between 20 and 100.</p>
1049
1049
  * @public
1050
1050
  */
1051
- MaxResults?: number;
1051
+ MaxResults?: number | undefined;
1052
1052
  /**
1053
1053
  * <p>An optional token returned from a prior request. Use this token for pagination of
1054
1054
  * results from this action. If this parameter is specified, the response includes only
@@ -1056,7 +1056,7 @@ export interface DescribeClustersRequest {
1056
1056
  * <code>MaxResults</code>.</p>
1057
1057
  * @public
1058
1058
  */
1059
- NextToken?: string;
1059
+ NextToken?: string | undefined;
1060
1060
  }
1061
1061
  /**
1062
1062
  * @public
@@ -1066,13 +1066,13 @@ export interface DescribeClustersResponse {
1066
1066
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
1067
1067
  * @public
1068
1068
  */
1069
- NextToken?: string;
1069
+ NextToken?: string | undefined;
1070
1070
  /**
1071
1071
  * <p>The descriptions of your DAX clusters, in response to a
1072
1072
  * <i>DescribeClusters</i> request.</p>
1073
1073
  * @public
1074
1074
  */
1075
- Clusters?: Cluster[];
1075
+ Clusters?: Cluster[] | undefined;
1076
1076
  }
1077
1077
  /**
1078
1078
  * @public
@@ -1085,7 +1085,7 @@ export interface DescribeDefaultParametersRequest {
1085
1085
  * <p>The value for <code>MaxResults</code> must be between 20 and 100.</p>
1086
1086
  * @public
1087
1087
  */
1088
- MaxResults?: number;
1088
+ MaxResults?: number | undefined;
1089
1089
  /**
1090
1090
  * <p>An optional token returned from a prior request. Use this token for pagination of
1091
1091
  * results from this action. If this parameter is specified, the response includes only
@@ -1093,7 +1093,7 @@ export interface DescribeDefaultParametersRequest {
1093
1093
  * <code>MaxResults</code>.</p>
1094
1094
  * @public
1095
1095
  */
1096
- NextToken?: string;
1096
+ NextToken?: string | undefined;
1097
1097
  }
1098
1098
  /**
1099
1099
  * @public
@@ -1130,12 +1130,12 @@ export interface NodeTypeSpecificValue {
1130
1130
  * <p>A node type to which the parameter value applies.</p>
1131
1131
  * @public
1132
1132
  */
1133
- NodeType?: string;
1133
+ NodeType?: string | undefined;
1134
1134
  /**
1135
1135
  * <p>The parameter value for this node type.</p>
1136
1136
  * @public
1137
1137
  */
1138
- Value?: string;
1138
+ Value?: string | undefined;
1139
1139
  }
1140
1140
  /**
1141
1141
  * @public
@@ -1159,56 +1159,56 @@ export interface Parameter {
1159
1159
  * <p>The name of the parameter.</p>
1160
1160
  * @public
1161
1161
  */
1162
- ParameterName?: string;
1162
+ ParameterName?: string | undefined;
1163
1163
  /**
1164
1164
  * <p>Determines whether the parameter can be applied to any nodes, or only nodes of a
1165
1165
  * particular type.</p>
1166
1166
  * @public
1167
1167
  */
1168
- ParameterType?: ParameterType;
1168
+ ParameterType?: ParameterType | undefined;
1169
1169
  /**
1170
1170
  * <p>The value for the parameter.</p>
1171
1171
  * @public
1172
1172
  */
1173
- ParameterValue?: string;
1173
+ ParameterValue?: string | undefined;
1174
1174
  /**
1175
1175
  * <p>A list of node types, and specific parameter values for each node.</p>
1176
1176
  * @public
1177
1177
  */
1178
- NodeTypeSpecificValues?: NodeTypeSpecificValue[];
1178
+ NodeTypeSpecificValues?: NodeTypeSpecificValue[] | undefined;
1179
1179
  /**
1180
1180
  * <p>A description of the parameter</p>
1181
1181
  * @public
1182
1182
  */
1183
- Description?: string;
1183
+ Description?: string | undefined;
1184
1184
  /**
1185
1185
  * <p>How the parameter is defined. For example, <code>system</code> denotes a
1186
1186
  * system-defined parameter.</p>
1187
1187
  * @public
1188
1188
  */
1189
- Source?: string;
1189
+ Source?: string | undefined;
1190
1190
  /**
1191
1191
  * <p>The data type of the parameter. For example, <code>integer</code>:</p>
1192
1192
  * @public
1193
1193
  */
1194
- DataType?: string;
1194
+ DataType?: string | undefined;
1195
1195
  /**
1196
1196
  * <p>A range of values within which the parameter can be set.</p>
1197
1197
  * @public
1198
1198
  */
1199
- AllowedValues?: string;
1199
+ AllowedValues?: string | undefined;
1200
1200
  /**
1201
1201
  * <p>Whether the customer is allowed to modify the parameter.</p>
1202
1202
  * @public
1203
1203
  */
1204
- IsModifiable?: IsModifiable;
1204
+ IsModifiable?: IsModifiable | undefined;
1205
1205
  /**
1206
1206
  * <p>The conditions under which changes to this parameter can be applied. For example,
1207
1207
  * <code>requires-reboot</code> indicates that a new value for this parameter will only
1208
1208
  * take effect if a node is rebooted.</p>
1209
1209
  * @public
1210
1210
  */
1211
- ChangeType?: ChangeType;
1211
+ ChangeType?: ChangeType | undefined;
1212
1212
  }
1213
1213
  /**
1214
1214
  * @public
@@ -1218,12 +1218,12 @@ export interface DescribeDefaultParametersResponse {
1218
1218
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
1219
1219
  * @public
1220
1220
  */
1221
- NextToken?: string;
1221
+ NextToken?: string | undefined;
1222
1222
  /**
1223
1223
  * <p>A list of parameters. Each element in the list represents one parameter.</p>
1224
1224
  * @public
1225
1225
  */
1226
- Parameters?: Parameter[];
1226
+ Parameters?: Parameter[] | undefined;
1227
1227
  }
1228
1228
  /**
1229
1229
  * @public
@@ -1247,30 +1247,30 @@ export interface DescribeEventsRequest {
1247
1247
  * specified, then all sources are included in the response.</p>
1248
1248
  * @public
1249
1249
  */
1250
- SourceName?: string;
1250
+ SourceName?: string | undefined;
1251
1251
  /**
1252
1252
  * <p>The event source to retrieve events for. If no value is specified, all events are
1253
1253
  * returned.</p>
1254
1254
  * @public
1255
1255
  */
1256
- SourceType?: SourceType;
1256
+ SourceType?: SourceType | undefined;
1257
1257
  /**
1258
1258
  * <p>The beginning of the time interval to retrieve events for, specified in ISO 8601
1259
1259
  * format.</p>
1260
1260
  * @public
1261
1261
  */
1262
- StartTime?: Date;
1262
+ StartTime?: Date | undefined;
1263
1263
  /**
1264
1264
  * <p>The end of the time interval for which to retrieve events, specified in ISO 8601
1265
1265
  * format.</p>
1266
1266
  * @public
1267
1267
  */
1268
- EndTime?: Date;
1268
+ EndTime?: Date | undefined;
1269
1269
  /**
1270
1270
  * <p>The number of minutes' worth of events to retrieve.</p>
1271
1271
  * @public
1272
1272
  */
1273
- Duration?: number;
1273
+ Duration?: number | undefined;
1274
1274
  /**
1275
1275
  * <p>The maximum number of results to include in the response. If more results exist
1276
1276
  * than the specified <code>MaxResults</code> value, a token is included in the response so
@@ -1278,7 +1278,7 @@ export interface DescribeEventsRequest {
1278
1278
  * <p>The value for <code>MaxResults</code> must be between 20 and 100.</p>
1279
1279
  * @public
1280
1280
  */
1281
- MaxResults?: number;
1281
+ MaxResults?: number | undefined;
1282
1282
  /**
1283
1283
  * <p>An optional token returned from a prior request. Use this token for pagination of
1284
1284
  * results from this action. If this parameter is specified, the response includes only
@@ -1286,7 +1286,7 @@ export interface DescribeEventsRequest {
1286
1286
  * <code>MaxResults</code>.</p>
1287
1287
  * @public
1288
1288
  */
1289
- NextToken?: string;
1289
+ NextToken?: string | undefined;
1290
1290
  }
1291
1291
  /**
1292
1292
  * <p>Represents a single occurrence of something interesting within the system. Some
@@ -1300,23 +1300,23 @@ export interface Event {
1300
1300
  * source would be the node ID.</p>
1301
1301
  * @public
1302
1302
  */
1303
- SourceName?: string;
1303
+ SourceName?: string | undefined;
1304
1304
  /**
1305
1305
  * <p>Specifies the origin of this event - a cluster, a parameter group, a node ID,
1306
1306
  * etc.</p>
1307
1307
  * @public
1308
1308
  */
1309
- SourceType?: SourceType;
1309
+ SourceType?: SourceType | undefined;
1310
1310
  /**
1311
1311
  * <p>A user-defined message associated with the event.</p>
1312
1312
  * @public
1313
1313
  */
1314
- Message?: string;
1314
+ Message?: string | undefined;
1315
1315
  /**
1316
1316
  * <p>The date and time when the event occurred.</p>
1317
1317
  * @public
1318
1318
  */
1319
- Date?: Date;
1319
+ Date?: Date | undefined;
1320
1320
  }
1321
1321
  /**
1322
1322
  * @public
@@ -1326,12 +1326,12 @@ export interface DescribeEventsResponse {
1326
1326
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
1327
1327
  * @public
1328
1328
  */
1329
- NextToken?: string;
1329
+ NextToken?: string | undefined;
1330
1330
  /**
1331
1331
  * <p>An array of events. Each element in the array represents one event.</p>
1332
1332
  * @public
1333
1333
  */
1334
- Events?: Event[];
1334
+ Events?: Event[] | undefined;
1335
1335
  }
1336
1336
  /**
1337
1337
  * @public
@@ -1341,7 +1341,7 @@ export interface DescribeParameterGroupsRequest {
1341
1341
  * <p>The names of the parameter groups.</p>
1342
1342
  * @public
1343
1343
  */
1344
- ParameterGroupNames?: string[];
1344
+ ParameterGroupNames?: string[] | undefined;
1345
1345
  /**
1346
1346
  * <p>The maximum number of results to include in the response. If more results exist
1347
1347
  * than the specified <code>MaxResults</code> value, a token is included in the response so
@@ -1349,7 +1349,7 @@ export interface DescribeParameterGroupsRequest {
1349
1349
  * <p>The value for <code>MaxResults</code> must be between 20 and 100.</p>
1350
1350
  * @public
1351
1351
  */
1352
- MaxResults?: number;
1352
+ MaxResults?: number | undefined;
1353
1353
  /**
1354
1354
  * <p>An optional token returned from a prior request. Use this token for pagination of
1355
1355
  * results from this action. If this parameter is specified, the response includes only
@@ -1357,7 +1357,7 @@ export interface DescribeParameterGroupsRequest {
1357
1357
  * <code>MaxResults</code>.</p>
1358
1358
  * @public
1359
1359
  */
1360
- NextToken?: string;
1360
+ NextToken?: string | undefined;
1361
1361
  }
1362
1362
  /**
1363
1363
  * @public
@@ -1367,12 +1367,12 @@ export interface DescribeParameterGroupsResponse {
1367
1367
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
1368
1368
  * @public
1369
1369
  */
1370
- NextToken?: string;
1370
+ NextToken?: string | undefined;
1371
1371
  /**
1372
1372
  * <p>An array of parameter groups. Each element in the array represents one parameter group.</p>
1373
1373
  * @public
1374
1374
  */
1375
- ParameterGroups?: ParameterGroup[];
1375
+ ParameterGroups?: ParameterGroup[] | undefined;
1376
1376
  }
1377
1377
  /**
1378
1378
  * @public
@@ -1388,7 +1388,7 @@ export interface DescribeParametersRequest {
1388
1388
  * system-defined parameter.</p>
1389
1389
  * @public
1390
1390
  */
1391
- Source?: string;
1391
+ Source?: string | undefined;
1392
1392
  /**
1393
1393
  * <p>The maximum number of results to include in the response. If more results exist
1394
1394
  * than the specified <code>MaxResults</code> value, a token is included in the response so
@@ -1396,7 +1396,7 @@ export interface DescribeParametersRequest {
1396
1396
  * <p>The value for <code>MaxResults</code> must be between 20 and 100.</p>
1397
1397
  * @public
1398
1398
  */
1399
- MaxResults?: number;
1399
+ MaxResults?: number | undefined;
1400
1400
  /**
1401
1401
  * <p>An optional token returned from a prior request. Use this token for pagination of
1402
1402
  * results from this action. If this parameter is specified, the response includes only
@@ -1404,7 +1404,7 @@ export interface DescribeParametersRequest {
1404
1404
  * <code>MaxResults</code>.</p>
1405
1405
  * @public
1406
1406
  */
1407
- NextToken?: string;
1407
+ NextToken?: string | undefined;
1408
1408
  }
1409
1409
  /**
1410
1410
  * @public
@@ -1414,12 +1414,12 @@ export interface DescribeParametersResponse {
1414
1414
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
1415
1415
  * @public
1416
1416
  */
1417
- NextToken?: string;
1417
+ NextToken?: string | undefined;
1418
1418
  /**
1419
1419
  * <p>A list of parameters within a parameter group. Each element in the list represents one parameter.</p>
1420
1420
  * @public
1421
1421
  */
1422
- Parameters?: Parameter[];
1422
+ Parameters?: Parameter[] | undefined;
1423
1423
  }
1424
1424
  /**
1425
1425
  * @public
@@ -1429,7 +1429,7 @@ export interface DescribeSubnetGroupsRequest {
1429
1429
  * <p>The name of the subnet group.</p>
1430
1430
  * @public
1431
1431
  */
1432
- SubnetGroupNames?: string[];
1432
+ SubnetGroupNames?: string[] | undefined;
1433
1433
  /**
1434
1434
  * <p>The maximum number of results to include in the response. If more results exist
1435
1435
  * than the specified <code>MaxResults</code> value, a token is included in the response so
@@ -1437,7 +1437,7 @@ export interface DescribeSubnetGroupsRequest {
1437
1437
  * <p>The value for <code>MaxResults</code> must be between 20 and 100.</p>
1438
1438
  * @public
1439
1439
  */
1440
- MaxResults?: number;
1440
+ MaxResults?: number | undefined;
1441
1441
  /**
1442
1442
  * <p>An optional token returned from a prior request. Use this token for pagination of
1443
1443
  * results from this action. If this parameter is specified, the response includes only
@@ -1445,7 +1445,7 @@ export interface DescribeSubnetGroupsRequest {
1445
1445
  * <code>MaxResults</code>.</p>
1446
1446
  * @public
1447
1447
  */
1448
- NextToken?: string;
1448
+ NextToken?: string | undefined;
1449
1449
  }
1450
1450
  /**
1451
1451
  * @public
@@ -1455,12 +1455,12 @@ export interface DescribeSubnetGroupsResponse {
1455
1455
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
1456
1456
  * @public
1457
1457
  */
1458
- NextToken?: string;
1458
+ NextToken?: string | undefined;
1459
1459
  /**
1460
1460
  * <p>An array of subnet groups. Each element in the array represents a single subnet group.</p>
1461
1461
  * @public
1462
1462
  */
1463
- SubnetGroups?: SubnetGroup[];
1463
+ SubnetGroups?: SubnetGroup[] | undefined;
1464
1464
  }
1465
1465
  /**
1466
1466
  * @public
@@ -1482,7 +1482,7 @@ export interface IncreaseReplicationFactorRequest {
1482
1482
  * to distribute the nodes across multiple AZs.</p>
1483
1483
  * @public
1484
1484
  */
1485
- AvailabilityZones?: string[];
1485
+ AvailabilityZones?: string[] | undefined;
1486
1486
  }
1487
1487
  /**
1488
1488
  * @public
@@ -1492,7 +1492,7 @@ export interface IncreaseReplicationFactorResponse {
1492
1492
  * <p>A description of the DAX cluster. with its new replication factor.</p>
1493
1493
  * @public
1494
1494
  */
1495
- Cluster?: Cluster;
1495
+ Cluster?: Cluster | undefined;
1496
1496
  }
1497
1497
  /**
1498
1498
  * <p>The Amazon Resource Name (ARN) supplied in the request is not valid.</p>
@@ -1521,7 +1521,7 @@ export interface ListTagsRequest {
1521
1521
  * results beyond the token.</p>
1522
1522
  * @public
1523
1523
  */
1524
- NextToken?: string;
1524
+ NextToken?: string | undefined;
1525
1525
  }
1526
1526
  /**
1527
1527
  * @public
@@ -1531,13 +1531,13 @@ export interface ListTagsResponse {
1531
1531
  * <p>A list of tags currently associated with the DAX cluster.</p>
1532
1532
  * @public
1533
1533
  */
1534
- Tags?: Tag[];
1534
+ Tags?: Tag[] | undefined;
1535
1535
  /**
1536
1536
  * <p>If this value is present, there are additional results to be displayed. To retrieve them, call
1537
1537
  * <code>ListTags</code> again, with <code>NextToken</code> set to this value.</p>
1538
1538
  * @public
1539
1539
  */
1540
- NextToken?: string;
1540
+ NextToken?: string | undefined;
1541
1541
  }
1542
1542
  /**
1543
1543
  * @public
@@ -1562,7 +1562,7 @@ export interface RebootNodeResponse {
1562
1562
  * <p>A description of the DAX cluster after a node has been rebooted.</p>
1563
1563
  * @public
1564
1564
  */
1565
- Cluster?: Cluster;
1565
+ Cluster?: Cluster | undefined;
1566
1566
  }
1567
1567
  /**
1568
1568
  * @public
@@ -1587,7 +1587,7 @@ export interface TagResourceResponse {
1587
1587
  * <p>The list of tags that are associated with the DAX resource.</p>
1588
1588
  * @public
1589
1589
  */
1590
- Tags?: Tag[];
1590
+ Tags?: Tag[] | undefined;
1591
1591
  }
1592
1592
  /**
1593
1593
  * <p>The tag does not exist.</p>
@@ -1624,7 +1624,7 @@ export interface UntagResourceResponse {
1624
1624
  * <p>The tag keys that have been removed from the cluster.</p>
1625
1625
  * @public
1626
1626
  */
1627
- Tags?: Tag[];
1627
+ Tags?: Tag[] | undefined;
1628
1628
  }
1629
1629
  /**
1630
1630
  * @public
@@ -1639,37 +1639,37 @@ export interface UpdateClusterRequest {
1639
1639
  * <p>A description of the changes being made to the cluster.</p>
1640
1640
  * @public
1641
1641
  */
1642
- Description?: string;
1642
+ Description?: string | undefined;
1643
1643
  /**
1644
1644
  * <p>A range of time when maintenance of DAX cluster software will be performed. For
1645
1645
  * example: <code>sun:01:00-sun:09:00</code>. Cluster maintenance normally takes less than
1646
1646
  * 30 minutes, and is performed automatically within the maintenance window.</p>
1647
1647
  * @public
1648
1648
  */
1649
- PreferredMaintenanceWindow?: string;
1649
+ PreferredMaintenanceWindow?: string | undefined;
1650
1650
  /**
1651
1651
  * <p>The Amazon Resource Name (ARN) that identifies the topic.</p>
1652
1652
  * @public
1653
1653
  */
1654
- NotificationTopicArn?: string;
1654
+ NotificationTopicArn?: string | undefined;
1655
1655
  /**
1656
1656
  * <p>The current state of the topic. A value of “active” means that notifications will
1657
1657
  * be sent to the topic. A value of “inactive” means that notifications will not be sent to the
1658
1658
  * topic.</p>
1659
1659
  * @public
1660
1660
  */
1661
- NotificationTopicStatus?: string;
1661
+ NotificationTopicStatus?: string | undefined;
1662
1662
  /**
1663
1663
  * <p>The name of a parameter group for this cluster.</p>
1664
1664
  * @public
1665
1665
  */
1666
- ParameterGroupName?: string;
1666
+ ParameterGroupName?: string | undefined;
1667
1667
  /**
1668
1668
  * <p>A list of user-specified security group IDs to be assigned to each node in the DAX cluster. If this parameter is not
1669
1669
  * specified, DAX assigns the default VPC security group to each node.</p>
1670
1670
  * @public
1671
1671
  */
1672
- SecurityGroupIds?: string[];
1672
+ SecurityGroupIds?: string[] | undefined;
1673
1673
  }
1674
1674
  /**
1675
1675
  * @public
@@ -1679,7 +1679,7 @@ export interface UpdateClusterResponse {
1679
1679
  * <p>A description of the DAX cluster, after it has been modified.</p>
1680
1680
  * @public
1681
1681
  */
1682
- Cluster?: Cluster;
1682
+ Cluster?: Cluster | undefined;
1683
1683
  }
1684
1684
  /**
1685
1685
  * <p>An individual DAX parameter.</p>
@@ -1690,12 +1690,12 @@ export interface ParameterNameValue {
1690
1690
  * <p>The name of the parameter.</p>
1691
1691
  * @public
1692
1692
  */
1693
- ParameterName?: string;
1693
+ ParameterName?: string | undefined;
1694
1694
  /**
1695
1695
  * <p>The value of the parameter.</p>
1696
1696
  * @public
1697
1697
  */
1698
- ParameterValue?: string;
1698
+ ParameterValue?: string | undefined;
1699
1699
  }
1700
1700
  /**
1701
1701
  * @public
@@ -1725,7 +1725,7 @@ export interface UpdateParameterGroupResponse {
1725
1725
  * <p>The parameter group that has been modified.</p>
1726
1726
  * @public
1727
1727
  */
1728
- ParameterGroup?: ParameterGroup;
1728
+ ParameterGroup?: ParameterGroup | undefined;
1729
1729
  }
1730
1730
  /**
1731
1731
  * <p>The requested subnet is being used by another subnet group.</p>
@@ -1752,12 +1752,12 @@ export interface UpdateSubnetGroupRequest {
1752
1752
  * <p>A description of the subnet group.</p>
1753
1753
  * @public
1754
1754
  */
1755
- Description?: string;
1755
+ Description?: string | undefined;
1756
1756
  /**
1757
1757
  * <p>A list of subnet IDs in the subnet group.</p>
1758
1758
  * @public
1759
1759
  */
1760
- SubnetIds?: string[];
1760
+ SubnetIds?: string[] | undefined;
1761
1761
  }
1762
1762
  /**
1763
1763
  * @public
@@ -1767,5 +1767,5 @@ export interface UpdateSubnetGroupResponse {
1767
1767
  * <p>The subnet group that has been modified.</p>
1768
1768
  * @public
1769
1769
  */
1770
- SubnetGroup?: SubnetGroup;
1770
+ SubnetGroup?: SubnetGroup | undefined;
1771
1771
  }