@aws-sdk/client-elasticache 3.325.0 → 3.327.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +11 -0
- package/dist-types/commands/AuthorizeCacheSecurityGroupIngressCommand.d.ts +18 -0
- package/dist-types/commands/BatchApplyUpdateActionCommand.d.ts +22 -0
- package/dist-types/commands/BatchStopUpdateActionCommand.d.ts +22 -0
- package/dist-types/commands/CompleteMigrationCommand.d.ts +123 -0
- package/dist-types/commands/CopySnapshotCommand.d.ts +57 -0
- package/dist-types/commands/CreateCacheClusterCommand.d.ts +117 -0
- package/dist-types/commands/CreateCacheParameterGroupCommand.d.ts +12 -0
- package/dist-types/commands/CreateCacheSecurityGroupCommand.d.ts +18 -0
- package/dist-types/commands/CreateCacheSubnetGroupCommand.d.ts +28 -0
- package/dist-types/commands/CreateGlobalReplicationGroupCommand.d.ts +33 -0
- package/dist-types/commands/CreateReplicationGroupCommand.d.ts +123 -0
- package/dist-types/commands/CreateSnapshotCommand.d.ts +57 -0
- package/dist-types/commands/CreateUserCommand.d.ts +19 -0
- package/dist-types/commands/CreateUserGroupCommand.d.ts +24 -0
- package/dist-types/commands/DecreaseNodeGroupsInGlobalReplicationGroupCommand.d.ts +33 -0
- package/dist-types/commands/DecreaseReplicaCountCommand.d.ts +123 -0
- package/dist-types/commands/DeleteCacheClusterCommand.d.ts +117 -0
- package/dist-types/commands/DeleteCacheParameterGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteCacheSecurityGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteCacheSubnetGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteGlobalReplicationGroupCommand.d.ts +33 -0
- package/dist-types/commands/DeleteReplicationGroupCommand.d.ts +123 -0
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +57 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +19 -0
- package/dist-types/commands/DeleteUserGroupCommand.d.ts +24 -0
- package/dist-types/commands/DescribeCacheClustersCommand.d.ts +120 -0
- package/dist-types/commands/DescribeCacheEngineVersionsCommand.d.ts +15 -0
- package/dist-types/commands/DescribeCacheParameterGroupsCommand.d.ts +15 -0
- package/dist-types/commands/DescribeCacheParametersCommand.d.ts +37 -0
- package/dist-types/commands/DescribeCacheSecurityGroupsCommand.d.ts +21 -0
- package/dist-types/commands/DescribeCacheSubnetGroupsCommand.d.ts +31 -0
- package/dist-types/commands/DescribeEngineDefaultParametersCommand.d.ts +40 -0
- package/dist-types/commands/DescribeEventsCommand.d.ts +14 -0
- package/dist-types/commands/DescribeGlobalReplicationGroupsCommand.d.ts +36 -0
- package/dist-types/commands/DescribeReplicationGroupsCommand.d.ts +126 -0
- package/dist-types/commands/DescribeReservedCacheNodesCommand.d.ts +28 -0
- package/dist-types/commands/DescribeReservedCacheNodesOfferingsCommand.d.ts +23 -0
- package/dist-types/commands/DescribeServiceUpdatesCommand.d.ts +22 -0
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +60 -0
- package/dist-types/commands/DescribeUpdateActionsCommand.d.ts +55 -0
- package/dist-types/commands/DescribeUserGroupsCommand.d.ts +29 -0
- package/dist-types/commands/DescribeUsersCommand.d.ts +24 -0
- package/dist-types/commands/DisassociateGlobalReplicationGroupCommand.d.ts +33 -0
- package/dist-types/commands/FailoverGlobalReplicationGroupCommand.d.ts +33 -0
- package/dist-types/commands/IncreaseNodeGroupsInGlobalReplicationGroupCommand.d.ts +33 -0
- package/dist-types/commands/IncreaseReplicaCountCommand.d.ts +123 -0
- package/dist-types/commands/ListAllowedNodeTypeModificationsCommand.d.ts +11 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/ModifyCacheClusterCommand.d.ts +117 -0
- package/dist-types/commands/ModifyCacheParameterGroupCommand.d.ts +6 -0
- package/dist-types/commands/ModifyCacheSubnetGroupCommand.d.ts +28 -0
- package/dist-types/commands/ModifyGlobalReplicationGroupCommand.d.ts +33 -0
- package/dist-types/commands/ModifyReplicationGroupCommand.d.ts +123 -0
- package/dist-types/commands/ModifyReplicationGroupShardConfigurationCommand.d.ts +123 -0
- package/dist-types/commands/ModifyUserCommand.d.ts +19 -0
- package/dist-types/commands/ModifyUserGroupCommand.d.ts +24 -0
- package/dist-types/commands/PurchaseReservedCacheNodesOfferingCommand.d.ts +25 -0
- package/dist-types/commands/RebalanceSlotsInGlobalReplicationGroupCommand.d.ts +33 -0
- package/dist-types/commands/RebootCacheClusterCommand.d.ts +117 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +11 -0
- package/dist-types/commands/ResetCacheParameterGroupCommand.d.ts +6 -0
- package/dist-types/commands/RevokeCacheSecurityGroupIngressCommand.d.ts +18 -0
- package/dist-types/commands/StartMigrationCommand.d.ts +123 -0
- package/dist-types/commands/TestFailoverCommand.d.ts +123 -0
- package/package.json +7 -7
|
@@ -135,6 +135,127 @@ export interface CreateReplicationGroupCommandOutput extends CreateReplicationGr
|
|
|
135
135
|
* };
|
|
136
136
|
* const command = new CreateReplicationGroupCommand(input);
|
|
137
137
|
* const response = await client.send(command);
|
|
138
|
+
* // { // CreateReplicationGroupResult
|
|
139
|
+
* // ReplicationGroup: { // ReplicationGroup
|
|
140
|
+
* // ReplicationGroupId: "STRING_VALUE",
|
|
141
|
+
* // Description: "STRING_VALUE",
|
|
142
|
+
* // GlobalReplicationGroupInfo: { // GlobalReplicationGroupInfo
|
|
143
|
+
* // GlobalReplicationGroupId: "STRING_VALUE",
|
|
144
|
+
* // GlobalReplicationGroupMemberRole: "STRING_VALUE",
|
|
145
|
+
* // },
|
|
146
|
+
* // Status: "STRING_VALUE",
|
|
147
|
+
* // PendingModifiedValues: { // ReplicationGroupPendingModifiedValues
|
|
148
|
+
* // PrimaryClusterId: "STRING_VALUE",
|
|
149
|
+
* // AutomaticFailoverStatus: "enabled" || "disabled",
|
|
150
|
+
* // Resharding: { // ReshardingStatus
|
|
151
|
+
* // SlotMigration: { // SlotMigration
|
|
152
|
+
* // ProgressPercentage: Number("double"),
|
|
153
|
+
* // },
|
|
154
|
+
* // },
|
|
155
|
+
* // AuthTokenStatus: "SETTING" || "ROTATING",
|
|
156
|
+
* // UserGroups: { // UserGroupsUpdateStatus
|
|
157
|
+
* // UserGroupIdsToAdd: [ // UserGroupIdList
|
|
158
|
+
* // "STRING_VALUE",
|
|
159
|
+
* // ],
|
|
160
|
+
* // UserGroupIdsToRemove: [
|
|
161
|
+
* // "STRING_VALUE",
|
|
162
|
+
* // ],
|
|
163
|
+
* // },
|
|
164
|
+
* // LogDeliveryConfigurations: [ // PendingLogDeliveryConfigurationList
|
|
165
|
+
* // { // PendingLogDeliveryConfiguration
|
|
166
|
+
* // LogType: "slow-log" || "engine-log",
|
|
167
|
+
* // DestinationType: "cloudwatch-logs" || "kinesis-firehose",
|
|
168
|
+
* // DestinationDetails: { // DestinationDetails
|
|
169
|
+
* // CloudWatchLogsDetails: { // CloudWatchLogsDestinationDetails
|
|
170
|
+
* // LogGroup: "STRING_VALUE",
|
|
171
|
+
* // },
|
|
172
|
+
* // KinesisFirehoseDetails: { // KinesisFirehoseDestinationDetails
|
|
173
|
+
* // DeliveryStream: "STRING_VALUE",
|
|
174
|
+
* // },
|
|
175
|
+
* // },
|
|
176
|
+
* // LogFormat: "text" || "json",
|
|
177
|
+
* // },
|
|
178
|
+
* // ],
|
|
179
|
+
* // TransitEncryptionEnabled: true || false,
|
|
180
|
+
* // TransitEncryptionMode: "preferred" || "required",
|
|
181
|
+
* // },
|
|
182
|
+
* // MemberClusters: [ // ClusterIdList
|
|
183
|
+
* // "STRING_VALUE",
|
|
184
|
+
* // ],
|
|
185
|
+
* // NodeGroups: [ // NodeGroupList
|
|
186
|
+
* // { // NodeGroup
|
|
187
|
+
* // NodeGroupId: "STRING_VALUE",
|
|
188
|
+
* // Status: "STRING_VALUE",
|
|
189
|
+
* // PrimaryEndpoint: { // Endpoint
|
|
190
|
+
* // Address: "STRING_VALUE",
|
|
191
|
+
* // Port: Number("int"),
|
|
192
|
+
* // },
|
|
193
|
+
* // ReaderEndpoint: {
|
|
194
|
+
* // Address: "STRING_VALUE",
|
|
195
|
+
* // Port: Number("int"),
|
|
196
|
+
* // },
|
|
197
|
+
* // Slots: "STRING_VALUE",
|
|
198
|
+
* // NodeGroupMembers: [ // NodeGroupMemberList
|
|
199
|
+
* // { // NodeGroupMember
|
|
200
|
+
* // CacheClusterId: "STRING_VALUE",
|
|
201
|
+
* // CacheNodeId: "STRING_VALUE",
|
|
202
|
+
* // ReadEndpoint: {
|
|
203
|
+
* // Address: "STRING_VALUE",
|
|
204
|
+
* // Port: Number("int"),
|
|
205
|
+
* // },
|
|
206
|
+
* // PreferredAvailabilityZone: "STRING_VALUE",
|
|
207
|
+
* // PreferredOutpostArn: "STRING_VALUE",
|
|
208
|
+
* // CurrentRole: "STRING_VALUE",
|
|
209
|
+
* // },
|
|
210
|
+
* // ],
|
|
211
|
+
* // },
|
|
212
|
+
* // ],
|
|
213
|
+
* // SnapshottingClusterId: "STRING_VALUE",
|
|
214
|
+
* // AutomaticFailover: "enabled" || "disabled" || "enabling" || "disabling",
|
|
215
|
+
* // MultiAZ: "enabled" || "disabled",
|
|
216
|
+
* // ConfigurationEndpoint: "<Endpoint>",
|
|
217
|
+
* // SnapshotRetentionLimit: Number("int"),
|
|
218
|
+
* // SnapshotWindow: "STRING_VALUE",
|
|
219
|
+
* // ClusterEnabled: true || false,
|
|
220
|
+
* // CacheNodeType: "STRING_VALUE",
|
|
221
|
+
* // AuthTokenEnabled: true || false,
|
|
222
|
+
* // AuthTokenLastModifiedDate: new Date("TIMESTAMP"),
|
|
223
|
+
* // TransitEncryptionEnabled: true || false,
|
|
224
|
+
* // AtRestEncryptionEnabled: true || false,
|
|
225
|
+
* // MemberClustersOutpostArns: [ // ReplicationGroupOutpostArnList
|
|
226
|
+
* // "STRING_VALUE",
|
|
227
|
+
* // ],
|
|
228
|
+
* // KmsKeyId: "STRING_VALUE",
|
|
229
|
+
* // ARN: "STRING_VALUE",
|
|
230
|
+
* // UserGroupIds: [
|
|
231
|
+
* // "STRING_VALUE",
|
|
232
|
+
* // ],
|
|
233
|
+
* // LogDeliveryConfigurations: [ // LogDeliveryConfigurationList
|
|
234
|
+
* // { // LogDeliveryConfiguration
|
|
235
|
+
* // LogType: "slow-log" || "engine-log",
|
|
236
|
+
* // DestinationType: "cloudwatch-logs" || "kinesis-firehose",
|
|
237
|
+
* // DestinationDetails: {
|
|
238
|
+
* // CloudWatchLogsDetails: {
|
|
239
|
+
* // LogGroup: "STRING_VALUE",
|
|
240
|
+
* // },
|
|
241
|
+
* // KinesisFirehoseDetails: {
|
|
242
|
+
* // DeliveryStream: "STRING_VALUE",
|
|
243
|
+
* // },
|
|
244
|
+
* // },
|
|
245
|
+
* // LogFormat: "text" || "json",
|
|
246
|
+
* // Status: "active" || "enabling" || "modifying" || "disabling" || "error",
|
|
247
|
+
* // Message: "STRING_VALUE",
|
|
248
|
+
* // },
|
|
249
|
+
* // ],
|
|
250
|
+
* // ReplicationGroupCreateTime: new Date("TIMESTAMP"),
|
|
251
|
+
* // DataTiering: "enabled" || "disabled",
|
|
252
|
+
* // AutoMinorVersionUpgrade: true || false,
|
|
253
|
+
* // NetworkType: "ipv4" || "ipv6" || "dual_stack",
|
|
254
|
+
* // IpDiscovery: "ipv4" || "ipv6",
|
|
255
|
+
* // TransitEncryptionMode: "preferred" || "required",
|
|
256
|
+
* // },
|
|
257
|
+
* // };
|
|
258
|
+
*
|
|
138
259
|
* ```
|
|
139
260
|
*
|
|
140
261
|
* @param CreateReplicationGroupCommandInput - {@link CreateReplicationGroupCommandInput}
|
|
@@ -202,6 +323,8 @@ export interface CreateReplicationGroupCommandOutput extends CreateReplicationGr
|
|
|
202
323
|
* @throws {@link UserGroupNotFoundFault} (client fault)
|
|
203
324
|
* <p>The user group was not found or does not exist</p>
|
|
204
325
|
*
|
|
326
|
+
* @throws {@link ElastiCacheServiceException}
|
|
327
|
+
* <p>Base exception class for all service exceptions from ElastiCache service.</p>
|
|
205
328
|
*
|
|
206
329
|
* @example CreateCacheReplicationGroup
|
|
207
330
|
* ```javascript
|
|
@@ -44,6 +44,61 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResult, __Met
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new CreateSnapshotCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // CreateSnapshotResult
|
|
48
|
+
* // Snapshot: { // Snapshot
|
|
49
|
+
* // SnapshotName: "STRING_VALUE",
|
|
50
|
+
* // ReplicationGroupId: "STRING_VALUE",
|
|
51
|
+
* // ReplicationGroupDescription: "STRING_VALUE",
|
|
52
|
+
* // CacheClusterId: "STRING_VALUE",
|
|
53
|
+
* // SnapshotStatus: "STRING_VALUE",
|
|
54
|
+
* // SnapshotSource: "STRING_VALUE",
|
|
55
|
+
* // CacheNodeType: "STRING_VALUE",
|
|
56
|
+
* // Engine: "STRING_VALUE",
|
|
57
|
+
* // EngineVersion: "STRING_VALUE",
|
|
58
|
+
* // NumCacheNodes: Number("int"),
|
|
59
|
+
* // PreferredAvailabilityZone: "STRING_VALUE",
|
|
60
|
+
* // PreferredOutpostArn: "STRING_VALUE",
|
|
61
|
+
* // CacheClusterCreateTime: new Date("TIMESTAMP"),
|
|
62
|
+
* // PreferredMaintenanceWindow: "STRING_VALUE",
|
|
63
|
+
* // TopicArn: "STRING_VALUE",
|
|
64
|
+
* // Port: Number("int"),
|
|
65
|
+
* // CacheParameterGroupName: "STRING_VALUE",
|
|
66
|
+
* // CacheSubnetGroupName: "STRING_VALUE",
|
|
67
|
+
* // VpcId: "STRING_VALUE",
|
|
68
|
+
* // AutoMinorVersionUpgrade: true || false,
|
|
69
|
+
* // SnapshotRetentionLimit: Number("int"),
|
|
70
|
+
* // SnapshotWindow: "STRING_VALUE",
|
|
71
|
+
* // NumNodeGroups: Number("int"),
|
|
72
|
+
* // AutomaticFailover: "enabled" || "disabled" || "enabling" || "disabling",
|
|
73
|
+
* // NodeSnapshots: [ // NodeSnapshotList
|
|
74
|
+
* // { // NodeSnapshot
|
|
75
|
+
* // CacheClusterId: "STRING_VALUE",
|
|
76
|
+
* // NodeGroupId: "STRING_VALUE",
|
|
77
|
+
* // CacheNodeId: "STRING_VALUE",
|
|
78
|
+
* // NodeGroupConfiguration: { // NodeGroupConfiguration
|
|
79
|
+
* // NodeGroupId: "STRING_VALUE",
|
|
80
|
+
* // Slots: "STRING_VALUE",
|
|
81
|
+
* // ReplicaCount: Number("int"),
|
|
82
|
+
* // PrimaryAvailabilityZone: "STRING_VALUE",
|
|
83
|
+
* // ReplicaAvailabilityZones: [ // AvailabilityZonesList
|
|
84
|
+
* // "STRING_VALUE",
|
|
85
|
+
* // ],
|
|
86
|
+
* // PrimaryOutpostArn: "STRING_VALUE",
|
|
87
|
+
* // ReplicaOutpostArns: [ // OutpostArnsList
|
|
88
|
+
* // "STRING_VALUE",
|
|
89
|
+
* // ],
|
|
90
|
+
* // },
|
|
91
|
+
* // CacheSize: "STRING_VALUE",
|
|
92
|
+
* // CacheNodeCreateTime: new Date("TIMESTAMP"),
|
|
93
|
+
* // SnapshotCreateTime: new Date("TIMESTAMP"),
|
|
94
|
+
* // },
|
|
95
|
+
* // ],
|
|
96
|
+
* // KmsKeyId: "STRING_VALUE",
|
|
97
|
+
* // ARN: "STRING_VALUE",
|
|
98
|
+
* // DataTiering: "enabled" || "disabled",
|
|
99
|
+
* // },
|
|
100
|
+
* // };
|
|
101
|
+
*
|
|
47
102
|
* ```
|
|
48
103
|
*
|
|
49
104
|
* @param CreateSnapshotCommandInput - {@link CreateSnapshotCommandInput}
|
|
@@ -92,6 +147,8 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResult, __Met
|
|
|
92
147
|
* @throws {@link TagQuotaPerResourceExceeded} (client fault)
|
|
93
148
|
* <p>The request cannot be processed because it would cause the resource to have more than the allowed number of tags. The maximum number of tags permitted on a resource is 50.</p>
|
|
94
149
|
*
|
|
150
|
+
* @throws {@link ElastiCacheServiceException}
|
|
151
|
+
* <p>Base exception class for all service exceptions from ElastiCache service.</p>
|
|
95
152
|
*
|
|
96
153
|
* @example CreateSnapshot - NonClustered Redis, no read-replicas
|
|
97
154
|
* ```javascript
|
|
@@ -50,6 +50,23 @@ export interface CreateUserCommandOutput extends User, __MetadataBearer {
|
|
|
50
50
|
* };
|
|
51
51
|
* const command = new CreateUserCommand(input);
|
|
52
52
|
* const response = await client.send(command);
|
|
53
|
+
* // { // User
|
|
54
|
+
* // UserId: "STRING_VALUE",
|
|
55
|
+
* // UserName: "STRING_VALUE",
|
|
56
|
+
* // Status: "STRING_VALUE",
|
|
57
|
+
* // Engine: "STRING_VALUE",
|
|
58
|
+
* // MinimumEngineVersion: "STRING_VALUE",
|
|
59
|
+
* // AccessString: "STRING_VALUE",
|
|
60
|
+
* // UserGroupIds: [ // UserGroupIdList
|
|
61
|
+
* // "STRING_VALUE",
|
|
62
|
+
* // ],
|
|
63
|
+
* // Authentication: { // Authentication
|
|
64
|
+
* // Type: "password" || "no-password" || "iam",
|
|
65
|
+
* // PasswordCount: Number("int"),
|
|
66
|
+
* // },
|
|
67
|
+
* // ARN: "STRING_VALUE",
|
|
68
|
+
* // };
|
|
69
|
+
*
|
|
53
70
|
* ```
|
|
54
71
|
*
|
|
55
72
|
* @param CreateUserCommandInput - {@link CreateUserCommandInput}
|
|
@@ -79,6 +96,8 @@ export interface CreateUserCommandOutput extends User, __MetadataBearer {
|
|
|
79
96
|
* @throws {@link UserQuotaExceededFault} (client fault)
|
|
80
97
|
* <p>The quota of users has been exceeded.</p>
|
|
81
98
|
*
|
|
99
|
+
* @throws {@link ElastiCacheServiceException}
|
|
100
|
+
* <p>Base exception class for all service exceptions from ElastiCache service.</p>
|
|
82
101
|
*
|
|
83
102
|
*/
|
|
84
103
|
export declare class CreateUserCommand extends $Command<CreateUserCommandInput, CreateUserCommandOutput, ElastiCacheClientResolvedConfig> {
|
|
@@ -42,6 +42,28 @@ export interface CreateUserGroupCommandOutput extends UserGroup, __MetadataBeare
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new CreateUserGroupCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // UserGroup
|
|
46
|
+
* // UserGroupId: "STRING_VALUE",
|
|
47
|
+
* // Status: "STRING_VALUE",
|
|
48
|
+
* // Engine: "STRING_VALUE",
|
|
49
|
+
* // UserIds: [ // UserIdList
|
|
50
|
+
* // "STRING_VALUE",
|
|
51
|
+
* // ],
|
|
52
|
+
* // MinimumEngineVersion: "STRING_VALUE",
|
|
53
|
+
* // PendingChanges: { // UserGroupPendingChanges
|
|
54
|
+
* // UserIdsToRemove: [
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // UserIdsToAdd: [
|
|
58
|
+
* // "STRING_VALUE",
|
|
59
|
+
* // ],
|
|
60
|
+
* // },
|
|
61
|
+
* // ReplicationGroups: [ // UGReplicationGroupIdList
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // ARN: "STRING_VALUE",
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
45
67
|
* ```
|
|
46
68
|
*
|
|
47
69
|
* @param CreateUserGroupCommandInput - {@link CreateUserGroupCommandInput}
|
|
@@ -74,6 +96,8 @@ export interface CreateUserGroupCommandOutput extends UserGroup, __MetadataBeare
|
|
|
74
96
|
* @throws {@link UserNotFoundFault} (client fault)
|
|
75
97
|
* <p>The user does not exist or could not be found.</p>
|
|
76
98
|
*
|
|
99
|
+
* @throws {@link ElastiCacheServiceException}
|
|
100
|
+
* <p>Base exception class for all service exceptions from ElastiCache service.</p>
|
|
77
101
|
*
|
|
78
102
|
*/
|
|
79
103
|
export declare class CreateUserGroupCommand extends $Command<CreateUserGroupCommandInput, CreateUserGroupCommandOutput, ElastiCacheClientResolvedConfig> {
|
|
@@ -39,6 +39,37 @@ export interface DecreaseNodeGroupsInGlobalReplicationGroupCommandOutput extends
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new DecreaseNodeGroupsInGlobalReplicationGroupCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // DecreaseNodeGroupsInGlobalReplicationGroupResult
|
|
43
|
+
* // GlobalReplicationGroup: { // GlobalReplicationGroup
|
|
44
|
+
* // GlobalReplicationGroupId: "STRING_VALUE",
|
|
45
|
+
* // GlobalReplicationGroupDescription: "STRING_VALUE",
|
|
46
|
+
* // Status: "STRING_VALUE",
|
|
47
|
+
* // CacheNodeType: "STRING_VALUE",
|
|
48
|
+
* // Engine: "STRING_VALUE",
|
|
49
|
+
* // EngineVersion: "STRING_VALUE",
|
|
50
|
+
* // Members: [ // GlobalReplicationGroupMemberList
|
|
51
|
+
* // { // GlobalReplicationGroupMember
|
|
52
|
+
* // ReplicationGroupId: "STRING_VALUE",
|
|
53
|
+
* // ReplicationGroupRegion: "STRING_VALUE",
|
|
54
|
+
* // Role: "STRING_VALUE",
|
|
55
|
+
* // AutomaticFailover: "enabled" || "disabled" || "enabling" || "disabling",
|
|
56
|
+
* // Status: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // ClusterEnabled: true || false,
|
|
60
|
+
* // GlobalNodeGroups: [ // GlobalNodeGroupList
|
|
61
|
+
* // { // GlobalNodeGroup
|
|
62
|
+
* // GlobalNodeGroupId: "STRING_VALUE",
|
|
63
|
+
* // Slots: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // AuthTokenEnabled: true || false,
|
|
67
|
+
* // TransitEncryptionEnabled: true || false,
|
|
68
|
+
* // AtRestEncryptionEnabled: true || false,
|
|
69
|
+
* // ARN: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
42
73
|
* ```
|
|
43
74
|
*
|
|
44
75
|
* @param DecreaseNodeGroupsInGlobalReplicationGroupCommandInput - {@link DecreaseNodeGroupsInGlobalReplicationGroupCommandInput}
|
|
@@ -59,6 +90,8 @@ export interface DecreaseNodeGroupsInGlobalReplicationGroupCommandOutput extends
|
|
|
59
90
|
* @throws {@link InvalidParameterValueException} (client fault)
|
|
60
91
|
* <p>The value for a parameter is invalid.</p>
|
|
61
92
|
*
|
|
93
|
+
* @throws {@link ElastiCacheServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from ElastiCache service.</p>
|
|
62
95
|
*
|
|
63
96
|
*/
|
|
64
97
|
export declare class DecreaseNodeGroupsInGlobalReplicationGroupCommand extends $Command<DecreaseNodeGroupsInGlobalReplicationGroupCommandInput, DecreaseNodeGroupsInGlobalReplicationGroupCommandOutput, ElastiCacheClientResolvedConfig> {
|
|
@@ -50,6 +50,127 @@ export interface DecreaseReplicaCountCommandOutput extends DecreaseReplicaCountR
|
|
|
50
50
|
* };
|
|
51
51
|
* const command = new DecreaseReplicaCountCommand(input);
|
|
52
52
|
* const response = await client.send(command);
|
|
53
|
+
* // { // DecreaseReplicaCountResult
|
|
54
|
+
* // ReplicationGroup: { // ReplicationGroup
|
|
55
|
+
* // ReplicationGroupId: "STRING_VALUE",
|
|
56
|
+
* // Description: "STRING_VALUE",
|
|
57
|
+
* // GlobalReplicationGroupInfo: { // GlobalReplicationGroupInfo
|
|
58
|
+
* // GlobalReplicationGroupId: "STRING_VALUE",
|
|
59
|
+
* // GlobalReplicationGroupMemberRole: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // Status: "STRING_VALUE",
|
|
62
|
+
* // PendingModifiedValues: { // ReplicationGroupPendingModifiedValues
|
|
63
|
+
* // PrimaryClusterId: "STRING_VALUE",
|
|
64
|
+
* // AutomaticFailoverStatus: "enabled" || "disabled",
|
|
65
|
+
* // Resharding: { // ReshardingStatus
|
|
66
|
+
* // SlotMigration: { // SlotMigration
|
|
67
|
+
* // ProgressPercentage: Number("double"),
|
|
68
|
+
* // },
|
|
69
|
+
* // },
|
|
70
|
+
* // AuthTokenStatus: "SETTING" || "ROTATING",
|
|
71
|
+
* // UserGroups: { // UserGroupsUpdateStatus
|
|
72
|
+
* // UserGroupIdsToAdd: [ // UserGroupIdList
|
|
73
|
+
* // "STRING_VALUE",
|
|
74
|
+
* // ],
|
|
75
|
+
* // UserGroupIdsToRemove: [
|
|
76
|
+
* // "STRING_VALUE",
|
|
77
|
+
* // ],
|
|
78
|
+
* // },
|
|
79
|
+
* // LogDeliveryConfigurations: [ // PendingLogDeliveryConfigurationList
|
|
80
|
+
* // { // PendingLogDeliveryConfiguration
|
|
81
|
+
* // LogType: "slow-log" || "engine-log",
|
|
82
|
+
* // DestinationType: "cloudwatch-logs" || "kinesis-firehose",
|
|
83
|
+
* // DestinationDetails: { // DestinationDetails
|
|
84
|
+
* // CloudWatchLogsDetails: { // CloudWatchLogsDestinationDetails
|
|
85
|
+
* // LogGroup: "STRING_VALUE",
|
|
86
|
+
* // },
|
|
87
|
+
* // KinesisFirehoseDetails: { // KinesisFirehoseDestinationDetails
|
|
88
|
+
* // DeliveryStream: "STRING_VALUE",
|
|
89
|
+
* // },
|
|
90
|
+
* // },
|
|
91
|
+
* // LogFormat: "text" || "json",
|
|
92
|
+
* // },
|
|
93
|
+
* // ],
|
|
94
|
+
* // TransitEncryptionEnabled: true || false,
|
|
95
|
+
* // TransitEncryptionMode: "preferred" || "required",
|
|
96
|
+
* // },
|
|
97
|
+
* // MemberClusters: [ // ClusterIdList
|
|
98
|
+
* // "STRING_VALUE",
|
|
99
|
+
* // ],
|
|
100
|
+
* // NodeGroups: [ // NodeGroupList
|
|
101
|
+
* // { // NodeGroup
|
|
102
|
+
* // NodeGroupId: "STRING_VALUE",
|
|
103
|
+
* // Status: "STRING_VALUE",
|
|
104
|
+
* // PrimaryEndpoint: { // Endpoint
|
|
105
|
+
* // Address: "STRING_VALUE",
|
|
106
|
+
* // Port: Number("int"),
|
|
107
|
+
* // },
|
|
108
|
+
* // ReaderEndpoint: {
|
|
109
|
+
* // Address: "STRING_VALUE",
|
|
110
|
+
* // Port: Number("int"),
|
|
111
|
+
* // },
|
|
112
|
+
* // Slots: "STRING_VALUE",
|
|
113
|
+
* // NodeGroupMembers: [ // NodeGroupMemberList
|
|
114
|
+
* // { // NodeGroupMember
|
|
115
|
+
* // CacheClusterId: "STRING_VALUE",
|
|
116
|
+
* // CacheNodeId: "STRING_VALUE",
|
|
117
|
+
* // ReadEndpoint: {
|
|
118
|
+
* // Address: "STRING_VALUE",
|
|
119
|
+
* // Port: Number("int"),
|
|
120
|
+
* // },
|
|
121
|
+
* // PreferredAvailabilityZone: "STRING_VALUE",
|
|
122
|
+
* // PreferredOutpostArn: "STRING_VALUE",
|
|
123
|
+
* // CurrentRole: "STRING_VALUE",
|
|
124
|
+
* // },
|
|
125
|
+
* // ],
|
|
126
|
+
* // },
|
|
127
|
+
* // ],
|
|
128
|
+
* // SnapshottingClusterId: "STRING_VALUE",
|
|
129
|
+
* // AutomaticFailover: "enabled" || "disabled" || "enabling" || "disabling",
|
|
130
|
+
* // MultiAZ: "enabled" || "disabled",
|
|
131
|
+
* // ConfigurationEndpoint: "<Endpoint>",
|
|
132
|
+
* // SnapshotRetentionLimit: Number("int"),
|
|
133
|
+
* // SnapshotWindow: "STRING_VALUE",
|
|
134
|
+
* // ClusterEnabled: true || false,
|
|
135
|
+
* // CacheNodeType: "STRING_VALUE",
|
|
136
|
+
* // AuthTokenEnabled: true || false,
|
|
137
|
+
* // AuthTokenLastModifiedDate: new Date("TIMESTAMP"),
|
|
138
|
+
* // TransitEncryptionEnabled: true || false,
|
|
139
|
+
* // AtRestEncryptionEnabled: true || false,
|
|
140
|
+
* // MemberClustersOutpostArns: [ // ReplicationGroupOutpostArnList
|
|
141
|
+
* // "STRING_VALUE",
|
|
142
|
+
* // ],
|
|
143
|
+
* // KmsKeyId: "STRING_VALUE",
|
|
144
|
+
* // ARN: "STRING_VALUE",
|
|
145
|
+
* // UserGroupIds: [
|
|
146
|
+
* // "STRING_VALUE",
|
|
147
|
+
* // ],
|
|
148
|
+
* // LogDeliveryConfigurations: [ // LogDeliveryConfigurationList
|
|
149
|
+
* // { // LogDeliveryConfiguration
|
|
150
|
+
* // LogType: "slow-log" || "engine-log",
|
|
151
|
+
* // DestinationType: "cloudwatch-logs" || "kinesis-firehose",
|
|
152
|
+
* // DestinationDetails: {
|
|
153
|
+
* // CloudWatchLogsDetails: {
|
|
154
|
+
* // LogGroup: "STRING_VALUE",
|
|
155
|
+
* // },
|
|
156
|
+
* // KinesisFirehoseDetails: {
|
|
157
|
+
* // DeliveryStream: "STRING_VALUE",
|
|
158
|
+
* // },
|
|
159
|
+
* // },
|
|
160
|
+
* // LogFormat: "text" || "json",
|
|
161
|
+
* // Status: "active" || "enabling" || "modifying" || "disabling" || "error",
|
|
162
|
+
* // Message: "STRING_VALUE",
|
|
163
|
+
* // },
|
|
164
|
+
* // ],
|
|
165
|
+
* // ReplicationGroupCreateTime: new Date("TIMESTAMP"),
|
|
166
|
+
* // DataTiering: "enabled" || "disabled",
|
|
167
|
+
* // AutoMinorVersionUpgrade: true || false,
|
|
168
|
+
* // NetworkType: "ipv4" || "ipv6" || "dual_stack",
|
|
169
|
+
* // IpDiscovery: "ipv4" || "ipv6",
|
|
170
|
+
* // TransitEncryptionMode: "preferred" || "required",
|
|
171
|
+
* // },
|
|
172
|
+
* // };
|
|
173
|
+
*
|
|
53
174
|
* ```
|
|
54
175
|
*
|
|
55
176
|
* @param DecreaseReplicaCountCommandInput - {@link DecreaseReplicaCountCommandInput}
|
|
@@ -96,6 +217,8 @@ export interface DecreaseReplicaCountCommandOutput extends DecreaseReplicaCountR
|
|
|
96
217
|
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
97
218
|
* <p>The specified service linked role (SLR) was not found.</p>
|
|
98
219
|
*
|
|
220
|
+
* @throws {@link ElastiCacheServiceException}
|
|
221
|
+
* <p>Base exception class for all service exceptions from ElastiCache service.</p>
|
|
99
222
|
*
|
|
100
223
|
*/
|
|
101
224
|
export declare class DecreaseReplicaCountCommand extends $Command<DecreaseReplicaCountCommandInput, DecreaseReplicaCountCommandOutput, ElastiCacheClientResolvedConfig> {
|
|
@@ -60,6 +60,121 @@ export interface DeleteCacheClusterCommandOutput extends DeleteCacheClusterResul
|
|
|
60
60
|
* };
|
|
61
61
|
* const command = new DeleteCacheClusterCommand(input);
|
|
62
62
|
* const response = await client.send(command);
|
|
63
|
+
* // { // DeleteCacheClusterResult
|
|
64
|
+
* // CacheCluster: { // CacheCluster
|
|
65
|
+
* // CacheClusterId: "STRING_VALUE",
|
|
66
|
+
* // ConfigurationEndpoint: { // Endpoint
|
|
67
|
+
* // Address: "STRING_VALUE",
|
|
68
|
+
* // Port: Number("int"),
|
|
69
|
+
* // },
|
|
70
|
+
* // ClientDownloadLandingPage: "STRING_VALUE",
|
|
71
|
+
* // CacheNodeType: "STRING_VALUE",
|
|
72
|
+
* // Engine: "STRING_VALUE",
|
|
73
|
+
* // EngineVersion: "STRING_VALUE",
|
|
74
|
+
* // CacheClusterStatus: "STRING_VALUE",
|
|
75
|
+
* // NumCacheNodes: Number("int"),
|
|
76
|
+
* // PreferredAvailabilityZone: "STRING_VALUE",
|
|
77
|
+
* // PreferredOutpostArn: "STRING_VALUE",
|
|
78
|
+
* // CacheClusterCreateTime: new Date("TIMESTAMP"),
|
|
79
|
+
* // PreferredMaintenanceWindow: "STRING_VALUE",
|
|
80
|
+
* // PendingModifiedValues: { // PendingModifiedValues
|
|
81
|
+
* // NumCacheNodes: Number("int"),
|
|
82
|
+
* // CacheNodeIdsToRemove: [ // CacheNodeIdsList
|
|
83
|
+
* // "STRING_VALUE",
|
|
84
|
+
* // ],
|
|
85
|
+
* // EngineVersion: "STRING_VALUE",
|
|
86
|
+
* // CacheNodeType: "STRING_VALUE",
|
|
87
|
+
* // AuthTokenStatus: "SETTING" || "ROTATING",
|
|
88
|
+
* // LogDeliveryConfigurations: [ // PendingLogDeliveryConfigurationList
|
|
89
|
+
* // { // PendingLogDeliveryConfiguration
|
|
90
|
+
* // LogType: "slow-log" || "engine-log",
|
|
91
|
+
* // DestinationType: "cloudwatch-logs" || "kinesis-firehose",
|
|
92
|
+
* // DestinationDetails: { // DestinationDetails
|
|
93
|
+
* // CloudWatchLogsDetails: { // CloudWatchLogsDestinationDetails
|
|
94
|
+
* // LogGroup: "STRING_VALUE",
|
|
95
|
+
* // },
|
|
96
|
+
* // KinesisFirehoseDetails: { // KinesisFirehoseDestinationDetails
|
|
97
|
+
* // DeliveryStream: "STRING_VALUE",
|
|
98
|
+
* // },
|
|
99
|
+
* // },
|
|
100
|
+
* // LogFormat: "text" || "json",
|
|
101
|
+
* // },
|
|
102
|
+
* // ],
|
|
103
|
+
* // TransitEncryptionEnabled: true || false,
|
|
104
|
+
* // TransitEncryptionMode: "preferred" || "required",
|
|
105
|
+
* // },
|
|
106
|
+
* // NotificationConfiguration: { // NotificationConfiguration
|
|
107
|
+
* // TopicArn: "STRING_VALUE",
|
|
108
|
+
* // TopicStatus: "STRING_VALUE",
|
|
109
|
+
* // },
|
|
110
|
+
* // CacheSecurityGroups: [ // CacheSecurityGroupMembershipList
|
|
111
|
+
* // { // CacheSecurityGroupMembership
|
|
112
|
+
* // CacheSecurityGroupName: "STRING_VALUE",
|
|
113
|
+
* // Status: "STRING_VALUE",
|
|
114
|
+
* // },
|
|
115
|
+
* // ],
|
|
116
|
+
* // CacheParameterGroup: { // CacheParameterGroupStatus
|
|
117
|
+
* // CacheParameterGroupName: "STRING_VALUE",
|
|
118
|
+
* // ParameterApplyStatus: "STRING_VALUE",
|
|
119
|
+
* // CacheNodeIdsToReboot: [
|
|
120
|
+
* // "STRING_VALUE",
|
|
121
|
+
* // ],
|
|
122
|
+
* // },
|
|
123
|
+
* // CacheSubnetGroupName: "STRING_VALUE",
|
|
124
|
+
* // CacheNodes: [ // CacheNodeList
|
|
125
|
+
* // { // CacheNode
|
|
126
|
+
* // CacheNodeId: "STRING_VALUE",
|
|
127
|
+
* // CacheNodeStatus: "STRING_VALUE",
|
|
128
|
+
* // CacheNodeCreateTime: new Date("TIMESTAMP"),
|
|
129
|
+
* // Endpoint: {
|
|
130
|
+
* // Address: "STRING_VALUE",
|
|
131
|
+
* // Port: Number("int"),
|
|
132
|
+
* // },
|
|
133
|
+
* // ParameterGroupStatus: "STRING_VALUE",
|
|
134
|
+
* // SourceCacheNodeId: "STRING_VALUE",
|
|
135
|
+
* // CustomerAvailabilityZone: "STRING_VALUE",
|
|
136
|
+
* // CustomerOutpostArn: "STRING_VALUE",
|
|
137
|
+
* // },
|
|
138
|
+
* // ],
|
|
139
|
+
* // AutoMinorVersionUpgrade: true || false,
|
|
140
|
+
* // SecurityGroups: [ // SecurityGroupMembershipList
|
|
141
|
+
* // { // SecurityGroupMembership
|
|
142
|
+
* // SecurityGroupId: "STRING_VALUE",
|
|
143
|
+
* // Status: "STRING_VALUE",
|
|
144
|
+
* // },
|
|
145
|
+
* // ],
|
|
146
|
+
* // ReplicationGroupId: "STRING_VALUE",
|
|
147
|
+
* // SnapshotRetentionLimit: Number("int"),
|
|
148
|
+
* // SnapshotWindow: "STRING_VALUE",
|
|
149
|
+
* // AuthTokenEnabled: true || false,
|
|
150
|
+
* // AuthTokenLastModifiedDate: new Date("TIMESTAMP"),
|
|
151
|
+
* // TransitEncryptionEnabled: true || false,
|
|
152
|
+
* // AtRestEncryptionEnabled: true || false,
|
|
153
|
+
* // ARN: "STRING_VALUE",
|
|
154
|
+
* // ReplicationGroupLogDeliveryEnabled: true || false,
|
|
155
|
+
* // LogDeliveryConfigurations: [ // LogDeliveryConfigurationList
|
|
156
|
+
* // { // LogDeliveryConfiguration
|
|
157
|
+
* // LogType: "slow-log" || "engine-log",
|
|
158
|
+
* // DestinationType: "cloudwatch-logs" || "kinesis-firehose",
|
|
159
|
+
* // DestinationDetails: {
|
|
160
|
+
* // CloudWatchLogsDetails: {
|
|
161
|
+
* // LogGroup: "STRING_VALUE",
|
|
162
|
+
* // },
|
|
163
|
+
* // KinesisFirehoseDetails: {
|
|
164
|
+
* // DeliveryStream: "STRING_VALUE",
|
|
165
|
+
* // },
|
|
166
|
+
* // },
|
|
167
|
+
* // LogFormat: "text" || "json",
|
|
168
|
+
* // Status: "active" || "enabling" || "modifying" || "disabling" || "error",
|
|
169
|
+
* // Message: "STRING_VALUE",
|
|
170
|
+
* // },
|
|
171
|
+
* // ],
|
|
172
|
+
* // NetworkType: "ipv4" || "ipv6" || "dual_stack",
|
|
173
|
+
* // IpDiscovery: "ipv4" || "ipv6",
|
|
174
|
+
* // TransitEncryptionMode: "preferred" || "required",
|
|
175
|
+
* // },
|
|
176
|
+
* // };
|
|
177
|
+
*
|
|
63
178
|
* ```
|
|
64
179
|
*
|
|
65
180
|
* @param DeleteCacheClusterCommandInput - {@link DeleteCacheClusterCommandInput}
|
|
@@ -99,6 +214,8 @@ export interface DeleteCacheClusterCommandOutput extends DeleteCacheClusterResul
|
|
|
99
214
|
* @throws {@link SnapshotQuotaExceededFault} (client fault)
|
|
100
215
|
* <p>The request cannot be processed because it would exceed the maximum number of snapshots.</p>
|
|
101
216
|
*
|
|
217
|
+
* @throws {@link ElastiCacheServiceException}
|
|
218
|
+
* <p>Base exception class for all service exceptions from ElastiCache service.</p>
|
|
102
219
|
*
|
|
103
220
|
* @example DeleteCacheCluster
|
|
104
221
|
* ```javascript
|
|
@@ -33,6 +33,8 @@ export interface DeleteCacheParameterGroupCommandOutput extends __MetadataBearer
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteCacheParameterGroupCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeleteCacheParameterGroupCommandInput - {@link DeleteCacheParameterGroupCommandInput}
|
|
@@ -53,6 +55,8 @@ export interface DeleteCacheParameterGroupCommandOutput extends __MetadataBearer
|
|
|
53
55
|
* @throws {@link InvalidParameterValueException} (client fault)
|
|
54
56
|
* <p>The value for a parameter is invalid.</p>
|
|
55
57
|
*
|
|
58
|
+
* @throws {@link ElastiCacheServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from ElastiCache service.</p>
|
|
56
60
|
*
|
|
57
61
|
* @example DeleteCacheParameterGroup
|
|
58
62
|
* ```javascript
|
|
@@ -34,6 +34,8 @@ export interface DeleteCacheSecurityGroupCommandOutput extends __MetadataBearer
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteCacheSecurityGroupCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param DeleteCacheSecurityGroupCommandInput - {@link DeleteCacheSecurityGroupCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteCacheSecurityGroupCommandOutput extends __MetadataBearer
|
|
|
54
56
|
* @throws {@link InvalidParameterValueException} (client fault)
|
|
55
57
|
* <p>The value for a parameter is invalid.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link ElastiCacheServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from ElastiCache service.</p>
|
|
57
61
|
*
|
|
58
62
|
* @example DeleteCacheSecurityGroup
|
|
59
63
|
* ```javascript
|
|
@@ -34,6 +34,8 @@ export interface DeleteCacheSubnetGroupCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteCacheSubnetGroupCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param DeleteCacheSubnetGroupCommandInput - {@link DeleteCacheSubnetGroupCommandInput}
|
|
@@ -48,6 +50,8 @@ export interface DeleteCacheSubnetGroupCommandOutput extends __MetadataBearer {
|
|
|
48
50
|
* @throws {@link CacheSubnetGroupNotFoundFault} (client fault)
|
|
49
51
|
* <p>The requested cache subnet group name does not refer to an existing cache subnet group.</p>
|
|
50
52
|
*
|
|
53
|
+
* @throws {@link ElastiCacheServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from ElastiCache service.</p>
|
|
51
55
|
*
|
|
52
56
|
* @example DeleteCacheSubnetGroup
|
|
53
57
|
* ```javascript
|