@aws-sdk/client-dax 3.296.0 → 3.297.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.
Files changed (26) hide show
  1. package/dist-types/DAX.d.ts +22 -0
  2. package/dist-types/DAXClient.d.ts +24 -4
  3. package/dist-types/commands/CreateClusterCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateParameterGroupCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateSubnetGroupCommand.d.ts +16 -0
  6. package/dist-types/commands/DecreaseReplicationFactorCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteClusterCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteParameterGroupCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteSubnetGroupCommand.d.ts +16 -0
  10. package/dist-types/commands/DescribeClustersCommand.d.ts +16 -0
  11. package/dist-types/commands/DescribeDefaultParametersCommand.d.ts +16 -0
  12. package/dist-types/commands/DescribeEventsCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeParameterGroupsCommand.d.ts +16 -0
  14. package/dist-types/commands/DescribeParametersCommand.d.ts +16 -0
  15. package/dist-types/commands/DescribeSubnetGroupsCommand.d.ts +16 -0
  16. package/dist-types/commands/IncreaseReplicationFactorCommand.d.ts +16 -0
  17. package/dist-types/commands/ListTagsCommand.d.ts +16 -0
  18. package/dist-types/commands/RebootNodeCommand.d.ts +16 -0
  19. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  20. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  21. package/dist-types/commands/UpdateClusterCommand.d.ts +16 -0
  22. package/dist-types/commands/UpdateParameterGroupCommand.d.ts +16 -0
  23. package/dist-types/commands/UpdateSubnetGroupCommand.d.ts +16 -0
  24. package/dist-types/models/DAXServiceException.d.ts +2 -0
  25. package/dist-types/models/models_0.d.ts +187 -0
  26. package/package.json +3 -3
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { DAXServiceException as __BaseException } from "./DAXServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>You already have a DAX cluster with the given identifier.</p>
5
6
  */
6
7
  export declare class ClusterAlreadyExistsFault extends __BaseException {
@@ -12,6 +13,7 @@ export declare class ClusterAlreadyExistsFault extends __BaseException {
12
13
  constructor(opts: __ExceptionOptionType<ClusterAlreadyExistsFault, __BaseException>);
13
14
  }
14
15
  /**
16
+ * @public
15
17
  * <p>You have attempted to exceed the maximum number of DAX clusters for your AWS
16
18
  * account.</p>
17
19
  */
@@ -23,11 +25,15 @@ export declare class ClusterQuotaForCustomerExceededFault extends __BaseExceptio
23
25
  */
24
26
  constructor(opts: __ExceptionOptionType<ClusterQuotaForCustomerExceededFault, __BaseException>);
25
27
  }
28
+ /**
29
+ * @public
30
+ */
26
31
  export declare enum ClusterEndpointEncryptionType {
27
32
  NONE = "NONE",
28
33
  TLS = "TLS"
29
34
  }
30
35
  /**
36
+ * @public
31
37
  * <p>Represents the settings used to enable server-side encryption.</p>
32
38
  */
33
39
  export interface SSESpecification {
@@ -37,6 +43,7 @@ export interface SSESpecification {
37
43
  Enabled: boolean | undefined;
38
44
  }
39
45
  /**
46
+ * @public
40
47
  * <p>A description of a tag. Every tag is a key-value pair. You can add up to 50 tags to a single
41
48
  * DAX cluster.</p>
42
49
  * <p>AWS-assigned tag names and values are automatically assigned the <code>aws:</code>
@@ -56,6 +63,9 @@ export interface Tag {
56
63
  */
57
64
  Value?: string;
58
65
  }
66
+ /**
67
+ * @public
68
+ */
59
69
  export interface CreateClusterRequest {
60
70
  /**
61
71
  * <p>The cluster identifier. This parameter is stored as a lowercase
@@ -211,6 +221,7 @@ export interface CreateClusterRequest {
211
221
  ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType | string;
212
222
  }
213
223
  /**
224
+ * @public
214
225
  * <p>Represents the information required for client programs to connect to the
215
226
  * endpoint for a DAX cluster.</p>
216
227
  */
@@ -230,6 +241,7 @@ export interface Endpoint {
230
241
  URL?: string;
231
242
  }
232
243
  /**
244
+ * @public
233
245
  * <p>Represents an individual node within a DAX cluster.</p>
234
246
  */
235
247
  export interface Node {
@@ -263,6 +275,7 @@ export interface Node {
263
275
  ParameterGroupStatus?: string;
264
276
  }
265
277
  /**
278
+ * @public
266
279
  * <p>Describes a notification topic and its status. Notification topics are used for
267
280
  * publishing DAX events to subscribers using Amazon Simple Notification Service
268
281
  * (SNS).</p>
@@ -280,6 +293,7 @@ export interface NotificationConfiguration {
280
293
  TopicStatus?: string;
281
294
  }
282
295
  /**
296
+ * @public
283
297
  * <p>The status of a parameter group.</p>
284
298
  */
285
299
  export interface ParameterGroupStatus {
@@ -297,6 +311,7 @@ export interface ParameterGroupStatus {
297
311
  NodeIdsToReboot?: string[];
298
312
  }
299
313
  /**
314
+ * @public
300
315
  * <p>An individual VPC security group and its status.</p>
301
316
  */
302
317
  export interface SecurityGroupMembership {
@@ -309,8 +324,12 @@ export interface SecurityGroupMembership {
309
324
  */
310
325
  Status?: string;
311
326
  }
327
+ /**
328
+ * @public
329
+ */
312
330
  export type SSEStatus = "DISABLED" | "DISABLING" | "ENABLED" | "ENABLING";
313
331
  /**
332
+ * @public
314
333
  * <p>The description of the server-side encryption status on the specified DAX cluster.</p>
315
334
  */
316
335
  export interface SSEDescription {
@@ -338,6 +357,7 @@ export interface SSEDescription {
338
357
  Status?: SSEStatus | string;
339
358
  }
340
359
  /**
360
+ * @public
341
361
  * <p>Contains all of the attributes of a specific DAX cluster.</p>
342
362
  */
343
363
  export interface Cluster {
@@ -433,6 +453,9 @@ export interface Cluster {
433
453
  */
434
454
  ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType | string;
435
455
  }
456
+ /**
457
+ * @public
458
+ */
436
459
  export interface CreateClusterResponse {
437
460
  /**
438
461
  * <p>A description of the DAX cluster that you have created.</p>
@@ -440,6 +463,7 @@ export interface CreateClusterResponse {
440
463
  Cluster?: Cluster;
441
464
  }
442
465
  /**
466
+ * @public
443
467
  * <p>There are not enough system resources to create the cluster you requested (or to
444
468
  * resize an already-existing cluster). </p>
445
469
  */
@@ -452,6 +476,7 @@ export declare class InsufficientClusterCapacityFault extends __BaseException {
452
476
  constructor(opts: __ExceptionOptionType<InsufficientClusterCapacityFault, __BaseException>);
453
477
  }
454
478
  /**
479
+ * @public
455
480
  * <p>The requested DAX cluster is not in the <i>available</i>
456
481
  * state.</p>
457
482
  */
@@ -464,6 +489,7 @@ export declare class InvalidClusterStateFault extends __BaseException {
464
489
  constructor(opts: __ExceptionOptionType<InvalidClusterStateFault, __BaseException>);
465
490
  }
466
491
  /**
492
+ * @public
467
493
  * <p>Two or more incompatible parameters were specified.</p>
468
494
  */
469
495
  export declare class InvalidParameterCombinationException extends __BaseException {
@@ -475,6 +501,7 @@ export declare class InvalidParameterCombinationException extends __BaseExceptio
475
501
  constructor(opts: __ExceptionOptionType<InvalidParameterCombinationException, __BaseException>);
476
502
  }
477
503
  /**
504
+ * @public
478
505
  * <p>One or more parameters in a parameter group are in an invalid state.</p>
479
506
  */
480
507
  export declare class InvalidParameterGroupStateFault extends __BaseException {
@@ -486,6 +513,7 @@ export declare class InvalidParameterGroupStateFault extends __BaseException {
486
513
  constructor(opts: __ExceptionOptionType<InvalidParameterGroupStateFault, __BaseException>);
487
514
  }
488
515
  /**
516
+ * @public
489
517
  * <p>The value for a parameter is invalid.</p>
490
518
  */
491
519
  export declare class InvalidParameterValueException extends __BaseException {
@@ -497,6 +525,7 @@ export declare class InvalidParameterValueException extends __BaseException {
497
525
  constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
498
526
  }
499
527
  /**
528
+ * @public
500
529
  * <p>The VPC network is in an invalid state.</p>
501
530
  */
502
531
  export declare class InvalidVPCNetworkStateFault extends __BaseException {
@@ -508,6 +537,7 @@ export declare class InvalidVPCNetworkStateFault extends __BaseException {
508
537
  constructor(opts: __ExceptionOptionType<InvalidVPCNetworkStateFault, __BaseException>);
509
538
  }
510
539
  /**
540
+ * @public
511
541
  * <p>You have attempted to exceed the maximum number of nodes for a DAX
512
542
  * cluster.</p>
513
543
  */
@@ -520,6 +550,7 @@ export declare class NodeQuotaForClusterExceededFault extends __BaseException {
520
550
  constructor(opts: __ExceptionOptionType<NodeQuotaForClusterExceededFault, __BaseException>);
521
551
  }
522
552
  /**
553
+ * @public
523
554
  * <p>You have attempted to exceed the maximum number of nodes for your AWS
524
555
  * account.</p>
525
556
  */
@@ -532,6 +563,7 @@ export declare class NodeQuotaForCustomerExceededFault extends __BaseException {
532
563
  constructor(opts: __ExceptionOptionType<NodeQuotaForCustomerExceededFault, __BaseException>);
533
564
  }
534
565
  /**
566
+ * @public
535
567
  * <p>The specified parameter group does not exist.</p>
536
568
  */
537
569
  export declare class ParameterGroupNotFoundFault extends __BaseException {
@@ -543,6 +575,7 @@ export declare class ParameterGroupNotFoundFault extends __BaseException {
543
575
  constructor(opts: __ExceptionOptionType<ParameterGroupNotFoundFault, __BaseException>);
544
576
  }
545
577
  /**
578
+ * @public
546
579
  * <p>The specified service linked role (SLR) was not found.</p>
547
580
  */
548
581
  export declare class ServiceLinkedRoleNotFoundFault extends __BaseException {
@@ -554,6 +587,7 @@ export declare class ServiceLinkedRoleNotFoundFault extends __BaseException {
554
587
  constructor(opts: __ExceptionOptionType<ServiceLinkedRoleNotFoundFault, __BaseException>);
555
588
  }
556
589
  /**
590
+ * @public
557
591
  * <p>You have reached the maximum number of x509 certificates that can be created for
558
592
  * encrypted clusters in a 30 day period. Contact AWS customer support to discuss options
559
593
  * for continuing to create encrypted clusters.</p>
@@ -567,6 +601,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
567
601
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
568
602
  }
569
603
  /**
604
+ * @public
570
605
  * <p>The requested subnet group name does not refer to an existing subnet
571
606
  * group.</p>
572
607
  */
@@ -579,6 +614,7 @@ export declare class SubnetGroupNotFoundFault extends __BaseException {
579
614
  constructor(opts: __ExceptionOptionType<SubnetGroupNotFoundFault, __BaseException>);
580
615
  }
581
616
  /**
617
+ * @public
582
618
  * <p>You have exceeded the maximum number of tags for this DAX cluster.</p>
583
619
  */
584
620
  export declare class TagQuotaPerResourceExceeded extends __BaseException {
@@ -589,6 +625,9 @@ export declare class TagQuotaPerResourceExceeded extends __BaseException {
589
625
  */
590
626
  constructor(opts: __ExceptionOptionType<TagQuotaPerResourceExceeded, __BaseException>);
591
627
  }
628
+ /**
629
+ * @public
630
+ */
592
631
  export interface CreateParameterGroupRequest {
593
632
  /**
594
633
  * <p>The name of the parameter group to apply to all of the clusters in this replication
@@ -601,6 +640,7 @@ export interface CreateParameterGroupRequest {
601
640
  Description?: string;
602
641
  }
603
642
  /**
643
+ * @public
604
644
  * <p>A named set of parameters that are applied to all of the nodes in a DAX
605
645
  * cluster.</p>
606
646
  */
@@ -614,6 +654,9 @@ export interface ParameterGroup {
614
654
  */
615
655
  Description?: string;
616
656
  }
657
+ /**
658
+ * @public
659
+ */
617
660
  export interface CreateParameterGroupResponse {
618
661
  /**
619
662
  * <p>Represents the output of a <i>CreateParameterGroup</i>
@@ -622,6 +665,7 @@ export interface CreateParameterGroupResponse {
622
665
  ParameterGroup?: ParameterGroup;
623
666
  }
624
667
  /**
668
+ * @public
625
669
  * <p>The specified parameter group already exists.</p>
626
670
  */
627
671
  export declare class ParameterGroupAlreadyExistsFault extends __BaseException {
@@ -633,6 +677,7 @@ export declare class ParameterGroupAlreadyExistsFault extends __BaseException {
633
677
  constructor(opts: __ExceptionOptionType<ParameterGroupAlreadyExistsFault, __BaseException>);
634
678
  }
635
679
  /**
680
+ * @public
636
681
  * <p>You have attempted to exceed the maximum number of parameter groups.</p>
637
682
  */
638
683
  export declare class ParameterGroupQuotaExceededFault extends __BaseException {
@@ -643,6 +688,9 @@ export declare class ParameterGroupQuotaExceededFault extends __BaseException {
643
688
  */
644
689
  constructor(opts: __ExceptionOptionType<ParameterGroupQuotaExceededFault, __BaseException>);
645
690
  }
691
+ /**
692
+ * @public
693
+ */
646
694
  export interface CreateSubnetGroupRequest {
647
695
  /**
648
696
  * <p>A name for the subnet group. This value is stored as a lowercase string. </p>
@@ -658,6 +706,7 @@ export interface CreateSubnetGroupRequest {
658
706
  SubnetIds: string[] | undefined;
659
707
  }
660
708
  /**
709
+ * @public
661
710
  * <p>Represents the subnet associated with a DAX cluster. This parameter refers to
662
711
  * subnets defined in Amazon Virtual Private Cloud (Amazon VPC) and used with
663
712
  * DAX.</p>
@@ -673,6 +722,7 @@ export interface Subnet {
673
722
  SubnetAvailabilityZone?: string;
674
723
  }
675
724
  /**
725
+ * @public
676
726
  * <p>Represents the output of one of the following actions:</p>
677
727
  * <ul>
678
728
  * <li>
@@ -705,6 +755,9 @@ export interface SubnetGroup {
705
755
  */
706
756
  Subnets?: Subnet[];
707
757
  }
758
+ /**
759
+ * @public
760
+ */
708
761
  export interface CreateSubnetGroupResponse {
709
762
  /**
710
763
  * <p>Represents the output of a <i>CreateSubnetGroup</i>
@@ -713,6 +766,7 @@ export interface CreateSubnetGroupResponse {
713
766
  SubnetGroup?: SubnetGroup;
714
767
  }
715
768
  /**
769
+ * @public
716
770
  * <p>An invalid subnet identifier was specified.</p>
717
771
  */
718
772
  export declare class InvalidSubnet extends __BaseException {
@@ -724,6 +778,7 @@ export declare class InvalidSubnet extends __BaseException {
724
778
  constructor(opts: __ExceptionOptionType<InvalidSubnet, __BaseException>);
725
779
  }
726
780
  /**
781
+ * @public
727
782
  * <p>The specified subnet group already exists.</p>
728
783
  */
729
784
  export declare class SubnetGroupAlreadyExistsFault extends __BaseException {
@@ -735,6 +790,7 @@ export declare class SubnetGroupAlreadyExistsFault extends __BaseException {
735
790
  constructor(opts: __ExceptionOptionType<SubnetGroupAlreadyExistsFault, __BaseException>);
736
791
  }
737
792
  /**
793
+ * @public
738
794
  * <p>The request cannot be processed because it would exceed the allowed number of
739
795
  * subnets in a subnet group.</p>
740
796
  */
@@ -747,6 +803,7 @@ export declare class SubnetGroupQuotaExceededFault extends __BaseException {
747
803
  constructor(opts: __ExceptionOptionType<SubnetGroupQuotaExceededFault, __BaseException>);
748
804
  }
749
805
  /**
806
+ * @public
750
807
  * <p>The request cannot be processed because it would exceed the allowed number of
751
808
  * subnets in a subnet group.</p>
752
809
  */
@@ -759,6 +816,7 @@ export declare class SubnetQuotaExceededFault extends __BaseException {
759
816
  constructor(opts: __ExceptionOptionType<SubnetQuotaExceededFault, __BaseException>);
760
817
  }
761
818
  /**
819
+ * @public
762
820
  * <p>The requested cluster ID does not refer to an existing DAX cluster.</p>
763
821
  */
764
822
  export declare class ClusterNotFoundFault extends __BaseException {
@@ -769,6 +827,9 @@ export declare class ClusterNotFoundFault extends __BaseException {
769
827
  */
770
828
  constructor(opts: __ExceptionOptionType<ClusterNotFoundFault, __BaseException>);
771
829
  }
830
+ /**
831
+ * @public
832
+ */
772
833
  export interface DecreaseReplicationFactorRequest {
773
834
  /**
774
835
  * <p>The name of the DAX cluster from which you want to remove nodes.</p>
@@ -787,6 +848,9 @@ export interface DecreaseReplicationFactorRequest {
787
848
  */
788
849
  NodeIdsToRemove?: string[];
789
850
  }
851
+ /**
852
+ * @public
853
+ */
790
854
  export interface DecreaseReplicationFactorResponse {
791
855
  /**
792
856
  * <p>A description of the DAX cluster, after you have decreased its replication
@@ -795,6 +859,7 @@ export interface DecreaseReplicationFactorResponse {
795
859
  Cluster?: Cluster;
796
860
  }
797
861
  /**
862
+ * @public
798
863
  * <p>None of the nodes in the cluster have the given node ID.</p>
799
864
  */
800
865
  export declare class NodeNotFoundFault extends __BaseException {
@@ -805,24 +870,36 @@ export declare class NodeNotFoundFault extends __BaseException {
805
870
  */
806
871
  constructor(opts: __ExceptionOptionType<NodeNotFoundFault, __BaseException>);
807
872
  }
873
+ /**
874
+ * @public
875
+ */
808
876
  export interface DeleteClusterRequest {
809
877
  /**
810
878
  * <p>The name of the cluster to be deleted.</p>
811
879
  */
812
880
  ClusterName: string | undefined;
813
881
  }
882
+ /**
883
+ * @public
884
+ */
814
885
  export interface DeleteClusterResponse {
815
886
  /**
816
887
  * <p>A description of the DAX cluster that is being deleted.</p>
817
888
  */
818
889
  Cluster?: Cluster;
819
890
  }
891
+ /**
892
+ * @public
893
+ */
820
894
  export interface DeleteParameterGroupRequest {
821
895
  /**
822
896
  * <p>The name of the parameter group to delete.</p>
823
897
  */
824
898
  ParameterGroupName: string | undefined;
825
899
  }
900
+ /**
901
+ * @public
902
+ */
826
903
  export interface DeleteParameterGroupResponse {
827
904
  /**
828
905
  * <p>A user-specified message for this action (i.e., a reason for deleting the parameter
@@ -830,12 +907,18 @@ export interface DeleteParameterGroupResponse {
830
907
  */
831
908
  DeletionMessage?: string;
832
909
  }
910
+ /**
911
+ * @public
912
+ */
833
913
  export interface DeleteSubnetGroupRequest {
834
914
  /**
835
915
  * <p>The name of the subnet group to delete.</p>
836
916
  */
837
917
  SubnetGroupName: string | undefined;
838
918
  }
919
+ /**
920
+ * @public
921
+ */
839
922
  export interface DeleteSubnetGroupResponse {
840
923
  /**
841
924
  * <p>A user-specified message for this action (i.e., a reason for deleting the subnet
@@ -844,6 +927,7 @@ export interface DeleteSubnetGroupResponse {
844
927
  DeletionMessage?: string;
845
928
  }
846
929
  /**
930
+ * @public
847
931
  * <p>The specified subnet group is currently in use.</p>
848
932
  */
849
933
  export declare class SubnetGroupInUseFault extends __BaseException {
@@ -854,6 +938,9 @@ export declare class SubnetGroupInUseFault extends __BaseException {
854
938
  */
855
939
  constructor(opts: __ExceptionOptionType<SubnetGroupInUseFault, __BaseException>);
856
940
  }
941
+ /**
942
+ * @public
943
+ */
857
944
  export interface DescribeClustersRequest {
858
945
  /**
859
946
  * <p>The names of the DAX clusters being described.</p>
@@ -874,6 +961,9 @@ export interface DescribeClustersRequest {
874
961
  */
875
962
  NextToken?: string;
876
963
  }
964
+ /**
965
+ * @public
966
+ */
877
967
  export interface DescribeClustersResponse {
878
968
  /**
879
969
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
@@ -885,6 +975,9 @@ export interface DescribeClustersResponse {
885
975
  */
886
976
  Clusters?: Cluster[];
887
977
  }
978
+ /**
979
+ * @public
980
+ */
888
981
  export interface DescribeDefaultParametersRequest {
889
982
  /**
890
983
  * <p>The maximum number of results to include in the response. If more results exist
@@ -901,9 +994,16 @@ export interface DescribeDefaultParametersRequest {
901
994
  */
902
995
  NextToken?: string;
903
996
  }
997
+ /**
998
+ * @public
999
+ */
904
1000
  export type ChangeType = "IMMEDIATE" | "REQUIRES_REBOOT";
1001
+ /**
1002
+ * @public
1003
+ */
905
1004
  export type IsModifiable = "CONDITIONAL" | "FALSE" | "TRUE";
906
1005
  /**
1006
+ * @public
907
1007
  * <p>Represents a parameter value that is applicable to a particular node
908
1008
  * type.</p>
909
1009
  */
@@ -917,8 +1017,12 @@ export interface NodeTypeSpecificValue {
917
1017
  */
918
1018
  Value?: string;
919
1019
  }
1020
+ /**
1021
+ * @public
1022
+ */
920
1023
  export type ParameterType = "DEFAULT" | "NODE_TYPE_SPECIFIC";
921
1024
  /**
1025
+ * @public
922
1026
  * <p>Describes an individual setting that controls some aspect of DAX
923
1027
  * behavior.</p>
924
1028
  */
@@ -968,6 +1072,9 @@ export interface Parameter {
968
1072
  */
969
1073
  ChangeType?: ChangeType | string;
970
1074
  }
1075
+ /**
1076
+ * @public
1077
+ */
971
1078
  export interface DescribeDefaultParametersResponse {
972
1079
  /**
973
1080
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
@@ -978,7 +1085,13 @@ export interface DescribeDefaultParametersResponse {
978
1085
  */
979
1086
  Parameters?: Parameter[];
980
1087
  }
1088
+ /**
1089
+ * @public
1090
+ */
981
1091
  export type SourceType = "CLUSTER" | "PARAMETER_GROUP" | "SUBNET_GROUP";
1092
+ /**
1093
+ * @public
1094
+ */
982
1095
  export interface DescribeEventsRequest {
983
1096
  /**
984
1097
  * <p>The identifier of the event source for which events will be returned. If not
@@ -1020,6 +1133,7 @@ export interface DescribeEventsRequest {
1020
1133
  NextToken?: string;
1021
1134
  }
1022
1135
  /**
1136
+ * @public
1023
1137
  * <p>Represents a single occurrence of something interesting within the system. Some
1024
1138
  * examples of events are creating a DAX cluster, adding or removing a node, or rebooting
1025
1139
  * a node.</p>
@@ -1044,6 +1158,9 @@ export interface Event {
1044
1158
  */
1045
1159
  Date?: Date;
1046
1160
  }
1161
+ /**
1162
+ * @public
1163
+ */
1047
1164
  export interface DescribeEventsResponse {
1048
1165
  /**
1049
1166
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
@@ -1054,6 +1171,9 @@ export interface DescribeEventsResponse {
1054
1171
  */
1055
1172
  Events?: Event[];
1056
1173
  }
1174
+ /**
1175
+ * @public
1176
+ */
1057
1177
  export interface DescribeParameterGroupsRequest {
1058
1178
  /**
1059
1179
  * <p>The names of the parameter groups.</p>
@@ -1074,6 +1194,9 @@ export interface DescribeParameterGroupsRequest {
1074
1194
  */
1075
1195
  NextToken?: string;
1076
1196
  }
1197
+ /**
1198
+ * @public
1199
+ */
1077
1200
  export interface DescribeParameterGroupsResponse {
1078
1201
  /**
1079
1202
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
@@ -1084,6 +1207,9 @@ export interface DescribeParameterGroupsResponse {
1084
1207
  */
1085
1208
  ParameterGroups?: ParameterGroup[];
1086
1209
  }
1210
+ /**
1211
+ * @public
1212
+ */
1087
1213
  export interface DescribeParametersRequest {
1088
1214
  /**
1089
1215
  * <p>The name of the parameter group.</p>
@@ -1109,6 +1235,9 @@ export interface DescribeParametersRequest {
1109
1235
  */
1110
1236
  NextToken?: string;
1111
1237
  }
1238
+ /**
1239
+ * @public
1240
+ */
1112
1241
  export interface DescribeParametersResponse {
1113
1242
  /**
1114
1243
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
@@ -1119,6 +1248,9 @@ export interface DescribeParametersResponse {
1119
1248
  */
1120
1249
  Parameters?: Parameter[];
1121
1250
  }
1251
+ /**
1252
+ * @public
1253
+ */
1122
1254
  export interface DescribeSubnetGroupsRequest {
1123
1255
  /**
1124
1256
  * <p>The name of the subnet group.</p>
@@ -1139,6 +1271,9 @@ export interface DescribeSubnetGroupsRequest {
1139
1271
  */
1140
1272
  NextToken?: string;
1141
1273
  }
1274
+ /**
1275
+ * @public
1276
+ */
1142
1277
  export interface DescribeSubnetGroupsResponse {
1143
1278
  /**
1144
1279
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
@@ -1149,6 +1284,9 @@ export interface DescribeSubnetGroupsResponse {
1149
1284
  */
1150
1285
  SubnetGroups?: SubnetGroup[];
1151
1286
  }
1287
+ /**
1288
+ * @public
1289
+ */
1152
1290
  export interface IncreaseReplicationFactorRequest {
1153
1291
  /**
1154
1292
  * <p>The name of the DAX cluster that will receive additional nodes.</p>
@@ -1165,6 +1303,9 @@ export interface IncreaseReplicationFactorRequest {
1165
1303
  */
1166
1304
  AvailabilityZones?: string[];
1167
1305
  }
1306
+ /**
1307
+ * @public
1308
+ */
1168
1309
  export interface IncreaseReplicationFactorResponse {
1169
1310
  /**
1170
1311
  * <p>A description of the DAX cluster. with its new replication factor.</p>
@@ -1172,6 +1313,7 @@ export interface IncreaseReplicationFactorResponse {
1172
1313
  Cluster?: Cluster;
1173
1314
  }
1174
1315
  /**
1316
+ * @public
1175
1317
  * <p>The Amazon Resource Name (ARN) supplied in the request is not valid.</p>
1176
1318
  */
1177
1319
  export declare class InvalidARNFault extends __BaseException {
@@ -1182,6 +1324,9 @@ export declare class InvalidARNFault extends __BaseException {
1182
1324
  */
1183
1325
  constructor(opts: __ExceptionOptionType<InvalidARNFault, __BaseException>);
1184
1326
  }
1327
+ /**
1328
+ * @public
1329
+ */
1185
1330
  export interface ListTagsRequest {
1186
1331
  /**
1187
1332
  * <p>The name of the DAX resource to which the tags belong.</p>
@@ -1194,6 +1339,9 @@ export interface ListTagsRequest {
1194
1339
  */
1195
1340
  NextToken?: string;
1196
1341
  }
1342
+ /**
1343
+ * @public
1344
+ */
1197
1345
  export interface ListTagsResponse {
1198
1346
  /**
1199
1347
  * <p>A list of tags currently associated with the DAX cluster.</p>
@@ -1205,6 +1353,9 @@ export interface ListTagsResponse {
1205
1353
  */
1206
1354
  NextToken?: string;
1207
1355
  }
1356
+ /**
1357
+ * @public
1358
+ */
1208
1359
  export interface RebootNodeRequest {
1209
1360
  /**
1210
1361
  * <p>The name of the DAX cluster containing the node to be rebooted.</p>
@@ -1215,12 +1366,18 @@ export interface RebootNodeRequest {
1215
1366
  */
1216
1367
  NodeId: string | undefined;
1217
1368
  }
1369
+ /**
1370
+ * @public
1371
+ */
1218
1372
  export interface RebootNodeResponse {
1219
1373
  /**
1220
1374
  * <p>A description of the DAX cluster after a node has been rebooted.</p>
1221
1375
  */
1222
1376
  Cluster?: Cluster;
1223
1377
  }
1378
+ /**
1379
+ * @public
1380
+ */
1224
1381
  export interface TagResourceRequest {
1225
1382
  /**
1226
1383
  * <p>The name of the DAX resource to which tags should be added.</p>
@@ -1231,6 +1388,9 @@ export interface TagResourceRequest {
1231
1388
  */
1232
1389
  Tags: Tag[] | undefined;
1233
1390
  }
1391
+ /**
1392
+ * @public
1393
+ */
1234
1394
  export interface TagResourceResponse {
1235
1395
  /**
1236
1396
  * <p>The list of tags that are associated with the DAX resource.</p>
@@ -1238,6 +1398,7 @@ export interface TagResourceResponse {
1238
1398
  Tags?: Tag[];
1239
1399
  }
1240
1400
  /**
1401
+ * @public
1241
1402
  * <p>The tag does not exist.</p>
1242
1403
  */
1243
1404
  export declare class TagNotFoundFault extends __BaseException {
@@ -1248,6 +1409,9 @@ export declare class TagNotFoundFault extends __BaseException {
1248
1409
  */
1249
1410
  constructor(opts: __ExceptionOptionType<TagNotFoundFault, __BaseException>);
1250
1411
  }
1412
+ /**
1413
+ * @public
1414
+ */
1251
1415
  export interface UntagResourceRequest {
1252
1416
  /**
1253
1417
  * <p>The name of the DAX resource from which the tags should be removed.</p>
@@ -1258,12 +1422,18 @@ export interface UntagResourceRequest {
1258
1422
  */
1259
1423
  TagKeys: string[] | undefined;
1260
1424
  }
1425
+ /**
1426
+ * @public
1427
+ */
1261
1428
  export interface UntagResourceResponse {
1262
1429
  /**
1263
1430
  * <p>The tag keys that have been removed from the cluster.</p>
1264
1431
  */
1265
1432
  Tags?: Tag[];
1266
1433
  }
1434
+ /**
1435
+ * @public
1436
+ */
1267
1437
  export interface UpdateClusterRequest {
1268
1438
  /**
1269
1439
  * <p>The name of the DAX cluster to be modified.</p>
@@ -1299,6 +1469,9 @@ export interface UpdateClusterRequest {
1299
1469
  */
1300
1470
  SecurityGroupIds?: string[];
1301
1471
  }
1472
+ /**
1473
+ * @public
1474
+ */
1302
1475
  export interface UpdateClusterResponse {
1303
1476
  /**
1304
1477
  * <p>A description of the DAX cluster, after it has been modified.</p>
@@ -1306,6 +1479,7 @@ export interface UpdateClusterResponse {
1306
1479
  Cluster?: Cluster;
1307
1480
  }
1308
1481
  /**
1482
+ * @public
1309
1483
  * <p>An individual DAX parameter.</p>
1310
1484
  */
1311
1485
  export interface ParameterNameValue {
@@ -1318,6 +1492,9 @@ export interface ParameterNameValue {
1318
1492
  */
1319
1493
  ParameterValue?: string;
1320
1494
  }
1495
+ /**
1496
+ * @public
1497
+ */
1321
1498
  export interface UpdateParameterGroupRequest {
1322
1499
  /**
1323
1500
  * <p>The name of the parameter group.</p>
@@ -1333,6 +1510,9 @@ export interface UpdateParameterGroupRequest {
1333
1510
  */
1334
1511
  ParameterNameValues: ParameterNameValue[] | undefined;
1335
1512
  }
1513
+ /**
1514
+ * @public
1515
+ */
1336
1516
  export interface UpdateParameterGroupResponse {
1337
1517
  /**
1338
1518
  * <p>The parameter group that has been modified.</p>
@@ -1340,6 +1520,7 @@ export interface UpdateParameterGroupResponse {
1340
1520
  ParameterGroup?: ParameterGroup;
1341
1521
  }
1342
1522
  /**
1523
+ * @public
1343
1524
  * <p>The requested subnet is being used by another subnet group.</p>
1344
1525
  */
1345
1526
  export declare class SubnetInUse extends __BaseException {
@@ -1350,6 +1531,9 @@ export declare class SubnetInUse extends __BaseException {
1350
1531
  */
1351
1532
  constructor(opts: __ExceptionOptionType<SubnetInUse, __BaseException>);
1352
1533
  }
1534
+ /**
1535
+ * @public
1536
+ */
1353
1537
  export interface UpdateSubnetGroupRequest {
1354
1538
  /**
1355
1539
  * <p>The name of the subnet group.</p>
@@ -1364,6 +1548,9 @@ export interface UpdateSubnetGroupRequest {
1364
1548
  */
1365
1549
  SubnetIds?: string[];
1366
1550
  }
1551
+ /**
1552
+ * @public
1553
+ */
1367
1554
  export interface UpdateSubnetGroupResponse {
1368
1555
  /**
1369
1556
  * <p>The subnet group that has been modified.</p>