@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.
|
@@ -22,12 +22,12 @@ export interface CustomerNodeEndpoint {
|
|
|
22
22
|
* <p>The address of the node endpoint</p>
|
|
23
23
|
* @public
|
|
24
24
|
*/
|
|
25
|
-
Address?: string;
|
|
25
|
+
Address?: string | undefined;
|
|
26
26
|
/**
|
|
27
27
|
* <p>The port of the node endpoint</p>
|
|
28
28
|
* @public
|
|
29
29
|
*/
|
|
30
|
-
Port?: number;
|
|
30
|
+
Port?: number | undefined;
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
33
|
* @public
|
|
@@ -53,7 +53,7 @@ export interface StartMigrationResponse {
|
|
|
53
53
|
* <p>Contains all of the attributes of a specific Valkey or Redis OSS replication group.</p>
|
|
54
54
|
* @public
|
|
55
55
|
*/
|
|
56
|
-
ReplicationGroup?: ReplicationGroup;
|
|
56
|
+
ReplicationGroup?: ReplicationGroup | undefined;
|
|
57
57
|
}
|
|
58
58
|
/**
|
|
59
59
|
* <p>The customer has exceeded the allowed rate of API calls.</p>
|
|
@@ -119,7 +119,7 @@ export interface TestFailoverResult {
|
|
|
119
119
|
* <p>Contains all of the attributes of a specific Valkey or Redis OSS replication group.</p>
|
|
120
120
|
* @public
|
|
121
121
|
*/
|
|
122
|
-
ReplicationGroup?: ReplicationGroup;
|
|
122
|
+
ReplicationGroup?: ReplicationGroup | undefined;
|
|
123
123
|
}
|
|
124
124
|
/**
|
|
125
125
|
* @public
|
|
@@ -145,5 +145,5 @@ export interface TestMigrationResponse {
|
|
|
145
145
|
* <p>Contains all of the attributes of a specific Valkey or Redis OSS replication group.</p>
|
|
146
146
|
* @public
|
|
147
147
|
*/
|
|
148
|
-
ReplicationGroup?: ReplicationGroup;
|
|
148
|
+
ReplicationGroup?: ReplicationGroup | undefined;
|
|
149
149
|
}
|