@aws-sdk/client-dax 3.325.0 → 3.326.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.
@@ -55,6 +55,64 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
55
55
  * };
56
56
  * const command = new CreateClusterCommand(input);
57
57
  * const response = await client.send(command);
58
+ * // { // CreateClusterResponse
59
+ * // Cluster: { // Cluster
60
+ * // ClusterName: "STRING_VALUE",
61
+ * // Description: "STRING_VALUE",
62
+ * // ClusterArn: "STRING_VALUE",
63
+ * // TotalNodes: Number("int"),
64
+ * // ActiveNodes: Number("int"),
65
+ * // NodeType: "STRING_VALUE",
66
+ * // Status: "STRING_VALUE",
67
+ * // ClusterDiscoveryEndpoint: { // Endpoint
68
+ * // Address: "STRING_VALUE",
69
+ * // Port: Number("int"),
70
+ * // URL: "STRING_VALUE",
71
+ * // },
72
+ * // NodeIdsToRemove: [ // NodeIdentifierList
73
+ * // "STRING_VALUE",
74
+ * // ],
75
+ * // Nodes: [ // NodeList
76
+ * // { // Node
77
+ * // NodeId: "STRING_VALUE",
78
+ * // Endpoint: {
79
+ * // Address: "STRING_VALUE",
80
+ * // Port: Number("int"),
81
+ * // URL: "STRING_VALUE",
82
+ * // },
83
+ * // NodeCreateTime: new Date("TIMESTAMP"),
84
+ * // AvailabilityZone: "STRING_VALUE",
85
+ * // NodeStatus: "STRING_VALUE",
86
+ * // ParameterGroupStatus: "STRING_VALUE",
87
+ * // },
88
+ * // ],
89
+ * // PreferredMaintenanceWindow: "STRING_VALUE",
90
+ * // NotificationConfiguration: { // NotificationConfiguration
91
+ * // TopicArn: "STRING_VALUE",
92
+ * // TopicStatus: "STRING_VALUE",
93
+ * // },
94
+ * // SubnetGroup: "STRING_VALUE",
95
+ * // SecurityGroups: [ // SecurityGroupMembershipList
96
+ * // { // SecurityGroupMembership
97
+ * // SecurityGroupIdentifier: "STRING_VALUE",
98
+ * // Status: "STRING_VALUE",
99
+ * // },
100
+ * // ],
101
+ * // IamRoleArn: "STRING_VALUE",
102
+ * // ParameterGroup: { // ParameterGroupStatus
103
+ * // ParameterGroupName: "STRING_VALUE",
104
+ * // ParameterApplyStatus: "STRING_VALUE",
105
+ * // NodeIdsToReboot: [
106
+ * // "STRING_VALUE",
107
+ * // ],
108
+ * // },
109
+ * // SSEDescription: { // SSEDescription
110
+ * // Status: "STRING_VALUE",
111
+ * // },
112
+ * // ClusterEndpointEncryptionType: "STRING_VALUE",
113
+ * // },
114
+ * // };
115
+ *
58
116
  * ```
59
117
  *
60
118
  * @param CreateClusterCommandInput - {@link CreateClusterCommandInput}
@@ -116,6 +174,8 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
116
174
  * @throws {@link TagQuotaPerResourceExceeded} (client fault)
117
175
  * <p>You have exceeded the maximum number of tags for this DAX cluster.</p>
118
176
  *
177
+ * @throws {@link DAXServiceException}
178
+ * <p>Base exception class for all service exceptions from DAX service.</p>
119
179
  *
120
180
  */
121
181
  export declare class CreateClusterCommand extends $Command<CreateClusterCommandInput, CreateClusterCommandOutput, DAXClientResolvedConfig> {
@@ -33,6 +33,13 @@ export interface CreateParameterGroupCommandOutput extends CreateParameterGroupR
33
33
  * };
34
34
  * const command = new CreateParameterGroupCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // CreateParameterGroupResponse
37
+ * // ParameterGroup: { // ParameterGroup
38
+ * // ParameterGroupName: "STRING_VALUE",
39
+ * // Description: "STRING_VALUE",
40
+ * // },
41
+ * // };
42
+ *
36
43
  * ```
37
44
  *
38
45
  * @param CreateParameterGroupCommandInput - {@link CreateParameterGroupCommandInput}
@@ -59,6 +66,8 @@ export interface CreateParameterGroupCommandOutput extends CreateParameterGroupR
59
66
  * @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
60
67
  * <p>The specified service linked role (SLR) was not found.</p>
61
68
  *
69
+ * @throws {@link DAXServiceException}
70
+ * <p>Base exception class for all service exceptions from DAX service.</p>
62
71
  *
63
72
  */
64
73
  export declare class CreateParameterGroupCommand extends $Command<CreateParameterGroupCommandInput, CreateParameterGroupCommandOutput, DAXClientResolvedConfig> {
@@ -35,6 +35,20 @@ export interface CreateSubnetGroupCommandOutput extends CreateSubnetGroupRespons
35
35
  * };
36
36
  * const command = new CreateSubnetGroupCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // CreateSubnetGroupResponse
39
+ * // SubnetGroup: { // SubnetGroup
40
+ * // SubnetGroupName: "STRING_VALUE",
41
+ * // Description: "STRING_VALUE",
42
+ * // VpcId: "STRING_VALUE",
43
+ * // Subnets: [ // SubnetList
44
+ * // { // Subnet
45
+ * // SubnetIdentifier: "STRING_VALUE",
46
+ * // SubnetAvailabilityZone: "STRING_VALUE",
47
+ * // },
48
+ * // ],
49
+ * // },
50
+ * // };
51
+ *
38
52
  * ```
39
53
  *
40
54
  * @param CreateSubnetGroupCommandInput - {@link CreateSubnetGroupCommandInput}
@@ -60,6 +74,8 @@ export interface CreateSubnetGroupCommandOutput extends CreateSubnetGroupRespons
60
74
  * <p>The request cannot be processed because it would exceed the allowed number of
61
75
  * subnets in a subnet group.</p>
62
76
  *
77
+ * @throws {@link DAXServiceException}
78
+ * <p>Base exception class for all service exceptions from DAX service.</p>
63
79
  *
64
80
  */
65
81
  export declare class CreateSubnetGroupCommand extends $Command<CreateSubnetGroupCommandInput, CreateSubnetGroupCommandOutput, DAXClientResolvedConfig> {
@@ -41,6 +41,64 @@ export interface DecreaseReplicationFactorCommandOutput extends DecreaseReplicat
41
41
  * };
42
42
  * const command = new DecreaseReplicationFactorCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // DecreaseReplicationFactorResponse
45
+ * // Cluster: { // Cluster
46
+ * // ClusterName: "STRING_VALUE",
47
+ * // Description: "STRING_VALUE",
48
+ * // ClusterArn: "STRING_VALUE",
49
+ * // TotalNodes: Number("int"),
50
+ * // ActiveNodes: Number("int"),
51
+ * // NodeType: "STRING_VALUE",
52
+ * // Status: "STRING_VALUE",
53
+ * // ClusterDiscoveryEndpoint: { // Endpoint
54
+ * // Address: "STRING_VALUE",
55
+ * // Port: Number("int"),
56
+ * // URL: "STRING_VALUE",
57
+ * // },
58
+ * // NodeIdsToRemove: [ // NodeIdentifierList
59
+ * // "STRING_VALUE",
60
+ * // ],
61
+ * // Nodes: [ // NodeList
62
+ * // { // Node
63
+ * // NodeId: "STRING_VALUE",
64
+ * // Endpoint: {
65
+ * // Address: "STRING_VALUE",
66
+ * // Port: Number("int"),
67
+ * // URL: "STRING_VALUE",
68
+ * // },
69
+ * // NodeCreateTime: new Date("TIMESTAMP"),
70
+ * // AvailabilityZone: "STRING_VALUE",
71
+ * // NodeStatus: "STRING_VALUE",
72
+ * // ParameterGroupStatus: "STRING_VALUE",
73
+ * // },
74
+ * // ],
75
+ * // PreferredMaintenanceWindow: "STRING_VALUE",
76
+ * // NotificationConfiguration: { // NotificationConfiguration
77
+ * // TopicArn: "STRING_VALUE",
78
+ * // TopicStatus: "STRING_VALUE",
79
+ * // },
80
+ * // SubnetGroup: "STRING_VALUE",
81
+ * // SecurityGroups: [ // SecurityGroupMembershipList
82
+ * // { // SecurityGroupMembership
83
+ * // SecurityGroupIdentifier: "STRING_VALUE",
84
+ * // Status: "STRING_VALUE",
85
+ * // },
86
+ * // ],
87
+ * // IamRoleArn: "STRING_VALUE",
88
+ * // ParameterGroup: { // ParameterGroupStatus
89
+ * // ParameterGroupName: "STRING_VALUE",
90
+ * // ParameterApplyStatus: "STRING_VALUE",
91
+ * // NodeIdsToReboot: [
92
+ * // "STRING_VALUE",
93
+ * // ],
94
+ * // },
95
+ * // SSEDescription: { // SSEDescription
96
+ * // Status: "STRING_VALUE",
97
+ * // },
98
+ * // ClusterEndpointEncryptionType: "STRING_VALUE",
99
+ * // },
100
+ * // };
101
+ *
44
102
  * ```
45
103
  *
46
104
  * @param DecreaseReplicationFactorCommandInput - {@link DecreaseReplicationFactorCommandInput}
@@ -68,6 +126,8 @@ export interface DecreaseReplicationFactorCommandOutput extends DecreaseReplicat
68
126
  * @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
69
127
  * <p>The specified service linked role (SLR) was not found.</p>
70
128
  *
129
+ * @throws {@link DAXServiceException}
130
+ * <p>Base exception class for all service exceptions from DAX service.</p>
71
131
  *
72
132
  */
73
133
  export declare class DecreaseReplicationFactorCommand extends $Command<DecreaseReplicationFactorCommandInput, DecreaseReplicationFactorCommandOutput, DAXClientResolvedConfig> {
@@ -35,6 +35,64 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
35
35
  * };
36
36
  * const command = new DeleteClusterCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DeleteClusterResponse
39
+ * // Cluster: { // Cluster
40
+ * // ClusterName: "STRING_VALUE",
41
+ * // Description: "STRING_VALUE",
42
+ * // ClusterArn: "STRING_VALUE",
43
+ * // TotalNodes: Number("int"),
44
+ * // ActiveNodes: Number("int"),
45
+ * // NodeType: "STRING_VALUE",
46
+ * // Status: "STRING_VALUE",
47
+ * // ClusterDiscoveryEndpoint: { // Endpoint
48
+ * // Address: "STRING_VALUE",
49
+ * // Port: Number("int"),
50
+ * // URL: "STRING_VALUE",
51
+ * // },
52
+ * // NodeIdsToRemove: [ // NodeIdentifierList
53
+ * // "STRING_VALUE",
54
+ * // ],
55
+ * // Nodes: [ // NodeList
56
+ * // { // Node
57
+ * // NodeId: "STRING_VALUE",
58
+ * // Endpoint: {
59
+ * // Address: "STRING_VALUE",
60
+ * // Port: Number("int"),
61
+ * // URL: "STRING_VALUE",
62
+ * // },
63
+ * // NodeCreateTime: new Date("TIMESTAMP"),
64
+ * // AvailabilityZone: "STRING_VALUE",
65
+ * // NodeStatus: "STRING_VALUE",
66
+ * // ParameterGroupStatus: "STRING_VALUE",
67
+ * // },
68
+ * // ],
69
+ * // PreferredMaintenanceWindow: "STRING_VALUE",
70
+ * // NotificationConfiguration: { // NotificationConfiguration
71
+ * // TopicArn: "STRING_VALUE",
72
+ * // TopicStatus: "STRING_VALUE",
73
+ * // },
74
+ * // SubnetGroup: "STRING_VALUE",
75
+ * // SecurityGroups: [ // SecurityGroupMembershipList
76
+ * // { // SecurityGroupMembership
77
+ * // SecurityGroupIdentifier: "STRING_VALUE",
78
+ * // Status: "STRING_VALUE",
79
+ * // },
80
+ * // ],
81
+ * // IamRoleArn: "STRING_VALUE",
82
+ * // ParameterGroup: { // ParameterGroupStatus
83
+ * // ParameterGroupName: "STRING_VALUE",
84
+ * // ParameterApplyStatus: "STRING_VALUE",
85
+ * // NodeIdsToReboot: [
86
+ * // "STRING_VALUE",
87
+ * // ],
88
+ * // },
89
+ * // SSEDescription: { // SSEDescription
90
+ * // Status: "STRING_VALUE",
91
+ * // },
92
+ * // ClusterEndpointEncryptionType: "STRING_VALUE",
93
+ * // },
94
+ * // };
95
+ *
38
96
  * ```
39
97
  *
40
98
  * @param DeleteClusterCommandInput - {@link DeleteClusterCommandInput}
@@ -59,6 +117,8 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
59
117
  * @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
60
118
  * <p>The specified service linked role (SLR) was not found.</p>
61
119
  *
120
+ * @throws {@link DAXServiceException}
121
+ * <p>Base exception class for all service exceptions from DAX service.</p>
62
122
  *
63
123
  */
64
124
  export declare class DeleteClusterCommand extends $Command<DeleteClusterCommandInput, DeleteClusterCommandOutput, DAXClientResolvedConfig> {
@@ -32,6 +32,10 @@ export interface DeleteParameterGroupCommandOutput extends DeleteParameterGroupR
32
32
  * };
33
33
  * const command = new DeleteParameterGroupCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DeleteParameterGroupResponse
36
+ * // DeletionMessage: "STRING_VALUE",
37
+ * // };
38
+ *
35
39
  * ```
36
40
  *
37
41
  * @param DeleteParameterGroupCommandInput - {@link DeleteParameterGroupCommandInput}
@@ -55,6 +59,8 @@ export interface DeleteParameterGroupCommandOutput extends DeleteParameterGroupR
55
59
  * @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
56
60
  * <p>The specified service linked role (SLR) was not found.</p>
57
61
  *
62
+ * @throws {@link DAXServiceException}
63
+ * <p>Base exception class for all service exceptions from DAX service.</p>
58
64
  *
59
65
  */
60
66
  export declare class DeleteParameterGroupCommand extends $Command<DeleteParameterGroupCommandInput, DeleteParameterGroupCommandOutput, DAXClientResolvedConfig> {
@@ -35,6 +35,10 @@ export interface DeleteSubnetGroupCommandOutput extends DeleteSubnetGroupRespons
35
35
  * };
36
36
  * const command = new DeleteSubnetGroupCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DeleteSubnetGroupResponse
39
+ * // DeletionMessage: "STRING_VALUE",
40
+ * // };
41
+ *
38
42
  * ```
39
43
  *
40
44
  * @param DeleteSubnetGroupCommandInput - {@link DeleteSubnetGroupCommandInput}
@@ -53,6 +57,8 @@ export interface DeleteSubnetGroupCommandOutput extends DeleteSubnetGroupRespons
53
57
  * <p>The requested subnet group name does not refer to an existing subnet
54
58
  * group.</p>
55
59
  *
60
+ * @throws {@link DAXServiceException}
61
+ * <p>Base exception class for all service exceptions from DAX service.</p>
56
62
  *
57
63
  */
58
64
  export declare class DeleteSubnetGroupCommand extends $Command<DeleteSubnetGroupCommandInput, DeleteSubnetGroupCommandOutput, DAXClientResolvedConfig> {
@@ -47,6 +47,67 @@ export interface DescribeClustersCommandOutput extends DescribeClustersResponse,
47
47
  * };
48
48
  * const command = new DescribeClustersCommand(input);
49
49
  * const response = await client.send(command);
50
+ * // { // DescribeClustersResponse
51
+ * // NextToken: "STRING_VALUE",
52
+ * // Clusters: [ // ClusterList
53
+ * // { // Cluster
54
+ * // ClusterName: "STRING_VALUE",
55
+ * // Description: "STRING_VALUE",
56
+ * // ClusterArn: "STRING_VALUE",
57
+ * // TotalNodes: Number("int"),
58
+ * // ActiveNodes: Number("int"),
59
+ * // NodeType: "STRING_VALUE",
60
+ * // Status: "STRING_VALUE",
61
+ * // ClusterDiscoveryEndpoint: { // Endpoint
62
+ * // Address: "STRING_VALUE",
63
+ * // Port: Number("int"),
64
+ * // URL: "STRING_VALUE",
65
+ * // },
66
+ * // NodeIdsToRemove: [ // NodeIdentifierList
67
+ * // "STRING_VALUE",
68
+ * // ],
69
+ * // Nodes: [ // NodeList
70
+ * // { // Node
71
+ * // NodeId: "STRING_VALUE",
72
+ * // Endpoint: {
73
+ * // Address: "STRING_VALUE",
74
+ * // Port: Number("int"),
75
+ * // URL: "STRING_VALUE",
76
+ * // },
77
+ * // NodeCreateTime: new Date("TIMESTAMP"),
78
+ * // AvailabilityZone: "STRING_VALUE",
79
+ * // NodeStatus: "STRING_VALUE",
80
+ * // ParameterGroupStatus: "STRING_VALUE",
81
+ * // },
82
+ * // ],
83
+ * // PreferredMaintenanceWindow: "STRING_VALUE",
84
+ * // NotificationConfiguration: { // NotificationConfiguration
85
+ * // TopicArn: "STRING_VALUE",
86
+ * // TopicStatus: "STRING_VALUE",
87
+ * // },
88
+ * // SubnetGroup: "STRING_VALUE",
89
+ * // SecurityGroups: [ // SecurityGroupMembershipList
90
+ * // { // SecurityGroupMembership
91
+ * // SecurityGroupIdentifier: "STRING_VALUE",
92
+ * // Status: "STRING_VALUE",
93
+ * // },
94
+ * // ],
95
+ * // IamRoleArn: "STRING_VALUE",
96
+ * // ParameterGroup: { // ParameterGroupStatus
97
+ * // ParameterGroupName: "STRING_VALUE",
98
+ * // ParameterApplyStatus: "STRING_VALUE",
99
+ * // NodeIdsToReboot: [
100
+ * // "STRING_VALUE",
101
+ * // ],
102
+ * // },
103
+ * // SSEDescription: { // SSEDescription
104
+ * // Status: "STRING_VALUE",
105
+ * // },
106
+ * // ClusterEndpointEncryptionType: "STRING_VALUE",
107
+ * // },
108
+ * // ],
109
+ * // };
110
+ *
50
111
  * ```
51
112
  *
52
113
  * @param DescribeClustersCommandInput - {@link DescribeClustersCommandInput}
@@ -67,6 +128,8 @@ export interface DescribeClustersCommandOutput extends DescribeClustersResponse,
67
128
  * @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
68
129
  * <p>The specified service linked role (SLR) was not found.</p>
69
130
  *
131
+ * @throws {@link DAXServiceException}
132
+ * <p>Base exception class for all service exceptions from DAX service.</p>
70
133
  *
71
134
  */
72
135
  export declare class DescribeClustersCommand extends $Command<DescribeClustersCommandInput, DescribeClustersCommandOutput, DAXClientResolvedConfig> {
@@ -33,6 +33,29 @@ export interface DescribeDefaultParametersCommandOutput extends DescribeDefaultP
33
33
  * };
34
34
  * const command = new DescribeDefaultParametersCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeDefaultParametersResponse
37
+ * // NextToken: "STRING_VALUE",
38
+ * // Parameters: [ // ParameterList
39
+ * // { // Parameter
40
+ * // ParameterName: "STRING_VALUE",
41
+ * // ParameterType: "STRING_VALUE",
42
+ * // ParameterValue: "STRING_VALUE",
43
+ * // NodeTypeSpecificValues: [ // NodeTypeSpecificValueList
44
+ * // { // NodeTypeSpecificValue
45
+ * // NodeType: "STRING_VALUE",
46
+ * // Value: "STRING_VALUE",
47
+ * // },
48
+ * // ],
49
+ * // Description: "STRING_VALUE",
50
+ * // Source: "STRING_VALUE",
51
+ * // DataType: "STRING_VALUE",
52
+ * // AllowedValues: "STRING_VALUE",
53
+ * // IsModifiable: "STRING_VALUE",
54
+ * // ChangeType: "STRING_VALUE",
55
+ * // },
56
+ * // ],
57
+ * // };
58
+ *
36
59
  * ```
37
60
  *
38
61
  * @param DescribeDefaultParametersCommandInput - {@link DescribeDefaultParametersCommandInput}
@@ -50,6 +73,8 @@ export interface DescribeDefaultParametersCommandOutput extends DescribeDefaultP
50
73
  * @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
51
74
  * <p>The specified service linked role (SLR) was not found.</p>
52
75
  *
76
+ * @throws {@link DAXServiceException}
77
+ * <p>Base exception class for all service exceptions from DAX service.</p>
53
78
  *
54
79
  */
55
80
  export declare class DescribeDefaultParametersCommand extends $Command<DescribeDefaultParametersCommandInput, DescribeDefaultParametersCommandOutput, DAXClientResolvedConfig> {
@@ -41,6 +41,18 @@ export interface DescribeEventsCommandOutput extends DescribeEventsResponse, __M
41
41
  * };
42
42
  * const command = new DescribeEventsCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // DescribeEventsResponse
45
+ * // NextToken: "STRING_VALUE",
46
+ * // Events: [ // EventList
47
+ * // { // Event
48
+ * // SourceName: "STRING_VALUE",
49
+ * // SourceType: "STRING_VALUE",
50
+ * // Message: "STRING_VALUE",
51
+ * // Date: new Date("TIMESTAMP"),
52
+ * // },
53
+ * // ],
54
+ * // };
55
+ *
44
56
  * ```
45
57
  *
46
58
  * @param DescribeEventsCommandInput - {@link DescribeEventsCommandInput}
@@ -58,6 +70,8 @@ export interface DescribeEventsCommandOutput extends DescribeEventsResponse, __M
58
70
  * @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
59
71
  * <p>The specified service linked role (SLR) was not found.</p>
60
72
  *
73
+ * @throws {@link DAXServiceException}
74
+ * <p>Base exception class for all service exceptions from DAX service.</p>
61
75
  *
62
76
  */
63
77
  export declare class DescribeEventsCommand extends $Command<DescribeEventsCommandInput, DescribeEventsCommandOutput, DAXClientResolvedConfig> {
@@ -36,6 +36,16 @@ export interface DescribeParameterGroupsCommandOutput extends DescribeParameterG
36
36
  * };
37
37
  * const command = new DescribeParameterGroupsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // DescribeParameterGroupsResponse
40
+ * // NextToken: "STRING_VALUE",
41
+ * // ParameterGroups: [ // ParameterGroupList
42
+ * // { // ParameterGroup
43
+ * // ParameterGroupName: "STRING_VALUE",
44
+ * // Description: "STRING_VALUE",
45
+ * // },
46
+ * // ],
47
+ * // };
48
+ *
39
49
  * ```
40
50
  *
41
51
  * @param DescribeParameterGroupsCommandInput - {@link DescribeParameterGroupsCommandInput}
@@ -56,6 +66,8 @@ export interface DescribeParameterGroupsCommandOutput extends DescribeParameterG
56
66
  * @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
57
67
  * <p>The specified service linked role (SLR) was not found.</p>
58
68
  *
69
+ * @throws {@link DAXServiceException}
70
+ * <p>Base exception class for all service exceptions from DAX service.</p>
59
71
  *
60
72
  */
61
73
  export declare class DescribeParameterGroupsCommand extends $Command<DescribeParameterGroupsCommandInput, DescribeParameterGroupsCommandOutput, DAXClientResolvedConfig> {
@@ -34,6 +34,29 @@ export interface DescribeParametersCommandOutput extends DescribeParametersRespo
34
34
  * };
35
35
  * const command = new DescribeParametersCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DescribeParametersResponse
38
+ * // NextToken: "STRING_VALUE",
39
+ * // Parameters: [ // ParameterList
40
+ * // { // Parameter
41
+ * // ParameterName: "STRING_VALUE",
42
+ * // ParameterType: "STRING_VALUE",
43
+ * // ParameterValue: "STRING_VALUE",
44
+ * // NodeTypeSpecificValues: [ // NodeTypeSpecificValueList
45
+ * // { // NodeTypeSpecificValue
46
+ * // NodeType: "STRING_VALUE",
47
+ * // Value: "STRING_VALUE",
48
+ * // },
49
+ * // ],
50
+ * // Description: "STRING_VALUE",
51
+ * // Source: "STRING_VALUE",
52
+ * // DataType: "STRING_VALUE",
53
+ * // AllowedValues: "STRING_VALUE",
54
+ * // IsModifiable: "STRING_VALUE",
55
+ * // ChangeType: "STRING_VALUE",
56
+ * // },
57
+ * // ],
58
+ * // };
59
+ *
37
60
  * ```
38
61
  *
39
62
  * @param DescribeParametersCommandInput - {@link DescribeParametersCommandInput}
@@ -54,6 +77,8 @@ export interface DescribeParametersCommandOutput extends DescribeParametersRespo
54
77
  * @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
55
78
  * <p>The specified service linked role (SLR) was not found.</p>
56
79
  *
80
+ * @throws {@link DAXServiceException}
81
+ * <p>Base exception class for all service exceptions from DAX service.</p>
57
82
  *
58
83
  */
59
84
  export declare class DescribeParametersCommand extends $Command<DescribeParametersCommandInput, DescribeParametersCommandOutput, DAXClientResolvedConfig> {
@@ -36,6 +36,23 @@ export interface DescribeSubnetGroupsCommandOutput extends DescribeSubnetGroupsR
36
36
  * };
37
37
  * const command = new DescribeSubnetGroupsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // DescribeSubnetGroupsResponse
40
+ * // NextToken: "STRING_VALUE",
41
+ * // SubnetGroups: [ // SubnetGroupList
42
+ * // { // SubnetGroup
43
+ * // SubnetGroupName: "STRING_VALUE",
44
+ * // Description: "STRING_VALUE",
45
+ * // VpcId: "STRING_VALUE",
46
+ * // Subnets: [ // SubnetList
47
+ * // { // Subnet
48
+ * // SubnetIdentifier: "STRING_VALUE",
49
+ * // SubnetAvailabilityZone: "STRING_VALUE",
50
+ * // },
51
+ * // ],
52
+ * // },
53
+ * // ],
54
+ * // };
55
+ *
39
56
  * ```
40
57
  *
41
58
  * @param DescribeSubnetGroupsCommandInput - {@link DescribeSubnetGroupsCommandInput}
@@ -51,6 +68,8 @@ export interface DescribeSubnetGroupsCommandOutput extends DescribeSubnetGroupsR
51
68
  * <p>The requested subnet group name does not refer to an existing subnet
52
69
  * group.</p>
53
70
  *
71
+ * @throws {@link DAXServiceException}
72
+ * <p>Base exception class for all service exceptions from DAX service.</p>
54
73
  *
55
74
  */
56
75
  export declare class DescribeSubnetGroupsCommand extends $Command<DescribeSubnetGroupsCommandInput, DescribeSubnetGroupsCommandOutput, DAXClientResolvedConfig> {
@@ -35,6 +35,64 @@ export interface IncreaseReplicationFactorCommandOutput extends IncreaseReplicat
35
35
  * };
36
36
  * const command = new IncreaseReplicationFactorCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // IncreaseReplicationFactorResponse
39
+ * // Cluster: { // Cluster
40
+ * // ClusterName: "STRING_VALUE",
41
+ * // Description: "STRING_VALUE",
42
+ * // ClusterArn: "STRING_VALUE",
43
+ * // TotalNodes: Number("int"),
44
+ * // ActiveNodes: Number("int"),
45
+ * // NodeType: "STRING_VALUE",
46
+ * // Status: "STRING_VALUE",
47
+ * // ClusterDiscoveryEndpoint: { // Endpoint
48
+ * // Address: "STRING_VALUE",
49
+ * // Port: Number("int"),
50
+ * // URL: "STRING_VALUE",
51
+ * // },
52
+ * // NodeIdsToRemove: [ // NodeIdentifierList
53
+ * // "STRING_VALUE",
54
+ * // ],
55
+ * // Nodes: [ // NodeList
56
+ * // { // Node
57
+ * // NodeId: "STRING_VALUE",
58
+ * // Endpoint: {
59
+ * // Address: "STRING_VALUE",
60
+ * // Port: Number("int"),
61
+ * // URL: "STRING_VALUE",
62
+ * // },
63
+ * // NodeCreateTime: new Date("TIMESTAMP"),
64
+ * // AvailabilityZone: "STRING_VALUE",
65
+ * // NodeStatus: "STRING_VALUE",
66
+ * // ParameterGroupStatus: "STRING_VALUE",
67
+ * // },
68
+ * // ],
69
+ * // PreferredMaintenanceWindow: "STRING_VALUE",
70
+ * // NotificationConfiguration: { // NotificationConfiguration
71
+ * // TopicArn: "STRING_VALUE",
72
+ * // TopicStatus: "STRING_VALUE",
73
+ * // },
74
+ * // SubnetGroup: "STRING_VALUE",
75
+ * // SecurityGroups: [ // SecurityGroupMembershipList
76
+ * // { // SecurityGroupMembership
77
+ * // SecurityGroupIdentifier: "STRING_VALUE",
78
+ * // Status: "STRING_VALUE",
79
+ * // },
80
+ * // ],
81
+ * // IamRoleArn: "STRING_VALUE",
82
+ * // ParameterGroup: { // ParameterGroupStatus
83
+ * // ParameterGroupName: "STRING_VALUE",
84
+ * // ParameterApplyStatus: "STRING_VALUE",
85
+ * // NodeIdsToReboot: [
86
+ * // "STRING_VALUE",
87
+ * // ],
88
+ * // },
89
+ * // SSEDescription: { // SSEDescription
90
+ * // Status: "STRING_VALUE",
91
+ * // },
92
+ * // ClusterEndpointEncryptionType: "STRING_VALUE",
93
+ * // },
94
+ * // };
95
+ *
38
96
  * ```
39
97
  *
40
98
  * @param IncreaseReplicationFactorCommandInput - {@link IncreaseReplicationFactorCommandInput}
@@ -74,6 +132,8 @@ export interface IncreaseReplicationFactorCommandOutput extends IncreaseReplicat
74
132
  * @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
75
133
  * <p>The specified service linked role (SLR) was not found.</p>
76
134
  *
135
+ * @throws {@link DAXServiceException}
136
+ * <p>Base exception class for all service exceptions from DAX service.</p>
77
137
  *
78
138
  */
79
139
  export declare class IncreaseReplicationFactorCommand extends $Command<IncreaseReplicationFactorCommandInput, IncreaseReplicationFactorCommandOutput, DAXClientResolvedConfig> {
@@ -33,6 +33,16 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare
33
33
  * };
34
34
  * const command = new ListTagsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListTagsResponse
37
+ * // Tags: [ // TagList
38
+ * // { // Tag
39
+ * // Key: "STRING_VALUE",
40
+ * // Value: "STRING_VALUE",
41
+ * // },
42
+ * // ],
43
+ * // NextToken: "STRING_VALUE",
44
+ * // };
45
+ *
36
46
  * ```
37
47
  *
38
48
  * @param ListTagsCommandInput - {@link ListTagsCommandInput}
@@ -60,6 +70,8 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare
60
70
  * @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
61
71
  * <p>The specified service linked role (SLR) was not found.</p>
62
72
  *
73
+ * @throws {@link DAXServiceException}
74
+ * <p>Base exception class for all service exceptions from DAX service.</p>
63
75
  *
64
76
  */
65
77
  export declare class ListTagsCommand extends $Command<ListTagsCommandInput, ListTagsCommandOutput, DAXClientResolvedConfig> {
@@ -38,6 +38,64 @@ export interface RebootNodeCommandOutput extends RebootNodeResponse, __MetadataB
38
38
  * };
39
39
  * const command = new RebootNodeCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // RebootNodeResponse
42
+ * // Cluster: { // Cluster
43
+ * // ClusterName: "STRING_VALUE",
44
+ * // Description: "STRING_VALUE",
45
+ * // ClusterArn: "STRING_VALUE",
46
+ * // TotalNodes: Number("int"),
47
+ * // ActiveNodes: Number("int"),
48
+ * // NodeType: "STRING_VALUE",
49
+ * // Status: "STRING_VALUE",
50
+ * // ClusterDiscoveryEndpoint: { // Endpoint
51
+ * // Address: "STRING_VALUE",
52
+ * // Port: Number("int"),
53
+ * // URL: "STRING_VALUE",
54
+ * // },
55
+ * // NodeIdsToRemove: [ // NodeIdentifierList
56
+ * // "STRING_VALUE",
57
+ * // ],
58
+ * // Nodes: [ // NodeList
59
+ * // { // Node
60
+ * // NodeId: "STRING_VALUE",
61
+ * // Endpoint: {
62
+ * // Address: "STRING_VALUE",
63
+ * // Port: Number("int"),
64
+ * // URL: "STRING_VALUE",
65
+ * // },
66
+ * // NodeCreateTime: new Date("TIMESTAMP"),
67
+ * // AvailabilityZone: "STRING_VALUE",
68
+ * // NodeStatus: "STRING_VALUE",
69
+ * // ParameterGroupStatus: "STRING_VALUE",
70
+ * // },
71
+ * // ],
72
+ * // PreferredMaintenanceWindow: "STRING_VALUE",
73
+ * // NotificationConfiguration: { // NotificationConfiguration
74
+ * // TopicArn: "STRING_VALUE",
75
+ * // TopicStatus: "STRING_VALUE",
76
+ * // },
77
+ * // SubnetGroup: "STRING_VALUE",
78
+ * // SecurityGroups: [ // SecurityGroupMembershipList
79
+ * // { // SecurityGroupMembership
80
+ * // SecurityGroupIdentifier: "STRING_VALUE",
81
+ * // Status: "STRING_VALUE",
82
+ * // },
83
+ * // ],
84
+ * // IamRoleArn: "STRING_VALUE",
85
+ * // ParameterGroup: { // ParameterGroupStatus
86
+ * // ParameterGroupName: "STRING_VALUE",
87
+ * // ParameterApplyStatus: "STRING_VALUE",
88
+ * // NodeIdsToReboot: [
89
+ * // "STRING_VALUE",
90
+ * // ],
91
+ * // },
92
+ * // SSEDescription: { // SSEDescription
93
+ * // Status: "STRING_VALUE",
94
+ * // },
95
+ * // ClusterEndpointEncryptionType: "STRING_VALUE",
96
+ * // },
97
+ * // };
98
+ *
41
99
  * ```
42
100
  *
43
101
  * @param RebootNodeCommandInput - {@link RebootNodeCommandInput}
@@ -65,6 +123,8 @@ export interface RebootNodeCommandOutput extends RebootNodeResponse, __MetadataB
65
123
  * @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
66
124
  * <p>The specified service linked role (SLR) was not found.</p>
67
125
  *
126
+ * @throws {@link DAXServiceException}
127
+ * <p>Base exception class for all service exceptions from DAX service.</p>
68
128
  *
69
129
  */
70
130
  export declare class RebootNodeCommand extends $Command<RebootNodeCommandInput, RebootNodeCommandOutput, DAXClientResolvedConfig> {
@@ -38,6 +38,15 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
38
38
  * };
39
39
  * const command = new TagResourceCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // TagResourceResponse
42
+ * // Tags: [ // TagList
43
+ * // { // Tag
44
+ * // Key: "STRING_VALUE",
45
+ * // Value: "STRING_VALUE",
46
+ * // },
47
+ * // ],
48
+ * // };
49
+ *
41
50
  * ```
42
51
  *
43
52
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -68,6 +77,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
68
77
  * @throws {@link TagQuotaPerResourceExceeded} (client fault)
69
78
  * <p>You have exceeded the maximum number of tags for this DAX cluster.</p>
70
79
  *
80
+ * @throws {@link DAXServiceException}
81
+ * <p>Base exception class for all service exceptions from DAX service.</p>
71
82
  *
72
83
  */
73
84
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DAXClientResolvedConfig> {
@@ -35,6 +35,15 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
35
35
  * };
36
36
  * const command = new UntagResourceCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // UntagResourceResponse
39
+ * // Tags: [ // TagList
40
+ * // { // Tag
41
+ * // Key: "STRING_VALUE",
42
+ * // Value: "STRING_VALUE",
43
+ * // },
44
+ * // ],
45
+ * // };
46
+ *
38
47
  * ```
39
48
  *
40
49
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -65,6 +74,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
65
74
  * @throws {@link TagNotFoundFault} (client fault)
66
75
  * <p>The tag does not exist.</p>
67
76
  *
77
+ * @throws {@link DAXServiceException}
78
+ * <p>Base exception class for all service exceptions from DAX service.</p>
68
79
  *
69
80
  */
70
81
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, DAXClientResolvedConfig> {
@@ -41,6 +41,64 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __Met
41
41
  * };
42
42
  * const command = new UpdateClusterCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // UpdateClusterResponse
45
+ * // Cluster: { // Cluster
46
+ * // ClusterName: "STRING_VALUE",
47
+ * // Description: "STRING_VALUE",
48
+ * // ClusterArn: "STRING_VALUE",
49
+ * // TotalNodes: Number("int"),
50
+ * // ActiveNodes: Number("int"),
51
+ * // NodeType: "STRING_VALUE",
52
+ * // Status: "STRING_VALUE",
53
+ * // ClusterDiscoveryEndpoint: { // Endpoint
54
+ * // Address: "STRING_VALUE",
55
+ * // Port: Number("int"),
56
+ * // URL: "STRING_VALUE",
57
+ * // },
58
+ * // NodeIdsToRemove: [ // NodeIdentifierList
59
+ * // "STRING_VALUE",
60
+ * // ],
61
+ * // Nodes: [ // NodeList
62
+ * // { // Node
63
+ * // NodeId: "STRING_VALUE",
64
+ * // Endpoint: {
65
+ * // Address: "STRING_VALUE",
66
+ * // Port: Number("int"),
67
+ * // URL: "STRING_VALUE",
68
+ * // },
69
+ * // NodeCreateTime: new Date("TIMESTAMP"),
70
+ * // AvailabilityZone: "STRING_VALUE",
71
+ * // NodeStatus: "STRING_VALUE",
72
+ * // ParameterGroupStatus: "STRING_VALUE",
73
+ * // },
74
+ * // ],
75
+ * // PreferredMaintenanceWindow: "STRING_VALUE",
76
+ * // NotificationConfiguration: { // NotificationConfiguration
77
+ * // TopicArn: "STRING_VALUE",
78
+ * // TopicStatus: "STRING_VALUE",
79
+ * // },
80
+ * // SubnetGroup: "STRING_VALUE",
81
+ * // SecurityGroups: [ // SecurityGroupMembershipList
82
+ * // { // SecurityGroupMembership
83
+ * // SecurityGroupIdentifier: "STRING_VALUE",
84
+ * // Status: "STRING_VALUE",
85
+ * // },
86
+ * // ],
87
+ * // IamRoleArn: "STRING_VALUE",
88
+ * // ParameterGroup: { // ParameterGroupStatus
89
+ * // ParameterGroupName: "STRING_VALUE",
90
+ * // ParameterApplyStatus: "STRING_VALUE",
91
+ * // NodeIdsToReboot: [
92
+ * // "STRING_VALUE",
93
+ * // ],
94
+ * // },
95
+ * // SSEDescription: { // SSEDescription
96
+ * // Status: "STRING_VALUE",
97
+ * // },
98
+ * // ClusterEndpointEncryptionType: "STRING_VALUE",
99
+ * // },
100
+ * // };
101
+ *
44
102
  * ```
45
103
  *
46
104
  * @param UpdateClusterCommandInput - {@link UpdateClusterCommandInput}
@@ -71,6 +129,8 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __Met
71
129
  * @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
72
130
  * <p>The specified service linked role (SLR) was not found.</p>
73
131
  *
132
+ * @throws {@link DAXServiceException}
133
+ * <p>Base exception class for all service exceptions from DAX service.</p>
74
134
  *
75
135
  */
76
136
  export declare class UpdateClusterCommand extends $Command<UpdateClusterCommandInput, UpdateClusterCommandOutput, DAXClientResolvedConfig> {
@@ -39,6 +39,13 @@ export interface UpdateParameterGroupCommandOutput extends UpdateParameterGroupR
39
39
  * };
40
40
  * const command = new UpdateParameterGroupCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // UpdateParameterGroupResponse
43
+ * // ParameterGroup: { // ParameterGroup
44
+ * // ParameterGroupName: "STRING_VALUE",
45
+ * // Description: "STRING_VALUE",
46
+ * // },
47
+ * // };
48
+ *
42
49
  * ```
43
50
  *
44
51
  * @param UpdateParameterGroupCommandInput - {@link UpdateParameterGroupCommandInput}
@@ -62,6 +69,8 @@ export interface UpdateParameterGroupCommandOutput extends UpdateParameterGroupR
62
69
  * @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
63
70
  * <p>The specified service linked role (SLR) was not found.</p>
64
71
  *
72
+ * @throws {@link DAXServiceException}
73
+ * <p>Base exception class for all service exceptions from DAX service.</p>
65
74
  *
66
75
  */
67
76
  export declare class UpdateParameterGroupCommand extends $Command<UpdateParameterGroupCommandInput, UpdateParameterGroupCommandOutput, DAXClientResolvedConfig> {
@@ -35,6 +35,20 @@ export interface UpdateSubnetGroupCommandOutput extends UpdateSubnetGroupRespons
35
35
  * };
36
36
  * const command = new UpdateSubnetGroupCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // UpdateSubnetGroupResponse
39
+ * // SubnetGroup: { // SubnetGroup
40
+ * // SubnetGroupName: "STRING_VALUE",
41
+ * // Description: "STRING_VALUE",
42
+ * // VpcId: "STRING_VALUE",
43
+ * // Subnets: [ // SubnetList
44
+ * // { // Subnet
45
+ * // SubnetIdentifier: "STRING_VALUE",
46
+ * // SubnetAvailabilityZone: "STRING_VALUE",
47
+ * // },
48
+ * // ],
49
+ * // },
50
+ * // };
51
+ *
38
52
  * ```
39
53
  *
40
54
  * @param UpdateSubnetGroupCommandInput - {@link UpdateSubnetGroupCommandInput}
@@ -60,6 +74,8 @@ export interface UpdateSubnetGroupCommandOutput extends UpdateSubnetGroupRespons
60
74
  * <p>The request cannot be processed because it would exceed the allowed number of
61
75
  * subnets in a subnet group.</p>
62
76
  *
77
+ * @throws {@link DAXServiceException}
78
+ * <p>Base exception class for all service exceptions from DAX service.</p>
63
79
  *
64
80
  */
65
81
  export declare class UpdateSubnetGroupCommand extends $Command<UpdateSubnetGroupCommandInput, UpdateSubnetGroupCommandOutput, DAXClientResolvedConfig> {
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.325.0",
4
+ "version": "3.326.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.325.0",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
26
+ "@aws-sdk/credential-provider-node": "3.326.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",