@aws-sdk/client-elasticache 3.687.0 → 3.692.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.
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ElastiCacheServiceException as __BaseException } from "./ElastiCacheServiceException";
|
|
3
3
|
export interface Tag {
|
|
4
|
-
Key?: string;
|
|
5
|
-
Value?: string;
|
|
4
|
+
Key?: string | undefined;
|
|
5
|
+
Value?: string | undefined;
|
|
6
6
|
}
|
|
7
7
|
export interface AddTagsToResourceMessage {
|
|
8
8
|
ResourceName: string | undefined;
|
|
@@ -116,7 +116,7 @@ export declare class SnapshotNotFoundFault extends __BaseException {
|
|
|
116
116
|
);
|
|
117
117
|
}
|
|
118
118
|
export interface TagListMessage {
|
|
119
|
-
TagList?: Tag[];
|
|
119
|
+
TagList?: Tag[] | undefined;
|
|
120
120
|
}
|
|
121
121
|
export declare class TagQuotaPerResourceExceeded extends __BaseException {
|
|
122
122
|
readonly name: "TagQuotaPerResourceExceeded";
|
|
@@ -138,8 +138,8 @@ export declare class UserNotFoundFault extends __BaseException {
|
|
|
138
138
|
constructor(opts: __ExceptionOptionType<UserNotFoundFault, __BaseException>);
|
|
139
139
|
}
|
|
140
140
|
export interface AllowedNodeTypeModificationsMessage {
|
|
141
|
-
ScaleUpModifications?: string[];
|
|
142
|
-
ScaleDownModifications?: string[];
|
|
141
|
+
ScaleUpModifications?: string[] | undefined;
|
|
142
|
+
ScaleDownModifications?: string[] | undefined;
|
|
143
143
|
}
|
|
144
144
|
export declare class AuthorizationAlreadyExistsFault extends __BaseException {
|
|
145
145
|
readonly name: "AuthorizationAlreadyExistsFault";
|
|
@@ -157,19 +157,19 @@ export interface AuthorizeCacheSecurityGroupIngressMessage {
|
|
|
157
157
|
EC2SecurityGroupOwnerId: string | undefined;
|
|
158
158
|
}
|
|
159
159
|
export interface EC2SecurityGroup {
|
|
160
|
-
Status?: string;
|
|
161
|
-
EC2SecurityGroupName?: string;
|
|
162
|
-
EC2SecurityGroupOwnerId?: string;
|
|
160
|
+
Status?: string | undefined;
|
|
161
|
+
EC2SecurityGroupName?: string | undefined;
|
|
162
|
+
EC2SecurityGroupOwnerId?: string | undefined;
|
|
163
163
|
}
|
|
164
164
|
export interface CacheSecurityGroup {
|
|
165
|
-
OwnerId?: string;
|
|
166
|
-
CacheSecurityGroupName?: string;
|
|
167
|
-
Description?: string;
|
|
168
|
-
EC2SecurityGroups?: EC2SecurityGroup[];
|
|
169
|
-
ARN?: string;
|
|
165
|
+
OwnerId?: string | undefined;
|
|
166
|
+
CacheSecurityGroupName?: string | undefined;
|
|
167
|
+
Description?: string | undefined;
|
|
168
|
+
EC2SecurityGroups?: EC2SecurityGroup[] | undefined;
|
|
169
|
+
ARN?: string | undefined;
|
|
170
170
|
}
|
|
171
171
|
export interface AuthorizeCacheSecurityGroupIngressResult {
|
|
172
|
-
CacheSecurityGroup?: CacheSecurityGroup;
|
|
172
|
+
CacheSecurityGroup?: CacheSecurityGroup | undefined;
|
|
173
173
|
}
|
|
174
174
|
export declare class InvalidCacheSecurityGroupStateFault extends __BaseException {
|
|
175
175
|
readonly name: "InvalidCacheSecurityGroupStateFault";
|
|
@@ -199,8 +199,8 @@ export declare class InvalidParameterValueException extends __BaseException {
|
|
|
199
199
|
);
|
|
200
200
|
}
|
|
201
201
|
export interface BatchApplyUpdateActionMessage {
|
|
202
|
-
ReplicationGroupIds?: string[];
|
|
203
|
-
CacheClusterIds?: string[];
|
|
202
|
+
ReplicationGroupIds?: string[] | undefined;
|
|
203
|
+
CacheClusterIds?: string[] | undefined;
|
|
204
204
|
ServiceUpdateName: string | undefined;
|
|
205
205
|
}
|
|
206
206
|
export declare class ServiceUpdateNotFoundFault extends __BaseException {
|
|
@@ -224,30 +224,30 @@ export declare const UpdateActionStatus: {
|
|
|
224
224
|
export type UpdateActionStatus =
|
|
225
225
|
(typeof UpdateActionStatus)[keyof typeof UpdateActionStatus];
|
|
226
226
|
export interface ProcessedUpdateAction {
|
|
227
|
-
ReplicationGroupId?: string;
|
|
228
|
-
CacheClusterId?: string;
|
|
229
|
-
ServiceUpdateName?: string;
|
|
230
|
-
UpdateActionStatus?: UpdateActionStatus;
|
|
227
|
+
ReplicationGroupId?: string | undefined;
|
|
228
|
+
CacheClusterId?: string | undefined;
|
|
229
|
+
ServiceUpdateName?: string | undefined;
|
|
230
|
+
UpdateActionStatus?: UpdateActionStatus | undefined;
|
|
231
231
|
}
|
|
232
232
|
export interface UnprocessedUpdateAction {
|
|
233
|
-
ReplicationGroupId?: string;
|
|
234
|
-
CacheClusterId?: string;
|
|
235
|
-
ServiceUpdateName?: string;
|
|
236
|
-
ErrorType?: string;
|
|
237
|
-
ErrorMessage?: string;
|
|
233
|
+
ReplicationGroupId?: string | undefined;
|
|
234
|
+
CacheClusterId?: string | undefined;
|
|
235
|
+
ServiceUpdateName?: string | undefined;
|
|
236
|
+
ErrorType?: string | undefined;
|
|
237
|
+
ErrorMessage?: string | undefined;
|
|
238
238
|
}
|
|
239
239
|
export interface UpdateActionResultsMessage {
|
|
240
|
-
ProcessedUpdateActions?: ProcessedUpdateAction[];
|
|
241
|
-
UnprocessedUpdateActions?: UnprocessedUpdateAction[];
|
|
240
|
+
ProcessedUpdateActions?: ProcessedUpdateAction[] | undefined;
|
|
241
|
+
UnprocessedUpdateActions?: UnprocessedUpdateAction[] | undefined;
|
|
242
242
|
}
|
|
243
243
|
export interface BatchStopUpdateActionMessage {
|
|
244
|
-
ReplicationGroupIds?: string[];
|
|
245
|
-
CacheClusterIds?: string[];
|
|
244
|
+
ReplicationGroupIds?: string[] | undefined;
|
|
245
|
+
CacheClusterIds?: string[] | undefined;
|
|
246
246
|
ServiceUpdateName: string | undefined;
|
|
247
247
|
}
|
|
248
248
|
export interface CompleteMigrationMessage {
|
|
249
249
|
ReplicationGroupId: string | undefined;
|
|
250
|
-
Force?: boolean;
|
|
250
|
+
Force?: boolean | undefined;
|
|
251
251
|
}
|
|
252
252
|
export declare const AutomaticFailoverStatus: {
|
|
253
253
|
readonly DISABLED: "disabled";
|
|
@@ -264,8 +264,8 @@ export declare const ClusterMode: {
|
|
|
264
264
|
};
|
|
265
265
|
export type ClusterMode = (typeof ClusterMode)[keyof typeof ClusterMode];
|
|
266
266
|
export interface Endpoint {
|
|
267
|
-
Address?: string;
|
|
268
|
-
Port?: number;
|
|
267
|
+
Address?: string | undefined;
|
|
268
|
+
Port?: number | undefined;
|
|
269
269
|
}
|
|
270
270
|
export declare const DataTieringStatus: {
|
|
271
271
|
readonly DISABLED: "disabled";
|
|
@@ -274,8 +274,8 @@ export declare const DataTieringStatus: {
|
|
|
274
274
|
export type DataTieringStatus =
|
|
275
275
|
(typeof DataTieringStatus)[keyof typeof DataTieringStatus];
|
|
276
276
|
export interface GlobalReplicationGroupInfo {
|
|
277
|
-
GlobalReplicationGroupId?: string;
|
|
278
|
-
GlobalReplicationGroupMemberRole?: string;
|
|
277
|
+
GlobalReplicationGroupId?: string | undefined;
|
|
278
|
+
GlobalReplicationGroupMemberRole?: string | undefined;
|
|
279
279
|
}
|
|
280
280
|
export declare const IpDiscovery: {
|
|
281
281
|
readonly IPV4: "ipv4";
|
|
@@ -283,14 +283,14 @@ export declare const IpDiscovery: {
|
|
|
283
283
|
};
|
|
284
284
|
export type IpDiscovery = (typeof IpDiscovery)[keyof typeof IpDiscovery];
|
|
285
285
|
export interface CloudWatchLogsDestinationDetails {
|
|
286
|
-
LogGroup?: string;
|
|
286
|
+
LogGroup?: string | undefined;
|
|
287
287
|
}
|
|
288
288
|
export interface KinesisFirehoseDestinationDetails {
|
|
289
|
-
DeliveryStream?: string;
|
|
289
|
+
DeliveryStream?: string | undefined;
|
|
290
290
|
}
|
|
291
291
|
export interface DestinationDetails {
|
|
292
|
-
CloudWatchLogsDetails?: CloudWatchLogsDestinationDetails;
|
|
293
|
-
KinesisFirehoseDetails?: KinesisFirehoseDestinationDetails;
|
|
292
|
+
CloudWatchLogsDetails?: CloudWatchLogsDestinationDetails | undefined;
|
|
293
|
+
KinesisFirehoseDetails?: KinesisFirehoseDestinationDetails | undefined;
|
|
294
294
|
}
|
|
295
295
|
export declare const DestinationType: {
|
|
296
296
|
readonly CloudWatchLogs: "cloudwatch-logs";
|
|
@@ -318,12 +318,12 @@ export declare const LogDeliveryConfigurationStatus: {
|
|
|
318
318
|
export type LogDeliveryConfigurationStatus =
|
|
319
319
|
(typeof LogDeliveryConfigurationStatus)[keyof typeof LogDeliveryConfigurationStatus];
|
|
320
320
|
export interface LogDeliveryConfiguration {
|
|
321
|
-
LogType?: LogType;
|
|
322
|
-
DestinationType?: DestinationType;
|
|
323
|
-
DestinationDetails?: DestinationDetails;
|
|
324
|
-
LogFormat?: LogFormat;
|
|
325
|
-
Status?: LogDeliveryConfigurationStatus;
|
|
326
|
-
Message?: string;
|
|
321
|
+
LogType?: LogType | undefined;
|
|
322
|
+
DestinationType?: DestinationType | undefined;
|
|
323
|
+
DestinationDetails?: DestinationDetails | undefined;
|
|
324
|
+
LogFormat?: LogFormat | undefined;
|
|
325
|
+
Status?: LogDeliveryConfigurationStatus | undefined;
|
|
326
|
+
Message?: string | undefined;
|
|
327
327
|
}
|
|
328
328
|
export declare const MultiAZStatus: {
|
|
329
329
|
readonly DISABLED: "disabled";
|
|
@@ -337,20 +337,20 @@ export declare const NetworkType: {
|
|
|
337
337
|
};
|
|
338
338
|
export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
|
|
339
339
|
export interface NodeGroupMember {
|
|
340
|
-
CacheClusterId?: string;
|
|
341
|
-
CacheNodeId?: string;
|
|
342
|
-
ReadEndpoint?: Endpoint;
|
|
343
|
-
PreferredAvailabilityZone?: string;
|
|
344
|
-
PreferredOutpostArn?: string;
|
|
345
|
-
CurrentRole?: string;
|
|
340
|
+
CacheClusterId?: string | undefined;
|
|
341
|
+
CacheNodeId?: string | undefined;
|
|
342
|
+
ReadEndpoint?: Endpoint | undefined;
|
|
343
|
+
PreferredAvailabilityZone?: string | undefined;
|
|
344
|
+
PreferredOutpostArn?: string | undefined;
|
|
345
|
+
CurrentRole?: string | undefined;
|
|
346
346
|
}
|
|
347
347
|
export interface NodeGroup {
|
|
348
|
-
NodeGroupId?: string;
|
|
349
|
-
Status?: string;
|
|
350
|
-
PrimaryEndpoint?: Endpoint;
|
|
351
|
-
ReaderEndpoint?: Endpoint;
|
|
352
|
-
Slots?: string;
|
|
353
|
-
NodeGroupMembers?: NodeGroupMember[];
|
|
348
|
+
NodeGroupId?: string | undefined;
|
|
349
|
+
Status?: string | undefined;
|
|
350
|
+
PrimaryEndpoint?: Endpoint | undefined;
|
|
351
|
+
ReaderEndpoint?: Endpoint | undefined;
|
|
352
|
+
Slots?: string | undefined;
|
|
353
|
+
NodeGroupMembers?: NodeGroupMember[] | undefined;
|
|
354
354
|
}
|
|
355
355
|
export declare const AuthTokenUpdateStatus: {
|
|
356
356
|
readonly ROTATING: "ROTATING";
|
|
@@ -365,16 +365,16 @@ export declare const PendingAutomaticFailoverStatus: {
|
|
|
365
365
|
export type PendingAutomaticFailoverStatus =
|
|
366
366
|
(typeof PendingAutomaticFailoverStatus)[keyof typeof PendingAutomaticFailoverStatus];
|
|
367
367
|
export interface PendingLogDeliveryConfiguration {
|
|
368
|
-
LogType?: LogType;
|
|
369
|
-
DestinationType?: DestinationType;
|
|
370
|
-
DestinationDetails?: DestinationDetails;
|
|
371
|
-
LogFormat?: LogFormat;
|
|
368
|
+
LogType?: LogType | undefined;
|
|
369
|
+
DestinationType?: DestinationType | undefined;
|
|
370
|
+
DestinationDetails?: DestinationDetails | undefined;
|
|
371
|
+
LogFormat?: LogFormat | undefined;
|
|
372
372
|
}
|
|
373
373
|
export interface SlotMigration {
|
|
374
|
-
ProgressPercentage?: number;
|
|
374
|
+
ProgressPercentage?: number | undefined;
|
|
375
375
|
}
|
|
376
376
|
export interface ReshardingStatus {
|
|
377
|
-
SlotMigration?: SlotMigration;
|
|
377
|
+
SlotMigration?: SlotMigration | undefined;
|
|
378
378
|
}
|
|
379
379
|
export declare const TransitEncryptionMode: {
|
|
380
380
|
readonly PREFERRED: "preferred";
|
|
@@ -383,56 +383,56 @@ export declare const TransitEncryptionMode: {
|
|
|
383
383
|
export type TransitEncryptionMode =
|
|
384
384
|
(typeof TransitEncryptionMode)[keyof typeof TransitEncryptionMode];
|
|
385
385
|
export interface UserGroupsUpdateStatus {
|
|
386
|
-
UserGroupIdsToAdd?: string[];
|
|
387
|
-
UserGroupIdsToRemove?: string[];
|
|
386
|
+
UserGroupIdsToAdd?: string[] | undefined;
|
|
387
|
+
UserGroupIdsToRemove?: string[] | undefined;
|
|
388
388
|
}
|
|
389
389
|
export interface ReplicationGroupPendingModifiedValues {
|
|
390
|
-
PrimaryClusterId?: string;
|
|
391
|
-
AutomaticFailoverStatus?: PendingAutomaticFailoverStatus;
|
|
392
|
-
Resharding?: ReshardingStatus;
|
|
393
|
-
AuthTokenStatus?: AuthTokenUpdateStatus;
|
|
394
|
-
UserGroups?: UserGroupsUpdateStatus;
|
|
395
|
-
LogDeliveryConfigurations?: PendingLogDeliveryConfiguration[];
|
|
396
|
-
TransitEncryptionEnabled?: boolean;
|
|
397
|
-
TransitEncryptionMode?: TransitEncryptionMode;
|
|
398
|
-
ClusterMode?: ClusterMode;
|
|
390
|
+
PrimaryClusterId?: string | undefined;
|
|
391
|
+
AutomaticFailoverStatus?: PendingAutomaticFailoverStatus | undefined;
|
|
392
|
+
Resharding?: ReshardingStatus | undefined;
|
|
393
|
+
AuthTokenStatus?: AuthTokenUpdateStatus | undefined;
|
|
394
|
+
UserGroups?: UserGroupsUpdateStatus | undefined;
|
|
395
|
+
LogDeliveryConfigurations?: PendingLogDeliveryConfiguration[] | undefined;
|
|
396
|
+
TransitEncryptionEnabled?: boolean | undefined;
|
|
397
|
+
TransitEncryptionMode?: TransitEncryptionMode | undefined;
|
|
398
|
+
ClusterMode?: ClusterMode | undefined;
|
|
399
399
|
}
|
|
400
400
|
export interface ReplicationGroup {
|
|
401
|
-
ReplicationGroupId?: string;
|
|
402
|
-
Description?: string;
|
|
403
|
-
GlobalReplicationGroupInfo?: GlobalReplicationGroupInfo;
|
|
404
|
-
Status?: string;
|
|
405
|
-
PendingModifiedValues?: ReplicationGroupPendingModifiedValues;
|
|
406
|
-
MemberClusters?: string[];
|
|
407
|
-
NodeGroups?: NodeGroup[];
|
|
408
|
-
SnapshottingClusterId?: string;
|
|
409
|
-
AutomaticFailover?: AutomaticFailoverStatus;
|
|
410
|
-
MultiAZ?: MultiAZStatus;
|
|
411
|
-
ConfigurationEndpoint?: Endpoint;
|
|
412
|
-
SnapshotRetentionLimit?: number;
|
|
413
|
-
SnapshotWindow?: string;
|
|
414
|
-
ClusterEnabled?: boolean;
|
|
415
|
-
CacheNodeType?: string;
|
|
416
|
-
AuthTokenEnabled?: boolean;
|
|
417
|
-
AuthTokenLastModifiedDate?: Date;
|
|
418
|
-
TransitEncryptionEnabled?: boolean;
|
|
419
|
-
AtRestEncryptionEnabled?: boolean;
|
|
420
|
-
MemberClustersOutpostArns?: string[];
|
|
421
|
-
KmsKeyId?: string;
|
|
422
|
-
ARN?: string;
|
|
423
|
-
UserGroupIds?: string[];
|
|
424
|
-
LogDeliveryConfigurations?: LogDeliveryConfiguration[];
|
|
425
|
-
ReplicationGroupCreateTime?: Date;
|
|
426
|
-
DataTiering?: DataTieringStatus;
|
|
427
|
-
AutoMinorVersionUpgrade?: boolean;
|
|
428
|
-
NetworkType?: NetworkType;
|
|
429
|
-
IpDiscovery?: IpDiscovery;
|
|
430
|
-
TransitEncryptionMode?: TransitEncryptionMode;
|
|
431
|
-
ClusterMode?: ClusterMode;
|
|
432
|
-
Engine?: string;
|
|
401
|
+
ReplicationGroupId?: string | undefined;
|
|
402
|
+
Description?: string | undefined;
|
|
403
|
+
GlobalReplicationGroupInfo?: GlobalReplicationGroupInfo | undefined;
|
|
404
|
+
Status?: string | undefined;
|
|
405
|
+
PendingModifiedValues?: ReplicationGroupPendingModifiedValues | undefined;
|
|
406
|
+
MemberClusters?: string[] | undefined;
|
|
407
|
+
NodeGroups?: NodeGroup[] | undefined;
|
|
408
|
+
SnapshottingClusterId?: string | undefined;
|
|
409
|
+
AutomaticFailover?: AutomaticFailoverStatus | undefined;
|
|
410
|
+
MultiAZ?: MultiAZStatus | undefined;
|
|
411
|
+
ConfigurationEndpoint?: Endpoint | undefined;
|
|
412
|
+
SnapshotRetentionLimit?: number | undefined;
|
|
413
|
+
SnapshotWindow?: string | undefined;
|
|
414
|
+
ClusterEnabled?: boolean | undefined;
|
|
415
|
+
CacheNodeType?: string | undefined;
|
|
416
|
+
AuthTokenEnabled?: boolean | undefined;
|
|
417
|
+
AuthTokenLastModifiedDate?: Date | undefined;
|
|
418
|
+
TransitEncryptionEnabled?: boolean | undefined;
|
|
419
|
+
AtRestEncryptionEnabled?: boolean | undefined;
|
|
420
|
+
MemberClustersOutpostArns?: string[] | undefined;
|
|
421
|
+
KmsKeyId?: string | undefined;
|
|
422
|
+
ARN?: string | undefined;
|
|
423
|
+
UserGroupIds?: string[] | undefined;
|
|
424
|
+
LogDeliveryConfigurations?: LogDeliveryConfiguration[] | undefined;
|
|
425
|
+
ReplicationGroupCreateTime?: Date | undefined;
|
|
426
|
+
DataTiering?: DataTieringStatus | undefined;
|
|
427
|
+
AutoMinorVersionUpgrade?: boolean | undefined;
|
|
428
|
+
NetworkType?: NetworkType | undefined;
|
|
429
|
+
IpDiscovery?: IpDiscovery | undefined;
|
|
430
|
+
TransitEncryptionMode?: TransitEncryptionMode | undefined;
|
|
431
|
+
ClusterMode?: ClusterMode | undefined;
|
|
432
|
+
Engine?: string | undefined;
|
|
433
433
|
}
|
|
434
434
|
export interface CompleteMigrationResponse {
|
|
435
|
-
ReplicationGroup?: ReplicationGroup;
|
|
435
|
+
ReplicationGroup?: ReplicationGroup | undefined;
|
|
436
436
|
}
|
|
437
437
|
export declare class ReplicationGroupNotUnderMigrationFault extends __BaseException {
|
|
438
438
|
readonly name: "ReplicationGroupNotUnderMigrationFault";
|
|
@@ -447,27 +447,27 @@ export declare class ReplicationGroupNotUnderMigrationFault extends __BaseExcept
|
|
|
447
447
|
export interface CopyServerlessCacheSnapshotRequest {
|
|
448
448
|
SourceServerlessCacheSnapshotName: string | undefined;
|
|
449
449
|
TargetServerlessCacheSnapshotName: string | undefined;
|
|
450
|
-
KmsKeyId?: string;
|
|
451
|
-
Tags?: Tag[];
|
|
450
|
+
KmsKeyId?: string | undefined;
|
|
451
|
+
Tags?: Tag[] | undefined;
|
|
452
452
|
}
|
|
453
453
|
export interface ServerlessCacheConfiguration {
|
|
454
|
-
ServerlessCacheName?: string;
|
|
455
|
-
Engine?: string;
|
|
456
|
-
MajorEngineVersion?: string;
|
|
454
|
+
ServerlessCacheName?: string | undefined;
|
|
455
|
+
Engine?: string | undefined;
|
|
456
|
+
MajorEngineVersion?: string | undefined;
|
|
457
457
|
}
|
|
458
458
|
export interface ServerlessCacheSnapshot {
|
|
459
|
-
ServerlessCacheSnapshotName?: string;
|
|
460
|
-
ARN?: string;
|
|
461
|
-
KmsKeyId?: string;
|
|
462
|
-
SnapshotType?: string;
|
|
463
|
-
Status?: string;
|
|
464
|
-
CreateTime?: Date;
|
|
465
|
-
ExpiryTime?: Date;
|
|
466
|
-
BytesUsedForCache?: string;
|
|
467
|
-
ServerlessCacheConfiguration?: ServerlessCacheConfiguration;
|
|
459
|
+
ServerlessCacheSnapshotName?: string | undefined;
|
|
460
|
+
ARN?: string | undefined;
|
|
461
|
+
KmsKeyId?: string | undefined;
|
|
462
|
+
SnapshotType?: string | undefined;
|
|
463
|
+
Status?: string | undefined;
|
|
464
|
+
CreateTime?: Date | undefined;
|
|
465
|
+
ExpiryTime?: Date | undefined;
|
|
466
|
+
BytesUsedForCache?: string | undefined;
|
|
467
|
+
ServerlessCacheConfiguration?: ServerlessCacheConfiguration | undefined;
|
|
468
468
|
}
|
|
469
469
|
export interface CopyServerlessCacheSnapshotResponse {
|
|
470
|
-
ServerlessCacheSnapshot?: ServerlessCacheSnapshot;
|
|
470
|
+
ServerlessCacheSnapshot?: ServerlessCacheSnapshot | undefined;
|
|
471
471
|
}
|
|
472
472
|
export declare class ServerlessCacheSnapshotAlreadyExistsFault extends __BaseException {
|
|
473
473
|
readonly name: "ServerlessCacheSnapshotAlreadyExistsFault";
|
|
@@ -499,60 +499,60 @@ export declare class ServiceLinkedRoleNotFoundFault extends __BaseException {
|
|
|
499
499
|
export interface CopySnapshotMessage {
|
|
500
500
|
SourceSnapshotName: string | undefined;
|
|
501
501
|
TargetSnapshotName: string | undefined;
|
|
502
|
-
TargetBucket?: string;
|
|
503
|
-
KmsKeyId?: string;
|
|
504
|
-
Tags?: Tag[];
|
|
502
|
+
TargetBucket?: string | undefined;
|
|
503
|
+
KmsKeyId?: string | undefined;
|
|
504
|
+
Tags?: Tag[] | undefined;
|
|
505
505
|
}
|
|
506
506
|
export interface NodeGroupConfiguration {
|
|
507
|
-
NodeGroupId?: string;
|
|
508
|
-
Slots?: string;
|
|
509
|
-
ReplicaCount?: number;
|
|
510
|
-
PrimaryAvailabilityZone?: string;
|
|
511
|
-
ReplicaAvailabilityZones?: string[];
|
|
512
|
-
PrimaryOutpostArn?: string;
|
|
513
|
-
ReplicaOutpostArns?: string[];
|
|
507
|
+
NodeGroupId?: string | undefined;
|
|
508
|
+
Slots?: string | undefined;
|
|
509
|
+
ReplicaCount?: number | undefined;
|
|
510
|
+
PrimaryAvailabilityZone?: string | undefined;
|
|
511
|
+
ReplicaAvailabilityZones?: string[] | undefined;
|
|
512
|
+
PrimaryOutpostArn?: string | undefined;
|
|
513
|
+
ReplicaOutpostArns?: string[] | undefined;
|
|
514
514
|
}
|
|
515
515
|
export interface NodeSnapshot {
|
|
516
|
-
CacheClusterId?: string;
|
|
517
|
-
NodeGroupId?: string;
|
|
518
|
-
CacheNodeId?: string;
|
|
519
|
-
NodeGroupConfiguration?: NodeGroupConfiguration;
|
|
520
|
-
CacheSize?: string;
|
|
521
|
-
CacheNodeCreateTime?: Date;
|
|
522
|
-
SnapshotCreateTime?: Date;
|
|
516
|
+
CacheClusterId?: string | undefined;
|
|
517
|
+
NodeGroupId?: string | undefined;
|
|
518
|
+
CacheNodeId?: string | undefined;
|
|
519
|
+
NodeGroupConfiguration?: NodeGroupConfiguration | undefined;
|
|
520
|
+
CacheSize?: string | undefined;
|
|
521
|
+
CacheNodeCreateTime?: Date | undefined;
|
|
522
|
+
SnapshotCreateTime?: Date | undefined;
|
|
523
523
|
}
|
|
524
524
|
export interface Snapshot {
|
|
525
|
-
SnapshotName?: string;
|
|
526
|
-
ReplicationGroupId?: string;
|
|
527
|
-
ReplicationGroupDescription?: string;
|
|
528
|
-
CacheClusterId?: string;
|
|
529
|
-
SnapshotStatus?: string;
|
|
530
|
-
SnapshotSource?: string;
|
|
531
|
-
CacheNodeType?: string;
|
|
532
|
-
Engine?: string;
|
|
533
|
-
EngineVersion?: string;
|
|
534
|
-
NumCacheNodes?: number;
|
|
535
|
-
PreferredAvailabilityZone?: string;
|
|
536
|
-
PreferredOutpostArn?: string;
|
|
537
|
-
CacheClusterCreateTime?: Date;
|
|
538
|
-
PreferredMaintenanceWindow?: string;
|
|
539
|
-
TopicArn?: string;
|
|
540
|
-
Port?: number;
|
|
541
|
-
CacheParameterGroupName?: string;
|
|
542
|
-
CacheSubnetGroupName?: string;
|
|
543
|
-
VpcId?: string;
|
|
544
|
-
AutoMinorVersionUpgrade?: boolean;
|
|
545
|
-
SnapshotRetentionLimit?: number;
|
|
546
|
-
SnapshotWindow?: string;
|
|
547
|
-
NumNodeGroups?: number;
|
|
548
|
-
AutomaticFailover?: AutomaticFailoverStatus;
|
|
549
|
-
NodeSnapshots?: NodeSnapshot[];
|
|
550
|
-
KmsKeyId?: string;
|
|
551
|
-
ARN?: string;
|
|
552
|
-
DataTiering?: DataTieringStatus;
|
|
525
|
+
SnapshotName?: string | undefined;
|
|
526
|
+
ReplicationGroupId?: string | undefined;
|
|
527
|
+
ReplicationGroupDescription?: string | undefined;
|
|
528
|
+
CacheClusterId?: string | undefined;
|
|
529
|
+
SnapshotStatus?: string | undefined;
|
|
530
|
+
SnapshotSource?: string | undefined;
|
|
531
|
+
CacheNodeType?: string | undefined;
|
|
532
|
+
Engine?: string | undefined;
|
|
533
|
+
EngineVersion?: string | undefined;
|
|
534
|
+
NumCacheNodes?: number | undefined;
|
|
535
|
+
PreferredAvailabilityZone?: string | undefined;
|
|
536
|
+
PreferredOutpostArn?: string | undefined;
|
|
537
|
+
CacheClusterCreateTime?: Date | undefined;
|
|
538
|
+
PreferredMaintenanceWindow?: string | undefined;
|
|
539
|
+
TopicArn?: string | undefined;
|
|
540
|
+
Port?: number | undefined;
|
|
541
|
+
CacheParameterGroupName?: string | undefined;
|
|
542
|
+
CacheSubnetGroupName?: string | undefined;
|
|
543
|
+
VpcId?: string | undefined;
|
|
544
|
+
AutoMinorVersionUpgrade?: boolean | undefined;
|
|
545
|
+
SnapshotRetentionLimit?: number | undefined;
|
|
546
|
+
SnapshotWindow?: string | undefined;
|
|
547
|
+
NumNodeGroups?: number | undefined;
|
|
548
|
+
AutomaticFailover?: AutomaticFailoverStatus | undefined;
|
|
549
|
+
NodeSnapshots?: NodeSnapshot[] | undefined;
|
|
550
|
+
KmsKeyId?: string | undefined;
|
|
551
|
+
ARN?: string | undefined;
|
|
552
|
+
DataTiering?: DataTieringStatus | undefined;
|
|
553
553
|
}
|
|
554
554
|
export interface CopySnapshotResult {
|
|
555
|
-
Snapshot?: Snapshot;
|
|
555
|
+
Snapshot?: Snapshot | undefined;
|
|
556
556
|
}
|
|
557
557
|
export declare class InvalidSnapshotStateFault extends __BaseException {
|
|
558
558
|
readonly name: "InvalidSnapshotStateFault";
|
|
@@ -598,11 +598,11 @@ export declare const AZMode: {
|
|
|
598
598
|
};
|
|
599
599
|
export type AZMode = (typeof AZMode)[keyof typeof AZMode];
|
|
600
600
|
export interface LogDeliveryConfigurationRequest {
|
|
601
|
-
LogType?: LogType;
|
|
602
|
-
DestinationType?: DestinationType;
|
|
603
|
-
DestinationDetails?: DestinationDetails;
|
|
604
|
-
LogFormat?: LogFormat;
|
|
605
|
-
Enabled?: boolean;
|
|
601
|
+
LogType?: LogType | undefined;
|
|
602
|
+
DestinationType?: DestinationType | undefined;
|
|
603
|
+
DestinationDetails?: DestinationDetails | undefined;
|
|
604
|
+
LogFormat?: LogFormat | undefined;
|
|
605
|
+
Enabled?: boolean | undefined;
|
|
606
606
|
}
|
|
607
607
|
export declare const OutpostMode: {
|
|
608
608
|
readonly CROSS_OUTPOST: "cross-outpost";
|
|
@@ -611,110 +611,110 @@ export declare const OutpostMode: {
|
|
|
611
611
|
export type OutpostMode = (typeof OutpostMode)[keyof typeof OutpostMode];
|
|
612
612
|
export interface CreateCacheClusterMessage {
|
|
613
613
|
CacheClusterId: string | undefined;
|
|
614
|
-
ReplicationGroupId?: string;
|
|
615
|
-
AZMode?: AZMode;
|
|
616
|
-
PreferredAvailabilityZone?: string;
|
|
617
|
-
PreferredAvailabilityZones?: string[];
|
|
618
|
-
NumCacheNodes?: number;
|
|
619
|
-
CacheNodeType?: string;
|
|
620
|
-
Engine?: string;
|
|
621
|
-
EngineVersion?: string;
|
|
622
|
-
CacheParameterGroupName?: string;
|
|
623
|
-
CacheSubnetGroupName?: string;
|
|
624
|
-
CacheSecurityGroupNames?: string[];
|
|
625
|
-
SecurityGroupIds?: string[];
|
|
626
|
-
Tags?: Tag[];
|
|
627
|
-
SnapshotArns?: string[];
|
|
628
|
-
SnapshotName?: string;
|
|
629
|
-
PreferredMaintenanceWindow?: string;
|
|
630
|
-
Port?: number;
|
|
631
|
-
NotificationTopicArn?: string;
|
|
632
|
-
AutoMinorVersionUpgrade?: boolean;
|
|
633
|
-
SnapshotRetentionLimit?: number;
|
|
634
|
-
SnapshotWindow?: string;
|
|
635
|
-
AuthToken?: string;
|
|
636
|
-
OutpostMode?: OutpostMode;
|
|
637
|
-
PreferredOutpostArn?: string;
|
|
638
|
-
PreferredOutpostArns?: string[];
|
|
639
|
-
LogDeliveryConfigurations?: LogDeliveryConfigurationRequest[];
|
|
640
|
-
TransitEncryptionEnabled?: boolean;
|
|
641
|
-
NetworkType?: NetworkType;
|
|
642
|
-
IpDiscovery?: IpDiscovery;
|
|
614
|
+
ReplicationGroupId?: string | undefined;
|
|
615
|
+
AZMode?: AZMode | undefined;
|
|
616
|
+
PreferredAvailabilityZone?: string | undefined;
|
|
617
|
+
PreferredAvailabilityZones?: string[] | undefined;
|
|
618
|
+
NumCacheNodes?: number | undefined;
|
|
619
|
+
CacheNodeType?: string | undefined;
|
|
620
|
+
Engine?: string | undefined;
|
|
621
|
+
EngineVersion?: string | undefined;
|
|
622
|
+
CacheParameterGroupName?: string | undefined;
|
|
623
|
+
CacheSubnetGroupName?: string | undefined;
|
|
624
|
+
CacheSecurityGroupNames?: string[] | undefined;
|
|
625
|
+
SecurityGroupIds?: string[] | undefined;
|
|
626
|
+
Tags?: Tag[] | undefined;
|
|
627
|
+
SnapshotArns?: string[] | undefined;
|
|
628
|
+
SnapshotName?: string | undefined;
|
|
629
|
+
PreferredMaintenanceWindow?: string | undefined;
|
|
630
|
+
Port?: number | undefined;
|
|
631
|
+
NotificationTopicArn?: string | undefined;
|
|
632
|
+
AutoMinorVersionUpgrade?: boolean | undefined;
|
|
633
|
+
SnapshotRetentionLimit?: number | undefined;
|
|
634
|
+
SnapshotWindow?: string | undefined;
|
|
635
|
+
AuthToken?: string | undefined;
|
|
636
|
+
OutpostMode?: OutpostMode | undefined;
|
|
637
|
+
PreferredOutpostArn?: string | undefined;
|
|
638
|
+
PreferredOutpostArns?: string[] | undefined;
|
|
639
|
+
LogDeliveryConfigurations?: LogDeliveryConfigurationRequest[] | undefined;
|
|
640
|
+
TransitEncryptionEnabled?: boolean | undefined;
|
|
641
|
+
NetworkType?: NetworkType | undefined;
|
|
642
|
+
IpDiscovery?: IpDiscovery | undefined;
|
|
643
643
|
}
|
|
644
644
|
export interface CacheNode {
|
|
645
|
-
CacheNodeId?: string;
|
|
646
|
-
CacheNodeStatus?: string;
|
|
647
|
-
CacheNodeCreateTime?: Date;
|
|
648
|
-
Endpoint?: Endpoint;
|
|
649
|
-
ParameterGroupStatus?: string;
|
|
650
|
-
SourceCacheNodeId?: string;
|
|
651
|
-
CustomerAvailabilityZone?: string;
|
|
652
|
-
CustomerOutpostArn?: string;
|
|
645
|
+
CacheNodeId?: string | undefined;
|
|
646
|
+
CacheNodeStatus?: string | undefined;
|
|
647
|
+
CacheNodeCreateTime?: Date | undefined;
|
|
648
|
+
Endpoint?: Endpoint | undefined;
|
|
649
|
+
ParameterGroupStatus?: string | undefined;
|
|
650
|
+
SourceCacheNodeId?: string | undefined;
|
|
651
|
+
CustomerAvailabilityZone?: string | undefined;
|
|
652
|
+
CustomerOutpostArn?: string | undefined;
|
|
653
653
|
}
|
|
654
654
|
export interface CacheParameterGroupStatus {
|
|
655
|
-
CacheParameterGroupName?: string;
|
|
656
|
-
ParameterApplyStatus?: string;
|
|
657
|
-
CacheNodeIdsToReboot?: string[];
|
|
655
|
+
CacheParameterGroupName?: string | undefined;
|
|
656
|
+
ParameterApplyStatus?: string | undefined;
|
|
657
|
+
CacheNodeIdsToReboot?: string[] | undefined;
|
|
658
658
|
}
|
|
659
659
|
export interface CacheSecurityGroupMembership {
|
|
660
|
-
CacheSecurityGroupName?: string;
|
|
661
|
-
Status?: string;
|
|
660
|
+
CacheSecurityGroupName?: string | undefined;
|
|
661
|
+
Status?: string | undefined;
|
|
662
662
|
}
|
|
663
663
|
export interface NotificationConfiguration {
|
|
664
|
-
TopicArn?: string;
|
|
665
|
-
TopicStatus?: string;
|
|
664
|
+
TopicArn?: string | undefined;
|
|
665
|
+
TopicStatus?: string | undefined;
|
|
666
666
|
}
|
|
667
667
|
export interface PendingModifiedValues {
|
|
668
|
-
NumCacheNodes?: number;
|
|
669
|
-
CacheNodeIdsToRemove?: string[];
|
|
670
|
-
EngineVersion?: string;
|
|
671
|
-
CacheNodeType?: string;
|
|
672
|
-
AuthTokenStatus?: AuthTokenUpdateStatus;
|
|
673
|
-
LogDeliveryConfigurations?: PendingLogDeliveryConfiguration[];
|
|
674
|
-
TransitEncryptionEnabled?: boolean;
|
|
675
|
-
TransitEncryptionMode?: TransitEncryptionMode;
|
|
668
|
+
NumCacheNodes?: number | undefined;
|
|
669
|
+
CacheNodeIdsToRemove?: string[] | undefined;
|
|
670
|
+
EngineVersion?: string | undefined;
|
|
671
|
+
CacheNodeType?: string | undefined;
|
|
672
|
+
AuthTokenStatus?: AuthTokenUpdateStatus | undefined;
|
|
673
|
+
LogDeliveryConfigurations?: PendingLogDeliveryConfiguration[] | undefined;
|
|
674
|
+
TransitEncryptionEnabled?: boolean | undefined;
|
|
675
|
+
TransitEncryptionMode?: TransitEncryptionMode | undefined;
|
|
676
676
|
}
|
|
677
677
|
export interface SecurityGroupMembership {
|
|
678
|
-
SecurityGroupId?: string;
|
|
679
|
-
Status?: string;
|
|
678
|
+
SecurityGroupId?: string | undefined;
|
|
679
|
+
Status?: string | undefined;
|
|
680
680
|
}
|
|
681
681
|
export interface CacheCluster {
|
|
682
|
-
CacheClusterId?: string;
|
|
683
|
-
ConfigurationEndpoint?: Endpoint;
|
|
684
|
-
ClientDownloadLandingPage?: string;
|
|
685
|
-
CacheNodeType?: string;
|
|
686
|
-
Engine?: string;
|
|
687
|
-
EngineVersion?: string;
|
|
688
|
-
CacheClusterStatus?: string;
|
|
689
|
-
NumCacheNodes?: number;
|
|
690
|
-
PreferredAvailabilityZone?: string;
|
|
691
|
-
PreferredOutpostArn?: string;
|
|
692
|
-
CacheClusterCreateTime?: Date;
|
|
693
|
-
PreferredMaintenanceWindow?: string;
|
|
694
|
-
PendingModifiedValues?: PendingModifiedValues;
|
|
695
|
-
NotificationConfiguration?: NotificationConfiguration;
|
|
696
|
-
CacheSecurityGroups?: CacheSecurityGroupMembership[];
|
|
697
|
-
CacheParameterGroup?: CacheParameterGroupStatus;
|
|
698
|
-
CacheSubnetGroupName?: string;
|
|
699
|
-
CacheNodes?: CacheNode[];
|
|
700
|
-
AutoMinorVersionUpgrade?: boolean;
|
|
701
|
-
SecurityGroups?: SecurityGroupMembership[];
|
|
702
|
-
ReplicationGroupId?: string;
|
|
703
|
-
SnapshotRetentionLimit?: number;
|
|
704
|
-
SnapshotWindow?: string;
|
|
705
|
-
AuthTokenEnabled?: boolean;
|
|
706
|
-
AuthTokenLastModifiedDate?: Date;
|
|
707
|
-
TransitEncryptionEnabled?: boolean;
|
|
708
|
-
AtRestEncryptionEnabled?: boolean;
|
|
709
|
-
ARN?: string;
|
|
710
|
-
ReplicationGroupLogDeliveryEnabled?: boolean;
|
|
711
|
-
LogDeliveryConfigurations?: LogDeliveryConfiguration[];
|
|
712
|
-
NetworkType?: NetworkType;
|
|
713
|
-
IpDiscovery?: IpDiscovery;
|
|
714
|
-
TransitEncryptionMode?: TransitEncryptionMode;
|
|
682
|
+
CacheClusterId?: string | undefined;
|
|
683
|
+
ConfigurationEndpoint?: Endpoint | undefined;
|
|
684
|
+
ClientDownloadLandingPage?: string | undefined;
|
|
685
|
+
CacheNodeType?: string | undefined;
|
|
686
|
+
Engine?: string | undefined;
|
|
687
|
+
EngineVersion?: string | undefined;
|
|
688
|
+
CacheClusterStatus?: string | undefined;
|
|
689
|
+
NumCacheNodes?: number | undefined;
|
|
690
|
+
PreferredAvailabilityZone?: string | undefined;
|
|
691
|
+
PreferredOutpostArn?: string | undefined;
|
|
692
|
+
CacheClusterCreateTime?: Date | undefined;
|
|
693
|
+
PreferredMaintenanceWindow?: string | undefined;
|
|
694
|
+
PendingModifiedValues?: PendingModifiedValues | undefined;
|
|
695
|
+
NotificationConfiguration?: NotificationConfiguration | undefined;
|
|
696
|
+
CacheSecurityGroups?: CacheSecurityGroupMembership[] | undefined;
|
|
697
|
+
CacheParameterGroup?: CacheParameterGroupStatus | undefined;
|
|
698
|
+
CacheSubnetGroupName?: string | undefined;
|
|
699
|
+
CacheNodes?: CacheNode[] | undefined;
|
|
700
|
+
AutoMinorVersionUpgrade?: boolean | undefined;
|
|
701
|
+
SecurityGroups?: SecurityGroupMembership[] | undefined;
|
|
702
|
+
ReplicationGroupId?: string | undefined;
|
|
703
|
+
SnapshotRetentionLimit?: number | undefined;
|
|
704
|
+
SnapshotWindow?: string | undefined;
|
|
705
|
+
AuthTokenEnabled?: boolean | undefined;
|
|
706
|
+
AuthTokenLastModifiedDate?: Date | undefined;
|
|
707
|
+
TransitEncryptionEnabled?: boolean | undefined;
|
|
708
|
+
AtRestEncryptionEnabled?: boolean | undefined;
|
|
709
|
+
ARN?: string | undefined;
|
|
710
|
+
ReplicationGroupLogDeliveryEnabled?: boolean | undefined;
|
|
711
|
+
LogDeliveryConfigurations?: LogDeliveryConfiguration[] | undefined;
|
|
712
|
+
NetworkType?: NetworkType | undefined;
|
|
713
|
+
IpDiscovery?: IpDiscovery | undefined;
|
|
714
|
+
TransitEncryptionMode?: TransitEncryptionMode | undefined;
|
|
715
715
|
}
|
|
716
716
|
export interface CreateCacheClusterResult {
|
|
717
|
-
CacheCluster?: CacheCluster;
|
|
717
|
+
CacheCluster?: CacheCluster | undefined;
|
|
718
718
|
}
|
|
719
719
|
export declare class InsufficientCacheClusterCapacityFault extends __BaseException {
|
|
720
720
|
readonly name: "InsufficientCacheClusterCapacityFault";
|
|
@@ -777,17 +777,17 @@ export interface CreateCacheParameterGroupMessage {
|
|
|
777
777
|
CacheParameterGroupName: string | undefined;
|
|
778
778
|
CacheParameterGroupFamily: string | undefined;
|
|
779
779
|
Description: string | undefined;
|
|
780
|
-
Tags?: Tag[];
|
|
780
|
+
Tags?: Tag[] | undefined;
|
|
781
781
|
}
|
|
782
782
|
export interface CacheParameterGroup {
|
|
783
|
-
CacheParameterGroupName?: string;
|
|
784
|
-
CacheParameterGroupFamily?: string;
|
|
785
|
-
Description?: string;
|
|
786
|
-
IsGlobal?: boolean;
|
|
787
|
-
ARN?: string;
|
|
783
|
+
CacheParameterGroupName?: string | undefined;
|
|
784
|
+
CacheParameterGroupFamily?: string | undefined;
|
|
785
|
+
Description?: string | undefined;
|
|
786
|
+
IsGlobal?: boolean | undefined;
|
|
787
|
+
ARN?: string | undefined;
|
|
788
788
|
}
|
|
789
789
|
export interface CreateCacheParameterGroupResult {
|
|
790
|
-
CacheParameterGroup?: CacheParameterGroup;
|
|
790
|
+
CacheParameterGroup?: CacheParameterGroup | undefined;
|
|
791
791
|
}
|
|
792
792
|
export declare class InvalidCacheParameterGroupStateFault extends __BaseException {
|
|
793
793
|
readonly name: "InvalidCacheParameterGroupStateFault";
|
|
@@ -822,10 +822,10 @@ export declare class CacheSecurityGroupQuotaExceededFault extends __BaseExceptio
|
|
|
822
822
|
export interface CreateCacheSecurityGroupMessage {
|
|
823
823
|
CacheSecurityGroupName: string | undefined;
|
|
824
824
|
Description: string | undefined;
|
|
825
|
-
Tags?: Tag[];
|
|
825
|
+
Tags?: Tag[] | undefined;
|
|
826
826
|
}
|
|
827
827
|
export interface CreateCacheSecurityGroupResult {
|
|
828
|
-
CacheSecurityGroup?: CacheSecurityGroup;
|
|
828
|
+
CacheSecurityGroup?: CacheSecurityGroup | undefined;
|
|
829
829
|
}
|
|
830
830
|
export declare class CacheSubnetGroupAlreadyExistsFault extends __BaseException {
|
|
831
831
|
readonly name: "CacheSubnetGroupAlreadyExistsFault";
|
|
@@ -858,30 +858,30 @@ export interface CreateCacheSubnetGroupMessage {
|
|
|
858
858
|
CacheSubnetGroupName: string | undefined;
|
|
859
859
|
CacheSubnetGroupDescription: string | undefined;
|
|
860
860
|
SubnetIds: string[] | undefined;
|
|
861
|
-
Tags?: Tag[];
|
|
861
|
+
Tags?: Tag[] | undefined;
|
|
862
862
|
}
|
|
863
863
|
export interface AvailabilityZone {
|
|
864
|
-
Name?: string;
|
|
864
|
+
Name?: string | undefined;
|
|
865
865
|
}
|
|
866
866
|
export interface SubnetOutpost {
|
|
867
|
-
SubnetOutpostArn?: string;
|
|
867
|
+
SubnetOutpostArn?: string | undefined;
|
|
868
868
|
}
|
|
869
869
|
export interface Subnet {
|
|
870
|
-
SubnetIdentifier?: string;
|
|
871
|
-
SubnetAvailabilityZone?: AvailabilityZone;
|
|
872
|
-
SubnetOutpost?: SubnetOutpost;
|
|
873
|
-
SupportedNetworkTypes?: NetworkType[];
|
|
870
|
+
SubnetIdentifier?: string | undefined;
|
|
871
|
+
SubnetAvailabilityZone?: AvailabilityZone | undefined;
|
|
872
|
+
SubnetOutpost?: SubnetOutpost | undefined;
|
|
873
|
+
SupportedNetworkTypes?: NetworkType[] | undefined;
|
|
874
874
|
}
|
|
875
875
|
export interface CacheSubnetGroup {
|
|
876
|
-
CacheSubnetGroupName?: string;
|
|
877
|
-
CacheSubnetGroupDescription?: string;
|
|
878
|
-
VpcId?: string;
|
|
879
|
-
Subnets?: Subnet[];
|
|
880
|
-
ARN?: string;
|
|
881
|
-
SupportedNetworkTypes?: NetworkType[];
|
|
876
|
+
CacheSubnetGroupName?: string | undefined;
|
|
877
|
+
CacheSubnetGroupDescription?: string | undefined;
|
|
878
|
+
VpcId?: string | undefined;
|
|
879
|
+
Subnets?: Subnet[] | undefined;
|
|
880
|
+
ARN?: string | undefined;
|
|
881
|
+
SupportedNetworkTypes?: NetworkType[] | undefined;
|
|
882
882
|
}
|
|
883
883
|
export interface CreateCacheSubnetGroupResult {
|
|
884
|
-
CacheSubnetGroup?: CacheSubnetGroup;
|
|
884
|
+
CacheSubnetGroup?: CacheSubnetGroup | undefined;
|
|
885
885
|
}
|
|
886
886
|
export declare class InvalidSubnet extends __BaseException {
|
|
887
887
|
readonly name: "InvalidSubnet";
|
|
@@ -897,37 +897,37 @@ export declare class SubnetNotAllowedFault extends __BaseException {
|
|
|
897
897
|
}
|
|
898
898
|
export interface CreateGlobalReplicationGroupMessage {
|
|
899
899
|
GlobalReplicationGroupIdSuffix: string | undefined;
|
|
900
|
-
GlobalReplicationGroupDescription?: string;
|
|
900
|
+
GlobalReplicationGroupDescription?: string | undefined;
|
|
901
901
|
PrimaryReplicationGroupId: string | undefined;
|
|
902
902
|
}
|
|
903
903
|
export interface GlobalNodeGroup {
|
|
904
|
-
GlobalNodeGroupId?: string;
|
|
905
|
-
Slots?: string;
|
|
904
|
+
GlobalNodeGroupId?: string | undefined;
|
|
905
|
+
Slots?: string | undefined;
|
|
906
906
|
}
|
|
907
907
|
export interface GlobalReplicationGroupMember {
|
|
908
|
-
ReplicationGroupId?: string;
|
|
909
|
-
ReplicationGroupRegion?: string;
|
|
910
|
-
Role?: string;
|
|
911
|
-
AutomaticFailover?: AutomaticFailoverStatus;
|
|
912
|
-
Status?: string;
|
|
908
|
+
ReplicationGroupId?: string | undefined;
|
|
909
|
+
ReplicationGroupRegion?: string | undefined;
|
|
910
|
+
Role?: string | undefined;
|
|
911
|
+
AutomaticFailover?: AutomaticFailoverStatus | undefined;
|
|
912
|
+
Status?: string | undefined;
|
|
913
913
|
}
|
|
914
914
|
export interface GlobalReplicationGroup {
|
|
915
|
-
GlobalReplicationGroupId?: string;
|
|
916
|
-
GlobalReplicationGroupDescription?: string;
|
|
917
|
-
Status?: string;
|
|
918
|
-
CacheNodeType?: string;
|
|
919
|
-
Engine?: string;
|
|
920
|
-
EngineVersion?: string;
|
|
921
|
-
Members?: GlobalReplicationGroupMember[];
|
|
922
|
-
ClusterEnabled?: boolean;
|
|
923
|
-
GlobalNodeGroups?: GlobalNodeGroup[];
|
|
924
|
-
AuthTokenEnabled?: boolean;
|
|
925
|
-
TransitEncryptionEnabled?: boolean;
|
|
926
|
-
AtRestEncryptionEnabled?: boolean;
|
|
927
|
-
ARN?: string;
|
|
915
|
+
GlobalReplicationGroupId?: string | undefined;
|
|
916
|
+
GlobalReplicationGroupDescription?: string | undefined;
|
|
917
|
+
Status?: string | undefined;
|
|
918
|
+
CacheNodeType?: string | undefined;
|
|
919
|
+
Engine?: string | undefined;
|
|
920
|
+
EngineVersion?: string | undefined;
|
|
921
|
+
Members?: GlobalReplicationGroupMember[] | undefined;
|
|
922
|
+
ClusterEnabled?: boolean | undefined;
|
|
923
|
+
GlobalNodeGroups?: GlobalNodeGroup[] | undefined;
|
|
924
|
+
AuthTokenEnabled?: boolean | undefined;
|
|
925
|
+
TransitEncryptionEnabled?: boolean | undefined;
|
|
926
|
+
AtRestEncryptionEnabled?: boolean | undefined;
|
|
927
|
+
ARN?: string | undefined;
|
|
928
928
|
}
|
|
929
929
|
export interface CreateGlobalReplicationGroupResult {
|
|
930
|
-
GlobalReplicationGroup?: GlobalReplicationGroup;
|
|
930
|
+
GlobalReplicationGroup?: GlobalReplicationGroup | undefined;
|
|
931
931
|
}
|
|
932
932
|
export declare class GlobalReplicationGroupAlreadyExistsFault extends __BaseException {
|
|
933
933
|
readonly name: "GlobalReplicationGroupAlreadyExistsFault";
|
|
@@ -942,46 +942,46 @@ export declare class GlobalReplicationGroupAlreadyExistsFault extends __BaseExce
|
|
|
942
942
|
export interface CreateReplicationGroupMessage {
|
|
943
943
|
ReplicationGroupId: string | undefined;
|
|
944
944
|
ReplicationGroupDescription: string | undefined;
|
|
945
|
-
GlobalReplicationGroupId?: string;
|
|
946
|
-
PrimaryClusterId?: string;
|
|
947
|
-
AutomaticFailoverEnabled?: boolean;
|
|
948
|
-
MultiAZEnabled?: boolean;
|
|
949
|
-
NumCacheClusters?: number;
|
|
950
|
-
PreferredCacheClusterAZs?: string[];
|
|
951
|
-
NumNodeGroups?: number;
|
|
952
|
-
ReplicasPerNodeGroup?: number;
|
|
953
|
-
NodeGroupConfiguration?: NodeGroupConfiguration[];
|
|
954
|
-
CacheNodeType?: string;
|
|
955
|
-
Engine?: string;
|
|
956
|
-
EngineVersion?: string;
|
|
957
|
-
CacheParameterGroupName?: string;
|
|
958
|
-
CacheSubnetGroupName?: string;
|
|
959
|
-
CacheSecurityGroupNames?: string[];
|
|
960
|
-
SecurityGroupIds?: string[];
|
|
961
|
-
Tags?: Tag[];
|
|
962
|
-
SnapshotArns?: string[];
|
|
963
|
-
SnapshotName?: string;
|
|
964
|
-
PreferredMaintenanceWindow?: string;
|
|
965
|
-
Port?: number;
|
|
966
|
-
NotificationTopicArn?: string;
|
|
967
|
-
AutoMinorVersionUpgrade?: boolean;
|
|
968
|
-
SnapshotRetentionLimit?: number;
|
|
969
|
-
SnapshotWindow?: string;
|
|
970
|
-
AuthToken?: string;
|
|
971
|
-
TransitEncryptionEnabled?: boolean;
|
|
972
|
-
AtRestEncryptionEnabled?: boolean;
|
|
973
|
-
KmsKeyId?: string;
|
|
974
|
-
UserGroupIds?: string[];
|
|
975
|
-
LogDeliveryConfigurations?: LogDeliveryConfigurationRequest[];
|
|
976
|
-
DataTieringEnabled?: boolean;
|
|
977
|
-
NetworkType?: NetworkType;
|
|
978
|
-
IpDiscovery?: IpDiscovery;
|
|
979
|
-
TransitEncryptionMode?: TransitEncryptionMode;
|
|
980
|
-
ClusterMode?: ClusterMode;
|
|
981
|
-
ServerlessCacheSnapshotName?: string;
|
|
945
|
+
GlobalReplicationGroupId?: string | undefined;
|
|
946
|
+
PrimaryClusterId?: string | undefined;
|
|
947
|
+
AutomaticFailoverEnabled?: boolean | undefined;
|
|
948
|
+
MultiAZEnabled?: boolean | undefined;
|
|
949
|
+
NumCacheClusters?: number | undefined;
|
|
950
|
+
PreferredCacheClusterAZs?: string[] | undefined;
|
|
951
|
+
NumNodeGroups?: number | undefined;
|
|
952
|
+
ReplicasPerNodeGroup?: number | undefined;
|
|
953
|
+
NodeGroupConfiguration?: NodeGroupConfiguration[] | undefined;
|
|
954
|
+
CacheNodeType?: string | undefined;
|
|
955
|
+
Engine?: string | undefined;
|
|
956
|
+
EngineVersion?: string | undefined;
|
|
957
|
+
CacheParameterGroupName?: string | undefined;
|
|
958
|
+
CacheSubnetGroupName?: string | undefined;
|
|
959
|
+
CacheSecurityGroupNames?: string[] | undefined;
|
|
960
|
+
SecurityGroupIds?: string[] | undefined;
|
|
961
|
+
Tags?: Tag[] | undefined;
|
|
962
|
+
SnapshotArns?: string[] | undefined;
|
|
963
|
+
SnapshotName?: string | undefined;
|
|
964
|
+
PreferredMaintenanceWindow?: string | undefined;
|
|
965
|
+
Port?: number | undefined;
|
|
966
|
+
NotificationTopicArn?: string | undefined;
|
|
967
|
+
AutoMinorVersionUpgrade?: boolean | undefined;
|
|
968
|
+
SnapshotRetentionLimit?: number | undefined;
|
|
969
|
+
SnapshotWindow?: string | undefined;
|
|
970
|
+
AuthToken?: string | undefined;
|
|
971
|
+
TransitEncryptionEnabled?: boolean | undefined;
|
|
972
|
+
AtRestEncryptionEnabled?: boolean | undefined;
|
|
973
|
+
KmsKeyId?: string | undefined;
|
|
974
|
+
UserGroupIds?: string[] | undefined;
|
|
975
|
+
LogDeliveryConfigurations?: LogDeliveryConfigurationRequest[] | undefined;
|
|
976
|
+
DataTieringEnabled?: boolean | undefined;
|
|
977
|
+
NetworkType?: NetworkType | undefined;
|
|
978
|
+
IpDiscovery?: IpDiscovery | undefined;
|
|
979
|
+
TransitEncryptionMode?: TransitEncryptionMode | undefined;
|
|
980
|
+
ClusterMode?: ClusterMode | undefined;
|
|
981
|
+
ServerlessCacheSnapshotName?: string | undefined;
|
|
982
982
|
}
|
|
983
983
|
export interface CreateReplicationGroupResult {
|
|
984
|
-
ReplicationGroup?: ReplicationGroup;
|
|
984
|
+
ReplicationGroup?: ReplicationGroup | undefined;
|
|
985
985
|
}
|
|
986
986
|
export declare class GlobalReplicationGroupNotFoundFault extends __BaseException {
|
|
987
987
|
readonly name: "GlobalReplicationGroupNotFoundFault";
|
|
@@ -1043,54 +1043,54 @@ export declare const DataStorageUnit: {
|
|
|
1043
1043
|
export type DataStorageUnit =
|
|
1044
1044
|
(typeof DataStorageUnit)[keyof typeof DataStorageUnit];
|
|
1045
1045
|
export interface DataStorage {
|
|
1046
|
-
Maximum?: number;
|
|
1047
|
-
Minimum?: number;
|
|
1046
|
+
Maximum?: number | undefined;
|
|
1047
|
+
Minimum?: number | undefined;
|
|
1048
1048
|
Unit: DataStorageUnit | undefined;
|
|
1049
1049
|
}
|
|
1050
1050
|
export interface ECPUPerSecond {
|
|
1051
|
-
Maximum?: number;
|
|
1052
|
-
Minimum?: number;
|
|
1051
|
+
Maximum?: number | undefined;
|
|
1052
|
+
Minimum?: number | undefined;
|
|
1053
1053
|
}
|
|
1054
1054
|
export interface CacheUsageLimits {
|
|
1055
|
-
DataStorage?: DataStorage;
|
|
1056
|
-
ECPUPerSecond?: ECPUPerSecond;
|
|
1055
|
+
DataStorage?: DataStorage | undefined;
|
|
1056
|
+
ECPUPerSecond?: ECPUPerSecond | undefined;
|
|
1057
1057
|
}
|
|
1058
1058
|
export interface CreateServerlessCacheRequest {
|
|
1059
1059
|
ServerlessCacheName: string | undefined;
|
|
1060
|
-
Description?: string;
|
|
1060
|
+
Description?: string | undefined;
|
|
1061
1061
|
Engine: string | undefined;
|
|
1062
|
-
MajorEngineVersion?: string;
|
|
1063
|
-
CacheUsageLimits?: CacheUsageLimits;
|
|
1064
|
-
KmsKeyId?: string;
|
|
1065
|
-
SecurityGroupIds?: string[];
|
|
1066
|
-
SnapshotArnsToRestore?: string[];
|
|
1067
|
-
Tags?: Tag[];
|
|
1068
|
-
UserGroupId?: string;
|
|
1069
|
-
SubnetIds?: string[];
|
|
1070
|
-
SnapshotRetentionLimit?: number;
|
|
1071
|
-
DailySnapshotTime?: string;
|
|
1062
|
+
MajorEngineVersion?: string | undefined;
|
|
1063
|
+
CacheUsageLimits?: CacheUsageLimits | undefined;
|
|
1064
|
+
KmsKeyId?: string | undefined;
|
|
1065
|
+
SecurityGroupIds?: string[] | undefined;
|
|
1066
|
+
SnapshotArnsToRestore?: string[] | undefined;
|
|
1067
|
+
Tags?: Tag[] | undefined;
|
|
1068
|
+
UserGroupId?: string | undefined;
|
|
1069
|
+
SubnetIds?: string[] | undefined;
|
|
1070
|
+
SnapshotRetentionLimit?: number | undefined;
|
|
1071
|
+
DailySnapshotTime?: string | undefined;
|
|
1072
1072
|
}
|
|
1073
1073
|
export interface ServerlessCache {
|
|
1074
|
-
ServerlessCacheName?: string;
|
|
1075
|
-
Description?: string;
|
|
1076
|
-
CreateTime?: Date;
|
|
1077
|
-
Status?: string;
|
|
1078
|
-
Engine?: string;
|
|
1079
|
-
MajorEngineVersion?: string;
|
|
1080
|
-
FullEngineVersion?: string;
|
|
1081
|
-
CacheUsageLimits?: CacheUsageLimits;
|
|
1082
|
-
KmsKeyId?: string;
|
|
1083
|
-
SecurityGroupIds?: string[];
|
|
1084
|
-
Endpoint?: Endpoint;
|
|
1085
|
-
ReaderEndpoint?: Endpoint;
|
|
1086
|
-
ARN?: string;
|
|
1087
|
-
UserGroupId?: string;
|
|
1088
|
-
SubnetIds?: string[];
|
|
1089
|
-
SnapshotRetentionLimit?: number;
|
|
1090
|
-
DailySnapshotTime?: string;
|
|
1074
|
+
ServerlessCacheName?: string | undefined;
|
|
1075
|
+
Description?: string | undefined;
|
|
1076
|
+
CreateTime?: Date | undefined;
|
|
1077
|
+
Status?: string | undefined;
|
|
1078
|
+
Engine?: string | undefined;
|
|
1079
|
+
MajorEngineVersion?: string | undefined;
|
|
1080
|
+
FullEngineVersion?: string | undefined;
|
|
1081
|
+
CacheUsageLimits?: CacheUsageLimits | undefined;
|
|
1082
|
+
KmsKeyId?: string | undefined;
|
|
1083
|
+
SecurityGroupIds?: string[] | undefined;
|
|
1084
|
+
Endpoint?: Endpoint | undefined;
|
|
1085
|
+
ReaderEndpoint?: Endpoint | undefined;
|
|
1086
|
+
ARN?: string | undefined;
|
|
1087
|
+
UserGroupId?: string | undefined;
|
|
1088
|
+
SubnetIds?: string[] | undefined;
|
|
1089
|
+
SnapshotRetentionLimit?: number | undefined;
|
|
1090
|
+
DailySnapshotTime?: string | undefined;
|
|
1091
1091
|
}
|
|
1092
1092
|
export interface CreateServerlessCacheResponse {
|
|
1093
|
-
ServerlessCache?: ServerlessCache;
|
|
1093
|
+
ServerlessCache?: ServerlessCache | undefined;
|
|
1094
1094
|
}
|
|
1095
1095
|
export declare class InvalidCredentialsException extends __BaseException {
|
|
1096
1096
|
readonly name: "InvalidCredentialsException";
|
|
@@ -1122,21 +1122,21 @@ export declare class ServerlessCacheQuotaForCustomerExceededFault extends __Base
|
|
|
1122
1122
|
export interface CreateServerlessCacheSnapshotRequest {
|
|
1123
1123
|
ServerlessCacheSnapshotName: string | undefined;
|
|
1124
1124
|
ServerlessCacheName: string | undefined;
|
|
1125
|
-
KmsKeyId?: string;
|
|
1126
|
-
Tags?: Tag[];
|
|
1125
|
+
KmsKeyId?: string | undefined;
|
|
1126
|
+
Tags?: Tag[] | undefined;
|
|
1127
1127
|
}
|
|
1128
1128
|
export interface CreateServerlessCacheSnapshotResponse {
|
|
1129
|
-
ServerlessCacheSnapshot?: ServerlessCacheSnapshot;
|
|
1129
|
+
ServerlessCacheSnapshot?: ServerlessCacheSnapshot | undefined;
|
|
1130
1130
|
}
|
|
1131
1131
|
export interface CreateSnapshotMessage {
|
|
1132
|
-
ReplicationGroupId?: string;
|
|
1133
|
-
CacheClusterId?: string;
|
|
1132
|
+
ReplicationGroupId?: string | undefined;
|
|
1133
|
+
CacheClusterId?: string | undefined;
|
|
1134
1134
|
SnapshotName: string | undefined;
|
|
1135
|
-
KmsKeyId?: string;
|
|
1136
|
-
Tags?: Tag[];
|
|
1135
|
+
KmsKeyId?: string | undefined;
|
|
1136
|
+
Tags?: Tag[] | undefined;
|
|
1137
1137
|
}
|
|
1138
1138
|
export interface CreateSnapshotResult {
|
|
1139
|
-
Snapshot?: Snapshot;
|
|
1139
|
+
Snapshot?: Snapshot | undefined;
|
|
1140
1140
|
}
|
|
1141
1141
|
export declare class SnapshotFeatureNotSupportedFault extends __BaseException {
|
|
1142
1142
|
readonly name: "SnapshotFeatureNotSupportedFault";
|
|
@@ -1156,18 +1156,18 @@ export declare const InputAuthenticationType: {
|
|
|
1156
1156
|
export type InputAuthenticationType =
|
|
1157
1157
|
(typeof InputAuthenticationType)[keyof typeof InputAuthenticationType];
|
|
1158
1158
|
export interface AuthenticationMode {
|
|
1159
|
-
Type?: InputAuthenticationType;
|
|
1160
|
-
Passwords?: string[];
|
|
1159
|
+
Type?: InputAuthenticationType | undefined;
|
|
1160
|
+
Passwords?: string[] | undefined;
|
|
1161
1161
|
}
|
|
1162
1162
|
export interface CreateUserMessage {
|
|
1163
1163
|
UserId: string | undefined;
|
|
1164
1164
|
UserName: string | undefined;
|
|
1165
1165
|
Engine: string | undefined;
|
|
1166
|
-
Passwords?: string[];
|
|
1166
|
+
Passwords?: string[] | undefined;
|
|
1167
1167
|
AccessString: string | undefined;
|
|
1168
|
-
NoPasswordRequired?: boolean;
|
|
1169
|
-
Tags?: Tag[];
|
|
1170
|
-
AuthenticationMode?: AuthenticationMode;
|
|
1168
|
+
NoPasswordRequired?: boolean | undefined;
|
|
1169
|
+
Tags?: Tag[] | undefined;
|
|
1170
|
+
AuthenticationMode?: AuthenticationMode | undefined;
|
|
1171
1171
|
}
|
|
1172
1172
|
export declare class DuplicateUserNameFault extends __BaseException {
|
|
1173
1173
|
readonly name: "DuplicateUserNameFault";
|
|
@@ -1184,19 +1184,19 @@ export declare const AuthenticationType: {
|
|
|
1184
1184
|
export type AuthenticationType =
|
|
1185
1185
|
(typeof AuthenticationType)[keyof typeof AuthenticationType];
|
|
1186
1186
|
export interface Authentication {
|
|
1187
|
-
Type?: AuthenticationType;
|
|
1188
|
-
PasswordCount?: number;
|
|
1187
|
+
Type?: AuthenticationType | undefined;
|
|
1188
|
+
PasswordCount?: number | undefined;
|
|
1189
1189
|
}
|
|
1190
1190
|
export interface User {
|
|
1191
|
-
UserId?: string;
|
|
1192
|
-
UserName?: string;
|
|
1193
|
-
Status?: string;
|
|
1194
|
-
Engine?: string;
|
|
1195
|
-
MinimumEngineVersion?: string;
|
|
1196
|
-
AccessString?: string;
|
|
1197
|
-
UserGroupIds?: string[];
|
|
1198
|
-
Authentication?: Authentication;
|
|
1199
|
-
ARN?: string;
|
|
1191
|
+
UserId?: string | undefined;
|
|
1192
|
+
UserName?: string | undefined;
|
|
1193
|
+
Status?: string | undefined;
|
|
1194
|
+
Engine?: string | undefined;
|
|
1195
|
+
MinimumEngineVersion?: string | undefined;
|
|
1196
|
+
AccessString?: string | undefined;
|
|
1197
|
+
UserGroupIds?: string[] | undefined;
|
|
1198
|
+
Authentication?: Authentication | undefined;
|
|
1199
|
+
ARN?: string | undefined;
|
|
1200
1200
|
}
|
|
1201
1201
|
export declare class UserAlreadyExistsFault extends __BaseException {
|
|
1202
1202
|
readonly name: "UserAlreadyExistsFault";
|
|
@@ -1215,8 +1215,8 @@ export declare class UserQuotaExceededFault extends __BaseException {
|
|
|
1215
1215
|
export interface CreateUserGroupMessage {
|
|
1216
1216
|
UserGroupId: string | undefined;
|
|
1217
1217
|
Engine: string | undefined;
|
|
1218
|
-
UserIds?: string[];
|
|
1219
|
-
Tags?: Tag[];
|
|
1218
|
+
UserIds?: string[] | undefined;
|
|
1219
|
+
Tags?: Tag[] | undefined;
|
|
1220
1220
|
}
|
|
1221
1221
|
export declare class DefaultUserRequired extends __BaseException {
|
|
1222
1222
|
readonly name: "DefaultUserRequired";
|
|
@@ -1226,19 +1226,19 @@ export declare class DefaultUserRequired extends __BaseException {
|
|
|
1226
1226
|
);
|
|
1227
1227
|
}
|
|
1228
1228
|
export interface UserGroupPendingChanges {
|
|
1229
|
-
UserIdsToRemove?: string[];
|
|
1230
|
-
UserIdsToAdd?: string[];
|
|
1229
|
+
UserIdsToRemove?: string[] | undefined;
|
|
1230
|
+
UserIdsToAdd?: string[] | undefined;
|
|
1231
1231
|
}
|
|
1232
1232
|
export interface UserGroup {
|
|
1233
|
-
UserGroupId?: string;
|
|
1234
|
-
Status?: string;
|
|
1235
|
-
Engine?: string;
|
|
1236
|
-
UserIds?: string[];
|
|
1237
|
-
MinimumEngineVersion?: string;
|
|
1238
|
-
PendingChanges?: UserGroupPendingChanges;
|
|
1239
|
-
ReplicationGroups?: string[];
|
|
1240
|
-
ServerlessCaches?: string[];
|
|
1241
|
-
ARN?: string;
|
|
1233
|
+
UserGroupId?: string | undefined;
|
|
1234
|
+
Status?: string | undefined;
|
|
1235
|
+
Engine?: string | undefined;
|
|
1236
|
+
UserIds?: string[] | undefined;
|
|
1237
|
+
MinimumEngineVersion?: string | undefined;
|
|
1238
|
+
PendingChanges?: UserGroupPendingChanges | undefined;
|
|
1239
|
+
ReplicationGroups?: string[] | undefined;
|
|
1240
|
+
ServerlessCaches?: string[] | undefined;
|
|
1241
|
+
ARN?: string | undefined;
|
|
1242
1242
|
}
|
|
1243
1243
|
export declare class UserGroupAlreadyExistsFault extends __BaseException {
|
|
1244
1244
|
readonly name: "UserGroupAlreadyExistsFault";
|
|
@@ -1257,28 +1257,28 @@ export declare class UserGroupQuotaExceededFault extends __BaseException {
|
|
|
1257
1257
|
export interface DecreaseNodeGroupsInGlobalReplicationGroupMessage {
|
|
1258
1258
|
GlobalReplicationGroupId: string | undefined;
|
|
1259
1259
|
NodeGroupCount: number | undefined;
|
|
1260
|
-
GlobalNodeGroupsToRemove?: string[];
|
|
1261
|
-
GlobalNodeGroupsToRetain?: string[];
|
|
1260
|
+
GlobalNodeGroupsToRemove?: string[] | undefined;
|
|
1261
|
+
GlobalNodeGroupsToRetain?: string[] | undefined;
|
|
1262
1262
|
ApplyImmediately: boolean | undefined;
|
|
1263
1263
|
}
|
|
1264
1264
|
export interface DecreaseNodeGroupsInGlobalReplicationGroupResult {
|
|
1265
|
-
GlobalReplicationGroup?: GlobalReplicationGroup;
|
|
1265
|
+
GlobalReplicationGroup?: GlobalReplicationGroup | undefined;
|
|
1266
1266
|
}
|
|
1267
1267
|
export interface ConfigureShard {
|
|
1268
1268
|
NodeGroupId: string | undefined;
|
|
1269
1269
|
NewReplicaCount: number | undefined;
|
|
1270
|
-
PreferredAvailabilityZones?: string[];
|
|
1271
|
-
PreferredOutpostArns?: string[];
|
|
1270
|
+
PreferredAvailabilityZones?: string[] | undefined;
|
|
1271
|
+
PreferredOutpostArns?: string[] | undefined;
|
|
1272
1272
|
}
|
|
1273
1273
|
export interface DecreaseReplicaCountMessage {
|
|
1274
1274
|
ReplicationGroupId: string | undefined;
|
|
1275
|
-
NewReplicaCount?: number;
|
|
1276
|
-
ReplicaConfiguration?: ConfigureShard[];
|
|
1277
|
-
ReplicasToRemove?: string[];
|
|
1275
|
+
NewReplicaCount?: number | undefined;
|
|
1276
|
+
ReplicaConfiguration?: ConfigureShard[] | undefined;
|
|
1277
|
+
ReplicasToRemove?: string[] | undefined;
|
|
1278
1278
|
ApplyImmediately: boolean | undefined;
|
|
1279
1279
|
}
|
|
1280
1280
|
export interface DecreaseReplicaCountResult {
|
|
1281
|
-
ReplicationGroup?: ReplicationGroup;
|
|
1281
|
+
ReplicationGroup?: ReplicationGroup | undefined;
|
|
1282
1282
|
}
|
|
1283
1283
|
export declare class NoOperationFault extends __BaseException {
|
|
1284
1284
|
readonly name: "NoOperationFault";
|
|
@@ -1287,10 +1287,10 @@ export declare class NoOperationFault extends __BaseException {
|
|
|
1287
1287
|
}
|
|
1288
1288
|
export interface DeleteCacheClusterMessage {
|
|
1289
1289
|
CacheClusterId: string | undefined;
|
|
1290
|
-
FinalSnapshotIdentifier?: string;
|
|
1290
|
+
FinalSnapshotIdentifier?: string | undefined;
|
|
1291
1291
|
}
|
|
1292
1292
|
export interface DeleteCacheClusterResult {
|
|
1293
|
-
CacheCluster?: CacheCluster;
|
|
1293
|
+
CacheCluster?: CacheCluster | undefined;
|
|
1294
1294
|
}
|
|
1295
1295
|
export interface DeleteCacheParameterGroupMessage {
|
|
1296
1296
|
CacheParameterGroupName: string | undefined;
|
|
@@ -1313,34 +1313,34 @@ export interface DeleteGlobalReplicationGroupMessage {
|
|
|
1313
1313
|
RetainPrimaryReplicationGroup: boolean | undefined;
|
|
1314
1314
|
}
|
|
1315
1315
|
export interface DeleteGlobalReplicationGroupResult {
|
|
1316
|
-
GlobalReplicationGroup?: GlobalReplicationGroup;
|
|
1316
|
+
GlobalReplicationGroup?: GlobalReplicationGroup | undefined;
|
|
1317
1317
|
}
|
|
1318
1318
|
export interface DeleteReplicationGroupMessage {
|
|
1319
1319
|
ReplicationGroupId: string | undefined;
|
|
1320
|
-
RetainPrimaryCluster?: boolean;
|
|
1321
|
-
FinalSnapshotIdentifier?: string;
|
|
1320
|
+
RetainPrimaryCluster?: boolean | undefined;
|
|
1321
|
+
FinalSnapshotIdentifier?: string | undefined;
|
|
1322
1322
|
}
|
|
1323
1323
|
export interface DeleteReplicationGroupResult {
|
|
1324
|
-
ReplicationGroup?: ReplicationGroup;
|
|
1324
|
+
ReplicationGroup?: ReplicationGroup | undefined;
|
|
1325
1325
|
}
|
|
1326
1326
|
export interface DeleteServerlessCacheRequest {
|
|
1327
1327
|
ServerlessCacheName: string | undefined;
|
|
1328
|
-
FinalSnapshotName?: string;
|
|
1328
|
+
FinalSnapshotName?: string | undefined;
|
|
1329
1329
|
}
|
|
1330
1330
|
export interface DeleteServerlessCacheResponse {
|
|
1331
|
-
ServerlessCache?: ServerlessCache;
|
|
1331
|
+
ServerlessCache?: ServerlessCache | undefined;
|
|
1332
1332
|
}
|
|
1333
1333
|
export interface DeleteServerlessCacheSnapshotRequest {
|
|
1334
1334
|
ServerlessCacheSnapshotName: string | undefined;
|
|
1335
1335
|
}
|
|
1336
1336
|
export interface DeleteServerlessCacheSnapshotResponse {
|
|
1337
|
-
ServerlessCacheSnapshot?: ServerlessCacheSnapshot;
|
|
1337
|
+
ServerlessCacheSnapshot?: ServerlessCacheSnapshot | undefined;
|
|
1338
1338
|
}
|
|
1339
1339
|
export interface DeleteSnapshotMessage {
|
|
1340
1340
|
SnapshotName: string | undefined;
|
|
1341
1341
|
}
|
|
1342
1342
|
export interface DeleteSnapshotResult {
|
|
1343
|
-
Snapshot?: Snapshot;
|
|
1343
|
+
Snapshot?: Snapshot | undefined;
|
|
1344
1344
|
}
|
|
1345
1345
|
export declare class DefaultUserAssociatedToUserGroupFault extends __BaseException {
|
|
1346
1346
|
readonly name: "DefaultUserAssociatedToUserGroupFault";
|
|
@@ -1366,47 +1366,47 @@ export interface DeleteUserGroupMessage {
|
|
|
1366
1366
|
UserGroupId: string | undefined;
|
|
1367
1367
|
}
|
|
1368
1368
|
export interface CacheClusterMessage {
|
|
1369
|
-
Marker?: string;
|
|
1370
|
-
CacheClusters?: CacheCluster[];
|
|
1369
|
+
Marker?: string | undefined;
|
|
1370
|
+
CacheClusters?: CacheCluster[] | undefined;
|
|
1371
1371
|
}
|
|
1372
1372
|
export interface DescribeCacheClustersMessage {
|
|
1373
|
-
CacheClusterId?: string;
|
|
1374
|
-
MaxRecords?: number;
|
|
1375
|
-
Marker?: string;
|
|
1376
|
-
ShowCacheNodeInfo?: boolean;
|
|
1377
|
-
ShowCacheClustersNotInReplicationGroups?: boolean;
|
|
1373
|
+
CacheClusterId?: string | undefined;
|
|
1374
|
+
MaxRecords?: number | undefined;
|
|
1375
|
+
Marker?: string | undefined;
|
|
1376
|
+
ShowCacheNodeInfo?: boolean | undefined;
|
|
1377
|
+
ShowCacheClustersNotInReplicationGroups?: boolean | undefined;
|
|
1378
1378
|
}
|
|
1379
1379
|
export interface CacheEngineVersion {
|
|
1380
|
-
Engine?: string;
|
|
1381
|
-
EngineVersion?: string;
|
|
1382
|
-
CacheParameterGroupFamily?: string;
|
|
1383
|
-
CacheEngineDescription?: string;
|
|
1384
|
-
CacheEngineVersionDescription?: string;
|
|
1380
|
+
Engine?: string | undefined;
|
|
1381
|
+
EngineVersion?: string | undefined;
|
|
1382
|
+
CacheParameterGroupFamily?: string | undefined;
|
|
1383
|
+
CacheEngineDescription?: string | undefined;
|
|
1384
|
+
CacheEngineVersionDescription?: string | undefined;
|
|
1385
1385
|
}
|
|
1386
1386
|
export interface CacheEngineVersionMessage {
|
|
1387
|
-
Marker?: string;
|
|
1388
|
-
CacheEngineVersions?: CacheEngineVersion[];
|
|
1387
|
+
Marker?: string | undefined;
|
|
1388
|
+
CacheEngineVersions?: CacheEngineVersion[] | undefined;
|
|
1389
1389
|
}
|
|
1390
1390
|
export interface DescribeCacheEngineVersionsMessage {
|
|
1391
|
-
Engine?: string;
|
|
1392
|
-
EngineVersion?: string;
|
|
1393
|
-
CacheParameterGroupFamily?: string;
|
|
1394
|
-
MaxRecords?: number;
|
|
1395
|
-
Marker?: string;
|
|
1396
|
-
DefaultOnly?: boolean;
|
|
1391
|
+
Engine?: string | undefined;
|
|
1392
|
+
EngineVersion?: string | undefined;
|
|
1393
|
+
CacheParameterGroupFamily?: string | undefined;
|
|
1394
|
+
MaxRecords?: number | undefined;
|
|
1395
|
+
Marker?: string | undefined;
|
|
1396
|
+
DefaultOnly?: boolean | undefined;
|
|
1397
1397
|
}
|
|
1398
1398
|
export interface CacheParameterGroupsMessage {
|
|
1399
|
-
Marker?: string;
|
|
1400
|
-
CacheParameterGroups?: CacheParameterGroup[];
|
|
1399
|
+
Marker?: string | undefined;
|
|
1400
|
+
CacheParameterGroups?: CacheParameterGroup[] | undefined;
|
|
1401
1401
|
}
|
|
1402
1402
|
export interface DescribeCacheParameterGroupsMessage {
|
|
1403
|
-
CacheParameterGroupName?: string;
|
|
1404
|
-
MaxRecords?: number;
|
|
1405
|
-
Marker?: string;
|
|
1403
|
+
CacheParameterGroupName?: string | undefined;
|
|
1404
|
+
MaxRecords?: number | undefined;
|
|
1405
|
+
Marker?: string | undefined;
|
|
1406
1406
|
}
|
|
1407
1407
|
export interface CacheNodeTypeSpecificValue {
|
|
1408
|
-
CacheNodeType?: string;
|
|
1409
|
-
Value?: string;
|
|
1408
|
+
CacheNodeType?: string | undefined;
|
|
1409
|
+
Value?: string | undefined;
|
|
1410
1410
|
}
|
|
1411
1411
|
export declare const ChangeType: {
|
|
1412
1412
|
readonly immediate: "immediate";
|
|
@@ -1414,69 +1414,73 @@ export declare const ChangeType: {
|
|
|
1414
1414
|
};
|
|
1415
1415
|
export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
|
|
1416
1416
|
export interface CacheNodeTypeSpecificParameter {
|
|
1417
|
-
ParameterName?: string;
|
|
1418
|
-
Description?: string;
|
|
1419
|
-
Source?: string;
|
|
1420
|
-
DataType?: string;
|
|
1421
|
-
AllowedValues?: string;
|
|
1422
|
-
IsModifiable?: boolean;
|
|
1423
|
-
MinimumEngineVersion?: string;
|
|
1424
|
-
CacheNodeTypeSpecificValues?: CacheNodeTypeSpecificValue[];
|
|
1425
|
-
ChangeType?: ChangeType;
|
|
1417
|
+
ParameterName?: string | undefined;
|
|
1418
|
+
Description?: string | undefined;
|
|
1419
|
+
Source?: string | undefined;
|
|
1420
|
+
DataType?: string | undefined;
|
|
1421
|
+
AllowedValues?: string | undefined;
|
|
1422
|
+
IsModifiable?: boolean | undefined;
|
|
1423
|
+
MinimumEngineVersion?: string | undefined;
|
|
1424
|
+
CacheNodeTypeSpecificValues?: CacheNodeTypeSpecificValue[] | undefined;
|
|
1425
|
+
ChangeType?: ChangeType | undefined;
|
|
1426
1426
|
}
|
|
1427
1427
|
export interface Parameter {
|
|
1428
|
-
ParameterName?: string;
|
|
1429
|
-
ParameterValue?: string;
|
|
1430
|
-
Description?: string;
|
|
1431
|
-
Source?: string;
|
|
1432
|
-
DataType?: string;
|
|
1433
|
-
AllowedValues?: string;
|
|
1434
|
-
IsModifiable?: boolean;
|
|
1435
|
-
MinimumEngineVersion?: string;
|
|
1436
|
-
ChangeType?: ChangeType;
|
|
1428
|
+
ParameterName?: string | undefined;
|
|
1429
|
+
ParameterValue?: string | undefined;
|
|
1430
|
+
Description?: string | undefined;
|
|
1431
|
+
Source?: string | undefined;
|
|
1432
|
+
DataType?: string | undefined;
|
|
1433
|
+
AllowedValues?: string | undefined;
|
|
1434
|
+
IsModifiable?: boolean | undefined;
|
|
1435
|
+
MinimumEngineVersion?: string | undefined;
|
|
1436
|
+
ChangeType?: ChangeType | undefined;
|
|
1437
1437
|
}
|
|
1438
1438
|
export interface CacheParameterGroupDetails {
|
|
1439
|
-
Marker?: string;
|
|
1440
|
-
Parameters?: Parameter[];
|
|
1441
|
-
CacheNodeTypeSpecificParameters?:
|
|
1439
|
+
Marker?: string | undefined;
|
|
1440
|
+
Parameters?: Parameter[] | undefined;
|
|
1441
|
+
CacheNodeTypeSpecificParameters?:
|
|
1442
|
+
| CacheNodeTypeSpecificParameter[]
|
|
1443
|
+
| undefined;
|
|
1442
1444
|
}
|
|
1443
1445
|
export interface DescribeCacheParametersMessage {
|
|
1444
1446
|
CacheParameterGroupName: string | undefined;
|
|
1445
|
-
Source?: string;
|
|
1446
|
-
MaxRecords?: number;
|
|
1447
|
-
Marker?: string;
|
|
1447
|
+
Source?: string | undefined;
|
|
1448
|
+
MaxRecords?: number | undefined;
|
|
1449
|
+
Marker?: string | undefined;
|
|
1448
1450
|
}
|
|
1449
1451
|
export interface CacheSecurityGroupMessage {
|
|
1450
|
-
Marker?: string;
|
|
1451
|
-
CacheSecurityGroups?: CacheSecurityGroup[];
|
|
1452
|
+
Marker?: string | undefined;
|
|
1453
|
+
CacheSecurityGroups?: CacheSecurityGroup[] | undefined;
|
|
1452
1454
|
}
|
|
1453
1455
|
export interface DescribeCacheSecurityGroupsMessage {
|
|
1454
|
-
CacheSecurityGroupName?: string;
|
|
1455
|
-
MaxRecords?: number;
|
|
1456
|
-
Marker?: string;
|
|
1456
|
+
CacheSecurityGroupName?: string | undefined;
|
|
1457
|
+
MaxRecords?: number | undefined;
|
|
1458
|
+
Marker?: string | undefined;
|
|
1457
1459
|
}
|
|
1458
1460
|
export interface CacheSubnetGroupMessage {
|
|
1459
|
-
Marker?: string;
|
|
1460
|
-
CacheSubnetGroups?: CacheSubnetGroup[];
|
|
1461
|
+
Marker?: string | undefined;
|
|
1462
|
+
CacheSubnetGroups?: CacheSubnetGroup[] | undefined;
|
|
1461
1463
|
}
|
|
1462
1464
|
export interface DescribeCacheSubnetGroupsMessage {
|
|
1463
|
-
CacheSubnetGroupName?: string;
|
|
1464
|
-
MaxRecords?: number;
|
|
1465
|
-
Marker?: string;
|
|
1465
|
+
CacheSubnetGroupName?: string | undefined;
|
|
1466
|
+
MaxRecords?: number | undefined;
|
|
1467
|
+
Marker?: string | undefined;
|
|
1466
1468
|
}
|
|
1467
1469
|
export interface DescribeEngineDefaultParametersMessage {
|
|
1468
1470
|
CacheParameterGroupFamily: string | undefined;
|
|
1469
|
-
MaxRecords?: number;
|
|
1470
|
-
Marker?: string;
|
|
1471
|
+
MaxRecords?: number | undefined;
|
|
1472
|
+
Marker?: string | undefined;
|
|
1471
1473
|
}
|
|
1472
1474
|
export interface EngineDefaults {
|
|
1473
|
-
CacheParameterGroupFamily?: string;
|
|
1474
|
-
Marker?: string;
|
|
1475
|
-
Parameters?: Parameter[];
|
|
1476
|
-
CacheNodeTypeSpecificParameters?:
|
|
1475
|
+
CacheParameterGroupFamily?: string | undefined;
|
|
1476
|
+
Marker?: string | undefined;
|
|
1477
|
+
Parameters?: Parameter[] | undefined;
|
|
1478
|
+
CacheNodeTypeSpecificParameters?:
|
|
1479
|
+
| CacheNodeTypeSpecificParameter[]
|
|
1480
|
+
| undefined;
|
|
1477
1481
|
}
|
|
1478
1482
|
export interface DescribeEngineDefaultParametersResult {
|
|
1479
|
-
EngineDefaults?: EngineDefaults;
|
|
1483
|
+
EngineDefaults?: EngineDefaults | undefined;
|
|
1480
1484
|
}
|
|
1481
1485
|
export declare const SourceType: {
|
|
1482
1486
|
readonly cache_cluster: "cache-cluster";
|
|
@@ -1491,98 +1495,98 @@ export declare const SourceType: {
|
|
|
1491
1495
|
};
|
|
1492
1496
|
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
1493
1497
|
export interface DescribeEventsMessage {
|
|
1494
|
-
SourceIdentifier?: string;
|
|
1495
|
-
SourceType?: SourceType;
|
|
1496
|
-
StartTime?: Date;
|
|
1497
|
-
EndTime?: Date;
|
|
1498
|
-
Duration?: number;
|
|
1499
|
-
MaxRecords?: number;
|
|
1500
|
-
Marker?: string;
|
|
1498
|
+
SourceIdentifier?: string | undefined;
|
|
1499
|
+
SourceType?: SourceType | undefined;
|
|
1500
|
+
StartTime?: Date | undefined;
|
|
1501
|
+
EndTime?: Date | undefined;
|
|
1502
|
+
Duration?: number | undefined;
|
|
1503
|
+
MaxRecords?: number | undefined;
|
|
1504
|
+
Marker?: string | undefined;
|
|
1501
1505
|
}
|
|
1502
1506
|
export interface Event {
|
|
1503
|
-
SourceIdentifier?: string;
|
|
1504
|
-
SourceType?: SourceType;
|
|
1505
|
-
Message?: string;
|
|
1506
|
-
Date?: Date;
|
|
1507
|
+
SourceIdentifier?: string | undefined;
|
|
1508
|
+
SourceType?: SourceType | undefined;
|
|
1509
|
+
Message?: string | undefined;
|
|
1510
|
+
Date?: Date | undefined;
|
|
1507
1511
|
}
|
|
1508
1512
|
export interface EventsMessage {
|
|
1509
|
-
Marker?: string;
|
|
1510
|
-
Events?: Event[];
|
|
1513
|
+
Marker?: string | undefined;
|
|
1514
|
+
Events?: Event[] | undefined;
|
|
1511
1515
|
}
|
|
1512
1516
|
export interface DescribeGlobalReplicationGroupsMessage {
|
|
1513
|
-
GlobalReplicationGroupId?: string;
|
|
1514
|
-
MaxRecords?: number;
|
|
1515
|
-
Marker?: string;
|
|
1516
|
-
ShowMemberInfo?: boolean;
|
|
1517
|
+
GlobalReplicationGroupId?: string | undefined;
|
|
1518
|
+
MaxRecords?: number | undefined;
|
|
1519
|
+
Marker?: string | undefined;
|
|
1520
|
+
ShowMemberInfo?: boolean | undefined;
|
|
1517
1521
|
}
|
|
1518
1522
|
export interface DescribeGlobalReplicationGroupsResult {
|
|
1519
|
-
Marker?: string;
|
|
1520
|
-
GlobalReplicationGroups?: GlobalReplicationGroup[];
|
|
1523
|
+
Marker?: string | undefined;
|
|
1524
|
+
GlobalReplicationGroups?: GlobalReplicationGroup[] | undefined;
|
|
1521
1525
|
}
|
|
1522
1526
|
export interface DescribeReplicationGroupsMessage {
|
|
1523
|
-
ReplicationGroupId?: string;
|
|
1524
|
-
MaxRecords?: number;
|
|
1525
|
-
Marker?: string;
|
|
1527
|
+
ReplicationGroupId?: string | undefined;
|
|
1528
|
+
MaxRecords?: number | undefined;
|
|
1529
|
+
Marker?: string | undefined;
|
|
1526
1530
|
}
|
|
1527
1531
|
export interface ReplicationGroupMessage {
|
|
1528
|
-
Marker?: string;
|
|
1529
|
-
ReplicationGroups?: ReplicationGroup[];
|
|
1532
|
+
Marker?: string | undefined;
|
|
1533
|
+
ReplicationGroups?: ReplicationGroup[] | undefined;
|
|
1530
1534
|
}
|
|
1531
1535
|
export interface DescribeReservedCacheNodesMessage {
|
|
1532
|
-
ReservedCacheNodeId?: string;
|
|
1533
|
-
ReservedCacheNodesOfferingId?: string;
|
|
1534
|
-
CacheNodeType?: string;
|
|
1535
|
-
Duration?: string;
|
|
1536
|
-
ProductDescription?: string;
|
|
1537
|
-
OfferingType?: string;
|
|
1538
|
-
MaxRecords?: number;
|
|
1539
|
-
Marker?: string;
|
|
1536
|
+
ReservedCacheNodeId?: string | undefined;
|
|
1537
|
+
ReservedCacheNodesOfferingId?: string | undefined;
|
|
1538
|
+
CacheNodeType?: string | undefined;
|
|
1539
|
+
Duration?: string | undefined;
|
|
1540
|
+
ProductDescription?: string | undefined;
|
|
1541
|
+
OfferingType?: string | undefined;
|
|
1542
|
+
MaxRecords?: number | undefined;
|
|
1543
|
+
Marker?: string | undefined;
|
|
1540
1544
|
}
|
|
1541
1545
|
export interface RecurringCharge {
|
|
1542
|
-
RecurringChargeAmount?: number;
|
|
1543
|
-
RecurringChargeFrequency?: string;
|
|
1546
|
+
RecurringChargeAmount?: number | undefined;
|
|
1547
|
+
RecurringChargeFrequency?: string | undefined;
|
|
1544
1548
|
}
|
|
1545
1549
|
export interface ReservedCacheNode {
|
|
1546
|
-
ReservedCacheNodeId?: string;
|
|
1547
|
-
ReservedCacheNodesOfferingId?: string;
|
|
1548
|
-
CacheNodeType?: string;
|
|
1549
|
-
StartTime?: Date;
|
|
1550
|
-
Duration?: number;
|
|
1551
|
-
FixedPrice?: number;
|
|
1552
|
-
UsagePrice?: number;
|
|
1553
|
-
CacheNodeCount?: number;
|
|
1554
|
-
ProductDescription?: string;
|
|
1555
|
-
OfferingType?: string;
|
|
1556
|
-
State?: string;
|
|
1557
|
-
RecurringCharges?: RecurringCharge[];
|
|
1558
|
-
ReservationARN?: string;
|
|
1550
|
+
ReservedCacheNodeId?: string | undefined;
|
|
1551
|
+
ReservedCacheNodesOfferingId?: string | undefined;
|
|
1552
|
+
CacheNodeType?: string | undefined;
|
|
1553
|
+
StartTime?: Date | undefined;
|
|
1554
|
+
Duration?: number | undefined;
|
|
1555
|
+
FixedPrice?: number | undefined;
|
|
1556
|
+
UsagePrice?: number | undefined;
|
|
1557
|
+
CacheNodeCount?: number | undefined;
|
|
1558
|
+
ProductDescription?: string | undefined;
|
|
1559
|
+
OfferingType?: string | undefined;
|
|
1560
|
+
State?: string | undefined;
|
|
1561
|
+
RecurringCharges?: RecurringCharge[] | undefined;
|
|
1562
|
+
ReservationARN?: string | undefined;
|
|
1559
1563
|
}
|
|
1560
1564
|
export interface ReservedCacheNodeMessage {
|
|
1561
|
-
Marker?: string;
|
|
1562
|
-
ReservedCacheNodes?: ReservedCacheNode[];
|
|
1565
|
+
Marker?: string | undefined;
|
|
1566
|
+
ReservedCacheNodes?: ReservedCacheNode[] | undefined;
|
|
1563
1567
|
}
|
|
1564
1568
|
export interface DescribeReservedCacheNodesOfferingsMessage {
|
|
1565
|
-
ReservedCacheNodesOfferingId?: string;
|
|
1566
|
-
CacheNodeType?: string;
|
|
1567
|
-
Duration?: string;
|
|
1568
|
-
ProductDescription?: string;
|
|
1569
|
-
OfferingType?: string;
|
|
1570
|
-
MaxRecords?: number;
|
|
1571
|
-
Marker?: string;
|
|
1569
|
+
ReservedCacheNodesOfferingId?: string | undefined;
|
|
1570
|
+
CacheNodeType?: string | undefined;
|
|
1571
|
+
Duration?: string | undefined;
|
|
1572
|
+
ProductDescription?: string | undefined;
|
|
1573
|
+
OfferingType?: string | undefined;
|
|
1574
|
+
MaxRecords?: number | undefined;
|
|
1575
|
+
Marker?: string | undefined;
|
|
1572
1576
|
}
|
|
1573
1577
|
export interface ReservedCacheNodesOffering {
|
|
1574
|
-
ReservedCacheNodesOfferingId?: string;
|
|
1575
|
-
CacheNodeType?: string;
|
|
1576
|
-
Duration?: number;
|
|
1577
|
-
FixedPrice?: number;
|
|
1578
|
-
UsagePrice?: number;
|
|
1579
|
-
ProductDescription?: string;
|
|
1580
|
-
OfferingType?: string;
|
|
1581
|
-
RecurringCharges?: RecurringCharge[];
|
|
1578
|
+
ReservedCacheNodesOfferingId?: string | undefined;
|
|
1579
|
+
CacheNodeType?: string | undefined;
|
|
1580
|
+
Duration?: number | undefined;
|
|
1581
|
+
FixedPrice?: number | undefined;
|
|
1582
|
+
UsagePrice?: number | undefined;
|
|
1583
|
+
ProductDescription?: string | undefined;
|
|
1584
|
+
OfferingType?: string | undefined;
|
|
1585
|
+
RecurringCharges?: RecurringCharge[] | undefined;
|
|
1582
1586
|
}
|
|
1583
1587
|
export interface ReservedCacheNodesOfferingMessage {
|
|
1584
|
-
Marker?: string;
|
|
1585
|
-
ReservedCacheNodesOfferings?: ReservedCacheNodesOffering[];
|
|
1588
|
+
Marker?: string | undefined;
|
|
1589
|
+
ReservedCacheNodesOfferings?: ReservedCacheNodesOffering[] | undefined;
|
|
1586
1590
|
}
|
|
1587
1591
|
export declare class ReservedCacheNodesOfferingNotFoundFault extends __BaseException {
|
|
1588
1592
|
readonly name: "ReservedCacheNodesOfferingNotFoundFault";
|
|
@@ -1595,24 +1599,24 @@ export declare class ReservedCacheNodesOfferingNotFoundFault extends __BaseExcep
|
|
|
1595
1599
|
);
|
|
1596
1600
|
}
|
|
1597
1601
|
export interface DescribeServerlessCachesRequest {
|
|
1598
|
-
ServerlessCacheName?: string;
|
|
1599
|
-
MaxResults?: number;
|
|
1600
|
-
NextToken?: string;
|
|
1602
|
+
ServerlessCacheName?: string | undefined;
|
|
1603
|
+
MaxResults?: number | undefined;
|
|
1604
|
+
NextToken?: string | undefined;
|
|
1601
1605
|
}
|
|
1602
1606
|
export interface DescribeServerlessCachesResponse {
|
|
1603
|
-
NextToken?: string;
|
|
1604
|
-
ServerlessCaches?: ServerlessCache[];
|
|
1607
|
+
NextToken?: string | undefined;
|
|
1608
|
+
ServerlessCaches?: ServerlessCache[] | undefined;
|
|
1605
1609
|
}
|
|
1606
1610
|
export interface DescribeServerlessCacheSnapshotsRequest {
|
|
1607
|
-
ServerlessCacheName?: string;
|
|
1608
|
-
ServerlessCacheSnapshotName?: string;
|
|
1609
|
-
SnapshotType?: string;
|
|
1610
|
-
NextToken?: string;
|
|
1611
|
-
MaxResults?: number;
|
|
1611
|
+
ServerlessCacheName?: string | undefined;
|
|
1612
|
+
ServerlessCacheSnapshotName?: string | undefined;
|
|
1613
|
+
SnapshotType?: string | undefined;
|
|
1614
|
+
NextToken?: string | undefined;
|
|
1615
|
+
MaxResults?: number | undefined;
|
|
1612
1616
|
}
|
|
1613
1617
|
export interface DescribeServerlessCacheSnapshotsResponse {
|
|
1614
|
-
NextToken?: string;
|
|
1615
|
-
ServerlessCacheSnapshots?: ServerlessCacheSnapshot[];
|
|
1618
|
+
NextToken?: string | undefined;
|
|
1619
|
+
ServerlessCacheSnapshots?: ServerlessCacheSnapshot[] | undefined;
|
|
1616
1620
|
}
|
|
1617
1621
|
export declare const ServiceUpdateStatus: {
|
|
1618
1622
|
readonly AVAILABLE: "available";
|
|
@@ -1622,10 +1626,10 @@ export declare const ServiceUpdateStatus: {
|
|
|
1622
1626
|
export type ServiceUpdateStatus =
|
|
1623
1627
|
(typeof ServiceUpdateStatus)[keyof typeof ServiceUpdateStatus];
|
|
1624
1628
|
export interface DescribeServiceUpdatesMessage {
|
|
1625
|
-
ServiceUpdateName?: string;
|
|
1626
|
-
ServiceUpdateStatus?: ServiceUpdateStatus[];
|
|
1627
|
-
MaxRecords?: number;
|
|
1628
|
-
Marker?: string;
|
|
1629
|
+
ServiceUpdateName?: string | undefined;
|
|
1630
|
+
ServiceUpdateStatus?: ServiceUpdateStatus[] | undefined;
|
|
1631
|
+
MaxRecords?: number | undefined;
|
|
1632
|
+
Marker?: string | undefined;
|
|
1629
1633
|
}
|
|
1630
1634
|
export declare const ServiceUpdateSeverity: {
|
|
1631
1635
|
readonly CRITICAL: "critical";
|
|
@@ -1641,51 +1645,51 @@ export declare const ServiceUpdateType: {
|
|
|
1641
1645
|
export type ServiceUpdateType =
|
|
1642
1646
|
(typeof ServiceUpdateType)[keyof typeof ServiceUpdateType];
|
|
1643
1647
|
export interface ServiceUpdate {
|
|
1644
|
-
ServiceUpdateName?: string;
|
|
1645
|
-
ServiceUpdateReleaseDate?: Date;
|
|
1646
|
-
ServiceUpdateEndDate?: Date;
|
|
1647
|
-
ServiceUpdateSeverity?: ServiceUpdateSeverity;
|
|
1648
|
-
ServiceUpdateRecommendedApplyByDate?: Date;
|
|
1649
|
-
ServiceUpdateStatus?: ServiceUpdateStatus;
|
|
1650
|
-
ServiceUpdateDescription?: string;
|
|
1651
|
-
ServiceUpdateType?: ServiceUpdateType;
|
|
1652
|
-
Engine?: string;
|
|
1653
|
-
EngineVersion?: string;
|
|
1654
|
-
AutoUpdateAfterRecommendedApplyByDate?: boolean;
|
|
1655
|
-
EstimatedUpdateTime?: string;
|
|
1648
|
+
ServiceUpdateName?: string | undefined;
|
|
1649
|
+
ServiceUpdateReleaseDate?: Date | undefined;
|
|
1650
|
+
ServiceUpdateEndDate?: Date | undefined;
|
|
1651
|
+
ServiceUpdateSeverity?: ServiceUpdateSeverity | undefined;
|
|
1652
|
+
ServiceUpdateRecommendedApplyByDate?: Date | undefined;
|
|
1653
|
+
ServiceUpdateStatus?: ServiceUpdateStatus | undefined;
|
|
1654
|
+
ServiceUpdateDescription?: string | undefined;
|
|
1655
|
+
ServiceUpdateType?: ServiceUpdateType | undefined;
|
|
1656
|
+
Engine?: string | undefined;
|
|
1657
|
+
EngineVersion?: string | undefined;
|
|
1658
|
+
AutoUpdateAfterRecommendedApplyByDate?: boolean | undefined;
|
|
1659
|
+
EstimatedUpdateTime?: string | undefined;
|
|
1656
1660
|
}
|
|
1657
1661
|
export interface ServiceUpdatesMessage {
|
|
1658
|
-
Marker?: string;
|
|
1659
|
-
ServiceUpdates?: ServiceUpdate[];
|
|
1662
|
+
Marker?: string | undefined;
|
|
1663
|
+
ServiceUpdates?: ServiceUpdate[] | undefined;
|
|
1660
1664
|
}
|
|
1661
1665
|
export interface DescribeSnapshotsListMessage {
|
|
1662
|
-
Marker?: string;
|
|
1663
|
-
Snapshots?: Snapshot[];
|
|
1666
|
+
Marker?: string | undefined;
|
|
1667
|
+
Snapshots?: Snapshot[] | undefined;
|
|
1664
1668
|
}
|
|
1665
1669
|
export interface DescribeSnapshotsMessage {
|
|
1666
|
-
ReplicationGroupId?: string;
|
|
1667
|
-
CacheClusterId?: string;
|
|
1668
|
-
SnapshotName?: string;
|
|
1669
|
-
SnapshotSource?: string;
|
|
1670
|
-
Marker?: string;
|
|
1671
|
-
MaxRecords?: number;
|
|
1672
|
-
ShowNodeGroupConfig?: boolean;
|
|
1670
|
+
ReplicationGroupId?: string | undefined;
|
|
1671
|
+
CacheClusterId?: string | undefined;
|
|
1672
|
+
SnapshotName?: string | undefined;
|
|
1673
|
+
SnapshotSource?: string | undefined;
|
|
1674
|
+
Marker?: string | undefined;
|
|
1675
|
+
MaxRecords?: number | undefined;
|
|
1676
|
+
ShowNodeGroupConfig?: boolean | undefined;
|
|
1673
1677
|
}
|
|
1674
1678
|
export interface TimeRangeFilter {
|
|
1675
|
-
StartTime?: Date;
|
|
1676
|
-
EndTime?: Date;
|
|
1679
|
+
StartTime?: Date | undefined;
|
|
1680
|
+
EndTime?: Date | undefined;
|
|
1677
1681
|
}
|
|
1678
1682
|
export interface DescribeUpdateActionsMessage {
|
|
1679
|
-
ServiceUpdateName?: string;
|
|
1680
|
-
ReplicationGroupIds?: string[];
|
|
1681
|
-
CacheClusterIds?: string[];
|
|
1682
|
-
Engine?: string;
|
|
1683
|
-
ServiceUpdateStatus?: ServiceUpdateStatus[];
|
|
1684
|
-
ServiceUpdateTimeRange?: TimeRangeFilter;
|
|
1685
|
-
UpdateActionStatus?: UpdateActionStatus[];
|
|
1686
|
-
ShowNodeLevelUpdateStatus?: boolean;
|
|
1687
|
-
MaxRecords?: number;
|
|
1688
|
-
Marker?: string;
|
|
1683
|
+
ServiceUpdateName?: string | undefined;
|
|
1684
|
+
ReplicationGroupIds?: string[] | undefined;
|
|
1685
|
+
CacheClusterIds?: string[] | undefined;
|
|
1686
|
+
Engine?: string | undefined;
|
|
1687
|
+
ServiceUpdateStatus?: ServiceUpdateStatus[] | undefined;
|
|
1688
|
+
ServiceUpdateTimeRange?: TimeRangeFilter | undefined;
|
|
1689
|
+
UpdateActionStatus?: UpdateActionStatus[] | undefined;
|
|
1690
|
+
ShowNodeLevelUpdateStatus?: boolean | undefined;
|
|
1691
|
+
MaxRecords?: number | undefined;
|
|
1692
|
+
Marker?: string | undefined;
|
|
1689
1693
|
}
|
|
1690
1694
|
export declare const NodeUpdateInitiatedBy: {
|
|
1691
1695
|
readonly CUSTOMER: "customer";
|
|
@@ -1704,29 +1708,29 @@ export declare const NodeUpdateStatus: {
|
|
|
1704
1708
|
export type NodeUpdateStatus =
|
|
1705
1709
|
(typeof NodeUpdateStatus)[keyof typeof NodeUpdateStatus];
|
|
1706
1710
|
export interface CacheNodeUpdateStatus {
|
|
1707
|
-
CacheNodeId?: string;
|
|
1708
|
-
NodeUpdateStatus?: NodeUpdateStatus;
|
|
1709
|
-
NodeDeletionDate?: Date;
|
|
1710
|
-
NodeUpdateStartDate?: Date;
|
|
1711
|
-
NodeUpdateEndDate?: Date;
|
|
1712
|
-
NodeUpdateInitiatedBy?: NodeUpdateInitiatedBy;
|
|
1713
|
-
NodeUpdateInitiatedDate?: Date;
|
|
1714
|
-
NodeUpdateStatusModifiedDate?: Date;
|
|
1711
|
+
CacheNodeId?: string | undefined;
|
|
1712
|
+
NodeUpdateStatus?: NodeUpdateStatus | undefined;
|
|
1713
|
+
NodeDeletionDate?: Date | undefined;
|
|
1714
|
+
NodeUpdateStartDate?: Date | undefined;
|
|
1715
|
+
NodeUpdateEndDate?: Date | undefined;
|
|
1716
|
+
NodeUpdateInitiatedBy?: NodeUpdateInitiatedBy | undefined;
|
|
1717
|
+
NodeUpdateInitiatedDate?: Date | undefined;
|
|
1718
|
+
NodeUpdateStatusModifiedDate?: Date | undefined;
|
|
1715
1719
|
}
|
|
1716
1720
|
export interface NodeGroupMemberUpdateStatus {
|
|
1717
|
-
CacheClusterId?: string;
|
|
1718
|
-
CacheNodeId?: string;
|
|
1719
|
-
NodeUpdateStatus?: NodeUpdateStatus;
|
|
1720
|
-
NodeDeletionDate?: Date;
|
|
1721
|
-
NodeUpdateStartDate?: Date;
|
|
1722
|
-
NodeUpdateEndDate?: Date;
|
|
1723
|
-
NodeUpdateInitiatedBy?: NodeUpdateInitiatedBy;
|
|
1724
|
-
NodeUpdateInitiatedDate?: Date;
|
|
1725
|
-
NodeUpdateStatusModifiedDate?: Date;
|
|
1721
|
+
CacheClusterId?: string | undefined;
|
|
1722
|
+
CacheNodeId?: string | undefined;
|
|
1723
|
+
NodeUpdateStatus?: NodeUpdateStatus | undefined;
|
|
1724
|
+
NodeDeletionDate?: Date | undefined;
|
|
1725
|
+
NodeUpdateStartDate?: Date | undefined;
|
|
1726
|
+
NodeUpdateEndDate?: Date | undefined;
|
|
1727
|
+
NodeUpdateInitiatedBy?: NodeUpdateInitiatedBy | undefined;
|
|
1728
|
+
NodeUpdateInitiatedDate?: Date | undefined;
|
|
1729
|
+
NodeUpdateStatusModifiedDate?: Date | undefined;
|
|
1726
1730
|
}
|
|
1727
1731
|
export interface NodeGroupUpdateStatus {
|
|
1728
|
-
NodeGroupId?: string;
|
|
1729
|
-
NodeGroupMemberUpdateStatus?: NodeGroupMemberUpdateStatus[];
|
|
1732
|
+
NodeGroupId?: string | undefined;
|
|
1733
|
+
NodeGroupMemberUpdateStatus?: NodeGroupMemberUpdateStatus[] | undefined;
|
|
1730
1734
|
}
|
|
1731
1735
|
export declare const SlaMet: {
|
|
1732
1736
|
readonly NA: "n/a";
|
|
@@ -1735,51 +1739,51 @@ export declare const SlaMet: {
|
|
|
1735
1739
|
};
|
|
1736
1740
|
export type SlaMet = (typeof SlaMet)[keyof typeof SlaMet];
|
|
1737
1741
|
export interface UpdateAction {
|
|
1738
|
-
ReplicationGroupId?: string;
|
|
1739
|
-
CacheClusterId?: string;
|
|
1740
|
-
ServiceUpdateName?: string;
|
|
1741
|
-
ServiceUpdateReleaseDate?: Date;
|
|
1742
|
-
ServiceUpdateSeverity?: ServiceUpdateSeverity;
|
|
1743
|
-
ServiceUpdateStatus?: ServiceUpdateStatus;
|
|
1744
|
-
ServiceUpdateRecommendedApplyByDate?: Date;
|
|
1745
|
-
ServiceUpdateType?: ServiceUpdateType;
|
|
1746
|
-
UpdateActionAvailableDate?: Date;
|
|
1747
|
-
UpdateActionStatus?: UpdateActionStatus;
|
|
1748
|
-
NodesUpdated?: string;
|
|
1749
|
-
UpdateActionStatusModifiedDate?: Date;
|
|
1750
|
-
SlaMet?: SlaMet;
|
|
1751
|
-
NodeGroupUpdateStatus?: NodeGroupUpdateStatus[];
|
|
1752
|
-
CacheNodeUpdateStatus?: CacheNodeUpdateStatus[];
|
|
1753
|
-
EstimatedUpdateTime?: string;
|
|
1754
|
-
Engine?: string;
|
|
1742
|
+
ReplicationGroupId?: string | undefined;
|
|
1743
|
+
CacheClusterId?: string | undefined;
|
|
1744
|
+
ServiceUpdateName?: string | undefined;
|
|
1745
|
+
ServiceUpdateReleaseDate?: Date | undefined;
|
|
1746
|
+
ServiceUpdateSeverity?: ServiceUpdateSeverity | undefined;
|
|
1747
|
+
ServiceUpdateStatus?: ServiceUpdateStatus | undefined;
|
|
1748
|
+
ServiceUpdateRecommendedApplyByDate?: Date | undefined;
|
|
1749
|
+
ServiceUpdateType?: ServiceUpdateType | undefined;
|
|
1750
|
+
UpdateActionAvailableDate?: Date | undefined;
|
|
1751
|
+
UpdateActionStatus?: UpdateActionStatus | undefined;
|
|
1752
|
+
NodesUpdated?: string | undefined;
|
|
1753
|
+
UpdateActionStatusModifiedDate?: Date | undefined;
|
|
1754
|
+
SlaMet?: SlaMet | undefined;
|
|
1755
|
+
NodeGroupUpdateStatus?: NodeGroupUpdateStatus[] | undefined;
|
|
1756
|
+
CacheNodeUpdateStatus?: CacheNodeUpdateStatus[] | undefined;
|
|
1757
|
+
EstimatedUpdateTime?: string | undefined;
|
|
1758
|
+
Engine?: string | undefined;
|
|
1755
1759
|
}
|
|
1756
1760
|
export interface UpdateActionsMessage {
|
|
1757
|
-
Marker?: string;
|
|
1758
|
-
UpdateActions?: UpdateAction[];
|
|
1761
|
+
Marker?: string | undefined;
|
|
1762
|
+
UpdateActions?: UpdateAction[] | undefined;
|
|
1759
1763
|
}
|
|
1760
1764
|
export interface DescribeUserGroupsMessage {
|
|
1761
|
-
UserGroupId?: string;
|
|
1762
|
-
MaxRecords?: number;
|
|
1763
|
-
Marker?: string;
|
|
1765
|
+
UserGroupId?: string | undefined;
|
|
1766
|
+
MaxRecords?: number | undefined;
|
|
1767
|
+
Marker?: string | undefined;
|
|
1764
1768
|
}
|
|
1765
1769
|
export interface DescribeUserGroupsResult {
|
|
1766
|
-
UserGroups?: UserGroup[];
|
|
1767
|
-
Marker?: string;
|
|
1770
|
+
UserGroups?: UserGroup[] | undefined;
|
|
1771
|
+
Marker?: string | undefined;
|
|
1768
1772
|
}
|
|
1769
1773
|
export interface Filter {
|
|
1770
1774
|
Name: string | undefined;
|
|
1771
1775
|
Values: string[] | undefined;
|
|
1772
1776
|
}
|
|
1773
1777
|
export interface DescribeUsersMessage {
|
|
1774
|
-
Engine?: string;
|
|
1775
|
-
UserId?: string;
|
|
1776
|
-
Filters?: Filter[];
|
|
1777
|
-
MaxRecords?: number;
|
|
1778
|
-
Marker?: string;
|
|
1778
|
+
Engine?: string | undefined;
|
|
1779
|
+
UserId?: string | undefined;
|
|
1780
|
+
Filters?: Filter[] | undefined;
|
|
1781
|
+
MaxRecords?: number | undefined;
|
|
1782
|
+
Marker?: string | undefined;
|
|
1779
1783
|
}
|
|
1780
1784
|
export interface DescribeUsersResult {
|
|
1781
|
-
Users?: User[];
|
|
1782
|
-
Marker?: string;
|
|
1785
|
+
Users?: User[] | undefined;
|
|
1786
|
+
Marker?: string | undefined;
|
|
1783
1787
|
}
|
|
1784
1788
|
export interface DisassociateGlobalReplicationGroupMessage {
|
|
1785
1789
|
GlobalReplicationGroupId: string | undefined;
|
|
@@ -1787,14 +1791,14 @@ export interface DisassociateGlobalReplicationGroupMessage {
|
|
|
1787
1791
|
ReplicationGroupRegion: string | undefined;
|
|
1788
1792
|
}
|
|
1789
1793
|
export interface DisassociateGlobalReplicationGroupResult {
|
|
1790
|
-
GlobalReplicationGroup?: GlobalReplicationGroup;
|
|
1794
|
+
GlobalReplicationGroup?: GlobalReplicationGroup | undefined;
|
|
1791
1795
|
}
|
|
1792
1796
|
export interface ExportServerlessCacheSnapshotRequest {
|
|
1793
1797
|
ServerlessCacheSnapshotName: string | undefined;
|
|
1794
1798
|
S3BucketName: string | undefined;
|
|
1795
1799
|
}
|
|
1796
1800
|
export interface ExportServerlessCacheSnapshotResponse {
|
|
1797
|
-
ServerlessCacheSnapshot?: ServerlessCacheSnapshot;
|
|
1801
|
+
ServerlessCacheSnapshot?: ServerlessCacheSnapshot | undefined;
|
|
1798
1802
|
}
|
|
1799
1803
|
export interface FailoverGlobalReplicationGroupMessage {
|
|
1800
1804
|
GlobalReplicationGroupId: string | undefined;
|
|
@@ -1802,11 +1806,11 @@ export interface FailoverGlobalReplicationGroupMessage {
|
|
|
1802
1806
|
PrimaryReplicationGroupId: string | undefined;
|
|
1803
1807
|
}
|
|
1804
1808
|
export interface FailoverGlobalReplicationGroupResult {
|
|
1805
|
-
GlobalReplicationGroup?: GlobalReplicationGroup;
|
|
1809
|
+
GlobalReplicationGroup?: GlobalReplicationGroup | undefined;
|
|
1806
1810
|
}
|
|
1807
1811
|
export interface ReshardingConfiguration {
|
|
1808
|
-
NodeGroupId?: string;
|
|
1809
|
-
PreferredAvailabilityZones?: string[];
|
|
1812
|
+
NodeGroupId?: string | undefined;
|
|
1813
|
+
PreferredAvailabilityZones?: string[] | undefined;
|
|
1810
1814
|
}
|
|
1811
1815
|
export interface RegionalConfiguration {
|
|
1812
1816
|
ReplicationGroupId: string | undefined;
|
|
@@ -1816,20 +1820,20 @@ export interface RegionalConfiguration {
|
|
|
1816
1820
|
export interface IncreaseNodeGroupsInGlobalReplicationGroupMessage {
|
|
1817
1821
|
GlobalReplicationGroupId: string | undefined;
|
|
1818
1822
|
NodeGroupCount: number | undefined;
|
|
1819
|
-
RegionalConfigurations?: RegionalConfiguration[];
|
|
1823
|
+
RegionalConfigurations?: RegionalConfiguration[] | undefined;
|
|
1820
1824
|
ApplyImmediately: boolean | undefined;
|
|
1821
1825
|
}
|
|
1822
1826
|
export interface IncreaseNodeGroupsInGlobalReplicationGroupResult {
|
|
1823
|
-
GlobalReplicationGroup?: GlobalReplicationGroup;
|
|
1827
|
+
GlobalReplicationGroup?: GlobalReplicationGroup | undefined;
|
|
1824
1828
|
}
|
|
1825
1829
|
export interface IncreaseReplicaCountMessage {
|
|
1826
1830
|
ReplicationGroupId: string | undefined;
|
|
1827
|
-
NewReplicaCount?: number;
|
|
1828
|
-
ReplicaConfiguration?: ConfigureShard[];
|
|
1831
|
+
NewReplicaCount?: number | undefined;
|
|
1832
|
+
ReplicaConfiguration?: ConfigureShard[] | undefined;
|
|
1829
1833
|
ApplyImmediately: boolean | undefined;
|
|
1830
1834
|
}
|
|
1831
1835
|
export interface IncreaseReplicaCountResult {
|
|
1832
|
-
ReplicationGroup?: ReplicationGroup;
|
|
1836
|
+
ReplicationGroup?: ReplicationGroup | undefined;
|
|
1833
1837
|
}
|
|
1834
1838
|
export declare class InvalidKMSKeyFault extends __BaseException {
|
|
1835
1839
|
readonly name: "InvalidKMSKeyFault";
|
|
@@ -1837,8 +1841,8 @@ export declare class InvalidKMSKeyFault extends __BaseException {
|
|
|
1837
1841
|
constructor(opts: __ExceptionOptionType<InvalidKMSKeyFault, __BaseException>);
|
|
1838
1842
|
}
|
|
1839
1843
|
export interface ListAllowedNodeTypeModificationsMessage {
|
|
1840
|
-
CacheClusterId?: string;
|
|
1841
|
-
ReplicationGroupId?: string;
|
|
1844
|
+
CacheClusterId?: string | undefined;
|
|
1845
|
+
ReplicationGroupId?: string | undefined;
|
|
1842
1846
|
}
|
|
1843
1847
|
export interface ListTagsForResourceMessage {
|
|
1844
1848
|
ResourceName: string | undefined;
|
|
@@ -1852,37 +1856,37 @@ export type AuthTokenUpdateStrategyType =
|
|
|
1852
1856
|
(typeof AuthTokenUpdateStrategyType)[keyof typeof AuthTokenUpdateStrategyType];
|
|
1853
1857
|
export interface ModifyCacheClusterMessage {
|
|
1854
1858
|
CacheClusterId: string | undefined;
|
|
1855
|
-
NumCacheNodes?: number;
|
|
1856
|
-
CacheNodeIdsToRemove?: string[];
|
|
1857
|
-
AZMode?: AZMode;
|
|
1858
|
-
NewAvailabilityZones?: string[];
|
|
1859
|
-
CacheSecurityGroupNames?: string[];
|
|
1860
|
-
SecurityGroupIds?: string[];
|
|
1861
|
-
PreferredMaintenanceWindow?: string;
|
|
1862
|
-
NotificationTopicArn?: string;
|
|
1863
|
-
CacheParameterGroupName?: string;
|
|
1864
|
-
NotificationTopicStatus?: string;
|
|
1865
|
-
ApplyImmediately?: boolean;
|
|
1866
|
-
Engine?: string;
|
|
1867
|
-
EngineVersion?: string;
|
|
1868
|
-
AutoMinorVersionUpgrade?: boolean;
|
|
1869
|
-
SnapshotRetentionLimit?: number;
|
|
1870
|
-
SnapshotWindow?: string;
|
|
1871
|
-
CacheNodeType?: string;
|
|
1872
|
-
AuthToken?: string;
|
|
1873
|
-
AuthTokenUpdateStrategy?: AuthTokenUpdateStrategyType;
|
|
1874
|
-
LogDeliveryConfigurations?: LogDeliveryConfigurationRequest[];
|
|
1875
|
-
IpDiscovery?: IpDiscovery;
|
|
1859
|
+
NumCacheNodes?: number | undefined;
|
|
1860
|
+
CacheNodeIdsToRemove?: string[] | undefined;
|
|
1861
|
+
AZMode?: AZMode | undefined;
|
|
1862
|
+
NewAvailabilityZones?: string[] | undefined;
|
|
1863
|
+
CacheSecurityGroupNames?: string[] | undefined;
|
|
1864
|
+
SecurityGroupIds?: string[] | undefined;
|
|
1865
|
+
PreferredMaintenanceWindow?: string | undefined;
|
|
1866
|
+
NotificationTopicArn?: string | undefined;
|
|
1867
|
+
CacheParameterGroupName?: string | undefined;
|
|
1868
|
+
NotificationTopicStatus?: string | undefined;
|
|
1869
|
+
ApplyImmediately?: boolean | undefined;
|
|
1870
|
+
Engine?: string | undefined;
|
|
1871
|
+
EngineVersion?: string | undefined;
|
|
1872
|
+
AutoMinorVersionUpgrade?: boolean | undefined;
|
|
1873
|
+
SnapshotRetentionLimit?: number | undefined;
|
|
1874
|
+
SnapshotWindow?: string | undefined;
|
|
1875
|
+
CacheNodeType?: string | undefined;
|
|
1876
|
+
AuthToken?: string | undefined;
|
|
1877
|
+
AuthTokenUpdateStrategy?: AuthTokenUpdateStrategyType | undefined;
|
|
1878
|
+
LogDeliveryConfigurations?: LogDeliveryConfigurationRequest[] | undefined;
|
|
1879
|
+
IpDiscovery?: IpDiscovery | undefined;
|
|
1876
1880
|
}
|
|
1877
1881
|
export interface ModifyCacheClusterResult {
|
|
1878
|
-
CacheCluster?: CacheCluster;
|
|
1882
|
+
CacheCluster?: CacheCluster | undefined;
|
|
1879
1883
|
}
|
|
1880
1884
|
export interface CacheParameterGroupNameMessage {
|
|
1881
|
-
CacheParameterGroupName?: string;
|
|
1885
|
+
CacheParameterGroupName?: string | undefined;
|
|
1882
1886
|
}
|
|
1883
1887
|
export interface ParameterNameValue {
|
|
1884
|
-
ParameterName?: string;
|
|
1885
|
-
ParameterValue?: string;
|
|
1888
|
+
ParameterName?: string | undefined;
|
|
1889
|
+
ParameterValue?: string | undefined;
|
|
1886
1890
|
}
|
|
1887
1891
|
export interface ModifyCacheParameterGroupMessage {
|
|
1888
1892
|
CacheParameterGroupName: string | undefined;
|
|
@@ -1890,11 +1894,11 @@ export interface ModifyCacheParameterGroupMessage {
|
|
|
1890
1894
|
}
|
|
1891
1895
|
export interface ModifyCacheSubnetGroupMessage {
|
|
1892
1896
|
CacheSubnetGroupName: string | undefined;
|
|
1893
|
-
CacheSubnetGroupDescription?: string;
|
|
1894
|
-
SubnetIds?: string[];
|
|
1897
|
+
CacheSubnetGroupDescription?: string | undefined;
|
|
1898
|
+
SubnetIds?: string[] | undefined;
|
|
1895
1899
|
}
|
|
1896
1900
|
export interface ModifyCacheSubnetGroupResult {
|
|
1897
|
-
CacheSubnetGroup?: CacheSubnetGroup;
|
|
1901
|
+
CacheSubnetGroup?: CacheSubnetGroup | undefined;
|
|
1898
1902
|
}
|
|
1899
1903
|
export declare class SubnetInUse extends __BaseException {
|
|
1900
1904
|
readonly name: "SubnetInUse";
|
|
@@ -1904,98 +1908,98 @@ export declare class SubnetInUse extends __BaseException {
|
|
|
1904
1908
|
export interface ModifyGlobalReplicationGroupMessage {
|
|
1905
1909
|
GlobalReplicationGroupId: string | undefined;
|
|
1906
1910
|
ApplyImmediately: boolean | undefined;
|
|
1907
|
-
CacheNodeType?: string;
|
|
1908
|
-
Engine?: string;
|
|
1909
|
-
EngineVersion?: string;
|
|
1910
|
-
CacheParameterGroupName?: string;
|
|
1911
|
-
GlobalReplicationGroupDescription?: string;
|
|
1912
|
-
AutomaticFailoverEnabled?: boolean;
|
|
1911
|
+
CacheNodeType?: string | undefined;
|
|
1912
|
+
Engine?: string | undefined;
|
|
1913
|
+
EngineVersion?: string | undefined;
|
|
1914
|
+
CacheParameterGroupName?: string | undefined;
|
|
1915
|
+
GlobalReplicationGroupDescription?: string | undefined;
|
|
1916
|
+
AutomaticFailoverEnabled?: boolean | undefined;
|
|
1913
1917
|
}
|
|
1914
1918
|
export interface ModifyGlobalReplicationGroupResult {
|
|
1915
|
-
GlobalReplicationGroup?: GlobalReplicationGroup;
|
|
1919
|
+
GlobalReplicationGroup?: GlobalReplicationGroup | undefined;
|
|
1916
1920
|
}
|
|
1917
1921
|
export interface ModifyReplicationGroupMessage {
|
|
1918
1922
|
ReplicationGroupId: string | undefined;
|
|
1919
|
-
ReplicationGroupDescription?: string;
|
|
1920
|
-
PrimaryClusterId?: string;
|
|
1921
|
-
SnapshottingClusterId?: string;
|
|
1922
|
-
AutomaticFailoverEnabled?: boolean;
|
|
1923
|
-
MultiAZEnabled?: boolean;
|
|
1924
|
-
NodeGroupId?: string;
|
|
1925
|
-
CacheSecurityGroupNames?: string[];
|
|
1926
|
-
SecurityGroupIds?: string[];
|
|
1927
|
-
PreferredMaintenanceWindow?: string;
|
|
1928
|
-
NotificationTopicArn?: string;
|
|
1929
|
-
CacheParameterGroupName?: string;
|
|
1930
|
-
NotificationTopicStatus?: string;
|
|
1931
|
-
ApplyImmediately?: boolean;
|
|
1932
|
-
Engine?: string;
|
|
1933
|
-
EngineVersion?: string;
|
|
1934
|
-
AutoMinorVersionUpgrade?: boolean;
|
|
1935
|
-
SnapshotRetentionLimit?: number;
|
|
1936
|
-
SnapshotWindow?: string;
|
|
1937
|
-
CacheNodeType?: string;
|
|
1938
|
-
AuthToken?: string;
|
|
1939
|
-
AuthTokenUpdateStrategy?: AuthTokenUpdateStrategyType;
|
|
1940
|
-
UserGroupIdsToAdd?: string[];
|
|
1941
|
-
UserGroupIdsToRemove?: string[];
|
|
1942
|
-
RemoveUserGroups?: boolean;
|
|
1943
|
-
LogDeliveryConfigurations?: LogDeliveryConfigurationRequest[];
|
|
1944
|
-
IpDiscovery?: IpDiscovery;
|
|
1945
|
-
TransitEncryptionEnabled?: boolean;
|
|
1946
|
-
TransitEncryptionMode?: TransitEncryptionMode;
|
|
1947
|
-
ClusterMode?: ClusterMode;
|
|
1923
|
+
ReplicationGroupDescription?: string | undefined;
|
|
1924
|
+
PrimaryClusterId?: string | undefined;
|
|
1925
|
+
SnapshottingClusterId?: string | undefined;
|
|
1926
|
+
AutomaticFailoverEnabled?: boolean | undefined;
|
|
1927
|
+
MultiAZEnabled?: boolean | undefined;
|
|
1928
|
+
NodeGroupId?: string | undefined;
|
|
1929
|
+
CacheSecurityGroupNames?: string[] | undefined;
|
|
1930
|
+
SecurityGroupIds?: string[] | undefined;
|
|
1931
|
+
PreferredMaintenanceWindow?: string | undefined;
|
|
1932
|
+
NotificationTopicArn?: string | undefined;
|
|
1933
|
+
CacheParameterGroupName?: string | undefined;
|
|
1934
|
+
NotificationTopicStatus?: string | undefined;
|
|
1935
|
+
ApplyImmediately?: boolean | undefined;
|
|
1936
|
+
Engine?: string | undefined;
|
|
1937
|
+
EngineVersion?: string | undefined;
|
|
1938
|
+
AutoMinorVersionUpgrade?: boolean | undefined;
|
|
1939
|
+
SnapshotRetentionLimit?: number | undefined;
|
|
1940
|
+
SnapshotWindow?: string | undefined;
|
|
1941
|
+
CacheNodeType?: string | undefined;
|
|
1942
|
+
AuthToken?: string | undefined;
|
|
1943
|
+
AuthTokenUpdateStrategy?: AuthTokenUpdateStrategyType | undefined;
|
|
1944
|
+
UserGroupIdsToAdd?: string[] | undefined;
|
|
1945
|
+
UserGroupIdsToRemove?: string[] | undefined;
|
|
1946
|
+
RemoveUserGroups?: boolean | undefined;
|
|
1947
|
+
LogDeliveryConfigurations?: LogDeliveryConfigurationRequest[] | undefined;
|
|
1948
|
+
IpDiscovery?: IpDiscovery | undefined;
|
|
1949
|
+
TransitEncryptionEnabled?: boolean | undefined;
|
|
1950
|
+
TransitEncryptionMode?: TransitEncryptionMode | undefined;
|
|
1951
|
+
ClusterMode?: ClusterMode | undefined;
|
|
1948
1952
|
}
|
|
1949
1953
|
export interface ModifyReplicationGroupResult {
|
|
1950
|
-
ReplicationGroup?: ReplicationGroup;
|
|
1954
|
+
ReplicationGroup?: ReplicationGroup | undefined;
|
|
1951
1955
|
}
|
|
1952
1956
|
export interface ModifyReplicationGroupShardConfigurationMessage {
|
|
1953
1957
|
ReplicationGroupId: string | undefined;
|
|
1954
1958
|
NodeGroupCount: number | undefined;
|
|
1955
1959
|
ApplyImmediately: boolean | undefined;
|
|
1956
|
-
ReshardingConfiguration?: ReshardingConfiguration[];
|
|
1957
|
-
NodeGroupsToRemove?: string[];
|
|
1958
|
-
NodeGroupsToRetain?: string[];
|
|
1960
|
+
ReshardingConfiguration?: ReshardingConfiguration[] | undefined;
|
|
1961
|
+
NodeGroupsToRemove?: string[] | undefined;
|
|
1962
|
+
NodeGroupsToRetain?: string[] | undefined;
|
|
1959
1963
|
}
|
|
1960
1964
|
export interface ModifyReplicationGroupShardConfigurationResult {
|
|
1961
|
-
ReplicationGroup?: ReplicationGroup;
|
|
1965
|
+
ReplicationGroup?: ReplicationGroup | undefined;
|
|
1962
1966
|
}
|
|
1963
1967
|
export interface ModifyServerlessCacheRequest {
|
|
1964
1968
|
ServerlessCacheName: string | undefined;
|
|
1965
|
-
Description?: string;
|
|
1966
|
-
CacheUsageLimits?: CacheUsageLimits;
|
|
1967
|
-
RemoveUserGroup?: boolean;
|
|
1968
|
-
UserGroupId?: string;
|
|
1969
|
-
SecurityGroupIds?: string[];
|
|
1970
|
-
SnapshotRetentionLimit?: number;
|
|
1971
|
-
DailySnapshotTime?: string;
|
|
1972
|
-
Engine?: string;
|
|
1973
|
-
MajorEngineVersion?: string;
|
|
1969
|
+
Description?: string | undefined;
|
|
1970
|
+
CacheUsageLimits?: CacheUsageLimits | undefined;
|
|
1971
|
+
RemoveUserGroup?: boolean | undefined;
|
|
1972
|
+
UserGroupId?: string | undefined;
|
|
1973
|
+
SecurityGroupIds?: string[] | undefined;
|
|
1974
|
+
SnapshotRetentionLimit?: number | undefined;
|
|
1975
|
+
DailySnapshotTime?: string | undefined;
|
|
1976
|
+
Engine?: string | undefined;
|
|
1977
|
+
MajorEngineVersion?: string | undefined;
|
|
1974
1978
|
}
|
|
1975
1979
|
export interface ModifyServerlessCacheResponse {
|
|
1976
|
-
ServerlessCache?: ServerlessCache;
|
|
1980
|
+
ServerlessCache?: ServerlessCache | undefined;
|
|
1977
1981
|
}
|
|
1978
1982
|
export interface ModifyUserMessage {
|
|
1979
1983
|
UserId: string | undefined;
|
|
1980
|
-
AccessString?: string;
|
|
1981
|
-
AppendAccessString?: string;
|
|
1982
|
-
Passwords?: string[];
|
|
1983
|
-
NoPasswordRequired?: boolean;
|
|
1984
|
-
AuthenticationMode?: AuthenticationMode;
|
|
1984
|
+
AccessString?: string | undefined;
|
|
1985
|
+
AppendAccessString?: string | undefined;
|
|
1986
|
+
Passwords?: string[] | undefined;
|
|
1987
|
+
NoPasswordRequired?: boolean | undefined;
|
|
1988
|
+
AuthenticationMode?: AuthenticationMode | undefined;
|
|
1985
1989
|
}
|
|
1986
1990
|
export interface ModifyUserGroupMessage {
|
|
1987
1991
|
UserGroupId: string | undefined;
|
|
1988
|
-
UserIdsToAdd?: string[];
|
|
1989
|
-
UserIdsToRemove?: string[];
|
|
1992
|
+
UserIdsToAdd?: string[] | undefined;
|
|
1993
|
+
UserIdsToRemove?: string[] | undefined;
|
|
1990
1994
|
}
|
|
1991
1995
|
export interface PurchaseReservedCacheNodesOfferingMessage {
|
|
1992
1996
|
ReservedCacheNodesOfferingId: string | undefined;
|
|
1993
|
-
ReservedCacheNodeId?: string;
|
|
1994
|
-
CacheNodeCount?: number;
|
|
1995
|
-
Tags?: Tag[];
|
|
1997
|
+
ReservedCacheNodeId?: string | undefined;
|
|
1998
|
+
CacheNodeCount?: number | undefined;
|
|
1999
|
+
Tags?: Tag[] | undefined;
|
|
1996
2000
|
}
|
|
1997
2001
|
export interface PurchaseReservedCacheNodesOfferingResult {
|
|
1998
|
-
ReservedCacheNode?: ReservedCacheNode;
|
|
2002
|
+
ReservedCacheNode?: ReservedCacheNode | undefined;
|
|
1999
2003
|
}
|
|
2000
2004
|
export declare class ReservedCacheNodeAlreadyExistsFault extends __BaseException {
|
|
2001
2005
|
readonly name: "ReservedCacheNodeAlreadyExistsFault";
|
|
@@ -2022,14 +2026,14 @@ export interface RebalanceSlotsInGlobalReplicationGroupMessage {
|
|
|
2022
2026
|
ApplyImmediately: boolean | undefined;
|
|
2023
2027
|
}
|
|
2024
2028
|
export interface RebalanceSlotsInGlobalReplicationGroupResult {
|
|
2025
|
-
GlobalReplicationGroup?: GlobalReplicationGroup;
|
|
2029
|
+
GlobalReplicationGroup?: GlobalReplicationGroup | undefined;
|
|
2026
2030
|
}
|
|
2027
2031
|
export interface RebootCacheClusterMessage {
|
|
2028
2032
|
CacheClusterId: string | undefined;
|
|
2029
2033
|
CacheNodeIdsToReboot: string[] | undefined;
|
|
2030
2034
|
}
|
|
2031
2035
|
export interface RebootCacheClusterResult {
|
|
2032
|
-
CacheCluster?: CacheCluster;
|
|
2036
|
+
CacheCluster?: CacheCluster | undefined;
|
|
2033
2037
|
}
|
|
2034
2038
|
export interface RemoveTagsFromResourceMessage {
|
|
2035
2039
|
ResourceName: string | undefined;
|
|
@@ -2042,8 +2046,8 @@ export declare class TagNotFoundFault extends __BaseException {
|
|
|
2042
2046
|
}
|
|
2043
2047
|
export interface ResetCacheParameterGroupMessage {
|
|
2044
2048
|
CacheParameterGroupName: string | undefined;
|
|
2045
|
-
ResetAllParameters?: boolean;
|
|
2046
|
-
ParameterNameValues?: ParameterNameValue[];
|
|
2049
|
+
ResetAllParameters?: boolean | undefined;
|
|
2050
|
+
ParameterNameValues?: ParameterNameValue[] | undefined;
|
|
2047
2051
|
}
|
|
2048
2052
|
export declare class AuthorizationNotFoundFault extends __BaseException {
|
|
2049
2053
|
readonly name: "AuthorizationNotFoundFault";
|
|
@@ -2058,5 +2062,5 @@ export interface RevokeCacheSecurityGroupIngressMessage {
|
|
|
2058
2062
|
EC2SecurityGroupOwnerId: string | undefined;
|
|
2059
2063
|
}
|
|
2060
2064
|
export interface RevokeCacheSecurityGroupIngressResult {
|
|
2061
|
-
CacheSecurityGroup?: CacheSecurityGroup;
|
|
2065
|
+
CacheSecurityGroup?: CacheSecurityGroup | undefined;
|
|
2062
2066
|
}
|