@aws-sdk/client-kafka 3.686.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +452 -452
- package/dist-types/ts3.4/models/models_0.d.ts +452 -452
- package/package.json +7 -7
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { KafkaServiceException as __BaseException } from "./KafkaServiceException";
|
|
3
3
|
export interface ProvisionedThroughput {
|
|
4
|
-
Enabled?: boolean;
|
|
5
|
-
VolumeThroughput?: number;
|
|
4
|
+
Enabled?: boolean | undefined;
|
|
5
|
+
VolumeThroughput?: number | undefined;
|
|
6
6
|
}
|
|
7
7
|
export interface BrokerEBSVolumeInfo {
|
|
8
8
|
KafkaBrokerNodeId: string | undefined;
|
|
9
|
-
ProvisionedThroughput?: ProvisionedThroughput;
|
|
10
|
-
VolumeSizeGB?: number;
|
|
9
|
+
ProvisionedThroughput?: ProvisionedThroughput | undefined;
|
|
10
|
+
VolumeSizeGB?: number | undefined;
|
|
11
11
|
}
|
|
12
12
|
export declare const VpcConnectionState: {
|
|
13
13
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -22,11 +22,11 @@ export declare const VpcConnectionState: {
|
|
|
22
22
|
export type VpcConnectionState =
|
|
23
23
|
(typeof VpcConnectionState)[keyof typeof VpcConnectionState];
|
|
24
24
|
export interface ClientVpcConnection {
|
|
25
|
-
Authentication?: string;
|
|
26
|
-
CreationTime?: Date;
|
|
27
|
-
State?: VpcConnectionState;
|
|
25
|
+
Authentication?: string | undefined;
|
|
26
|
+
CreationTime?: Date | undefined;
|
|
27
|
+
State?: VpcConnectionState | undefined;
|
|
28
28
|
VpcConnectionArn: string | undefined;
|
|
29
|
-
Owner?: string;
|
|
29
|
+
Owner?: string | undefined;
|
|
30
30
|
}
|
|
31
31
|
export declare const ClusterType: {
|
|
32
32
|
readonly PROVISIONED: "PROVISIONED";
|
|
@@ -39,74 +39,74 @@ export declare const BrokerAZDistribution: {
|
|
|
39
39
|
export type BrokerAZDistribution =
|
|
40
40
|
(typeof BrokerAZDistribution)[keyof typeof BrokerAZDistribution];
|
|
41
41
|
export interface PublicAccess {
|
|
42
|
-
Type?: string;
|
|
42
|
+
Type?: string | undefined;
|
|
43
43
|
}
|
|
44
44
|
export interface VpcConnectivityIam {
|
|
45
|
-
Enabled?: boolean;
|
|
45
|
+
Enabled?: boolean | undefined;
|
|
46
46
|
}
|
|
47
47
|
export interface VpcConnectivityScram {
|
|
48
|
-
Enabled?: boolean;
|
|
48
|
+
Enabled?: boolean | undefined;
|
|
49
49
|
}
|
|
50
50
|
export interface VpcConnectivitySasl {
|
|
51
|
-
Scram?: VpcConnectivityScram;
|
|
52
|
-
Iam?: VpcConnectivityIam;
|
|
51
|
+
Scram?: VpcConnectivityScram | undefined;
|
|
52
|
+
Iam?: VpcConnectivityIam | undefined;
|
|
53
53
|
}
|
|
54
54
|
export interface VpcConnectivityTls {
|
|
55
|
-
Enabled?: boolean;
|
|
55
|
+
Enabled?: boolean | undefined;
|
|
56
56
|
}
|
|
57
57
|
export interface VpcConnectivityClientAuthentication {
|
|
58
|
-
Sasl?: VpcConnectivitySasl;
|
|
59
|
-
Tls?: VpcConnectivityTls;
|
|
58
|
+
Sasl?: VpcConnectivitySasl | undefined;
|
|
59
|
+
Tls?: VpcConnectivityTls | undefined;
|
|
60
60
|
}
|
|
61
61
|
export interface VpcConnectivity {
|
|
62
|
-
ClientAuthentication?: VpcConnectivityClientAuthentication;
|
|
62
|
+
ClientAuthentication?: VpcConnectivityClientAuthentication | undefined;
|
|
63
63
|
}
|
|
64
64
|
export interface ConnectivityInfo {
|
|
65
|
-
PublicAccess?: PublicAccess;
|
|
66
|
-
VpcConnectivity?: VpcConnectivity;
|
|
65
|
+
PublicAccess?: PublicAccess | undefined;
|
|
66
|
+
VpcConnectivity?: VpcConnectivity | undefined;
|
|
67
67
|
}
|
|
68
68
|
export interface EBSStorageInfo {
|
|
69
|
-
ProvisionedThroughput?: ProvisionedThroughput;
|
|
70
|
-
VolumeSize?: number;
|
|
69
|
+
ProvisionedThroughput?: ProvisionedThroughput | undefined;
|
|
70
|
+
VolumeSize?: number | undefined;
|
|
71
71
|
}
|
|
72
72
|
export interface StorageInfo {
|
|
73
|
-
EbsStorageInfo?: EBSStorageInfo;
|
|
73
|
+
EbsStorageInfo?: EBSStorageInfo | undefined;
|
|
74
74
|
}
|
|
75
75
|
export interface BrokerNodeGroupInfo {
|
|
76
|
-
BrokerAZDistribution?: BrokerAZDistribution;
|
|
76
|
+
BrokerAZDistribution?: BrokerAZDistribution | undefined;
|
|
77
77
|
ClientSubnets: string[] | undefined;
|
|
78
78
|
InstanceType: string | undefined;
|
|
79
|
-
SecurityGroups?: string[];
|
|
80
|
-
StorageInfo?: StorageInfo;
|
|
81
|
-
ConnectivityInfo?: ConnectivityInfo;
|
|
82
|
-
ZoneIds?: string[];
|
|
79
|
+
SecurityGroups?: string[] | undefined;
|
|
80
|
+
StorageInfo?: StorageInfo | undefined;
|
|
81
|
+
ConnectivityInfo?: ConnectivityInfo | undefined;
|
|
82
|
+
ZoneIds?: string[] | undefined;
|
|
83
83
|
}
|
|
84
84
|
export interface Iam {
|
|
85
|
-
Enabled?: boolean;
|
|
85
|
+
Enabled?: boolean | undefined;
|
|
86
86
|
}
|
|
87
87
|
export interface Scram {
|
|
88
|
-
Enabled?: boolean;
|
|
88
|
+
Enabled?: boolean | undefined;
|
|
89
89
|
}
|
|
90
90
|
export interface Sasl {
|
|
91
|
-
Scram?: Scram;
|
|
92
|
-
Iam?: Iam;
|
|
91
|
+
Scram?: Scram | undefined;
|
|
92
|
+
Iam?: Iam | undefined;
|
|
93
93
|
}
|
|
94
94
|
export interface Tls {
|
|
95
|
-
CertificateAuthorityArnList?: string[];
|
|
96
|
-
Enabled?: boolean;
|
|
95
|
+
CertificateAuthorityArnList?: string[] | undefined;
|
|
96
|
+
Enabled?: boolean | undefined;
|
|
97
97
|
}
|
|
98
98
|
export interface Unauthenticated {
|
|
99
|
-
Enabled?: boolean;
|
|
99
|
+
Enabled?: boolean | undefined;
|
|
100
100
|
}
|
|
101
101
|
export interface ClientAuthentication {
|
|
102
|
-
Sasl?: Sasl;
|
|
103
|
-
Tls?: Tls;
|
|
104
|
-
Unauthenticated?: Unauthenticated;
|
|
102
|
+
Sasl?: Sasl | undefined;
|
|
103
|
+
Tls?: Tls | undefined;
|
|
104
|
+
Unauthenticated?: Unauthenticated | undefined;
|
|
105
105
|
}
|
|
106
106
|
export interface BrokerSoftwareInfo {
|
|
107
|
-
ConfigurationArn?: string;
|
|
108
|
-
ConfigurationRevision?: number;
|
|
109
|
-
KafkaVersion?: string;
|
|
107
|
+
ConfigurationArn?: string | undefined;
|
|
108
|
+
ConfigurationRevision?: number | undefined;
|
|
109
|
+
KafkaVersion?: string | undefined;
|
|
110
110
|
}
|
|
111
111
|
export declare const CustomerActionStatus: {
|
|
112
112
|
readonly ACTION_RECOMMENDED: "ACTION_RECOMMENDED";
|
|
@@ -125,12 +125,12 @@ export declare const ClientBroker: {
|
|
|
125
125
|
};
|
|
126
126
|
export type ClientBroker = (typeof ClientBroker)[keyof typeof ClientBroker];
|
|
127
127
|
export interface EncryptionInTransit {
|
|
128
|
-
ClientBroker?: ClientBroker;
|
|
129
|
-
InCluster?: boolean;
|
|
128
|
+
ClientBroker?: ClientBroker | undefined;
|
|
129
|
+
InCluster?: boolean | undefined;
|
|
130
130
|
}
|
|
131
131
|
export interface EncryptionInfo {
|
|
132
|
-
EncryptionAtRest?: EncryptionAtRest;
|
|
133
|
-
EncryptionInTransit?: EncryptionInTransit;
|
|
132
|
+
EncryptionAtRest?: EncryptionAtRest | undefined;
|
|
133
|
+
EncryptionInTransit?: EncryptionInTransit | undefined;
|
|
134
134
|
}
|
|
135
135
|
export declare const EnhancedMonitoring: {
|
|
136
136
|
readonly DEFAULT: "DEFAULT";
|
|
@@ -142,21 +142,21 @@ export type EnhancedMonitoring =
|
|
|
142
142
|
(typeof EnhancedMonitoring)[keyof typeof EnhancedMonitoring];
|
|
143
143
|
export interface CloudWatchLogs {
|
|
144
144
|
Enabled: boolean | undefined;
|
|
145
|
-
LogGroup?: string;
|
|
145
|
+
LogGroup?: string | undefined;
|
|
146
146
|
}
|
|
147
147
|
export interface Firehose {
|
|
148
|
-
DeliveryStream?: string;
|
|
148
|
+
DeliveryStream?: string | undefined;
|
|
149
149
|
Enabled: boolean | undefined;
|
|
150
150
|
}
|
|
151
151
|
export interface S3 {
|
|
152
|
-
Bucket?: string;
|
|
152
|
+
Bucket?: string | undefined;
|
|
153
153
|
Enabled: boolean | undefined;
|
|
154
|
-
Prefix?: string;
|
|
154
|
+
Prefix?: string | undefined;
|
|
155
155
|
}
|
|
156
156
|
export interface BrokerLogs {
|
|
157
|
-
CloudWatchLogs?: CloudWatchLogs;
|
|
158
|
-
Firehose?: Firehose;
|
|
159
|
-
S3?: S3;
|
|
157
|
+
CloudWatchLogs?: CloudWatchLogs | undefined;
|
|
158
|
+
Firehose?: Firehose | undefined;
|
|
159
|
+
S3?: S3 | undefined;
|
|
160
160
|
}
|
|
161
161
|
export interface LoggingInfo {
|
|
162
162
|
BrokerLogs: BrokerLogs | undefined;
|
|
@@ -168,8 +168,8 @@ export interface NodeExporterInfo {
|
|
|
168
168
|
EnabledInBroker: boolean | undefined;
|
|
169
169
|
}
|
|
170
170
|
export interface PrometheusInfo {
|
|
171
|
-
JmxExporter?: JmxExporterInfo;
|
|
172
|
-
NodeExporter?: NodeExporterInfo;
|
|
171
|
+
JmxExporter?: JmxExporterInfo | undefined;
|
|
172
|
+
NodeExporter?: NodeExporterInfo | undefined;
|
|
173
173
|
}
|
|
174
174
|
export interface OpenMonitoringInfo {
|
|
175
175
|
Prometheus: PrometheusInfo | undefined;
|
|
@@ -181,31 +181,31 @@ export declare const StorageMode: {
|
|
|
181
181
|
export type StorageMode = (typeof StorageMode)[keyof typeof StorageMode];
|
|
182
182
|
export interface Provisioned {
|
|
183
183
|
BrokerNodeGroupInfo: BrokerNodeGroupInfo | undefined;
|
|
184
|
-
CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo;
|
|
185
|
-
ClientAuthentication?: ClientAuthentication;
|
|
186
|
-
EncryptionInfo?: EncryptionInfo;
|
|
187
|
-
EnhancedMonitoring?: EnhancedMonitoring;
|
|
188
|
-
OpenMonitoring?: OpenMonitoringInfo;
|
|
189
|
-
LoggingInfo?: LoggingInfo;
|
|
184
|
+
CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo | undefined;
|
|
185
|
+
ClientAuthentication?: ClientAuthentication | undefined;
|
|
186
|
+
EncryptionInfo?: EncryptionInfo | undefined;
|
|
187
|
+
EnhancedMonitoring?: EnhancedMonitoring | undefined;
|
|
188
|
+
OpenMonitoring?: OpenMonitoringInfo | undefined;
|
|
189
|
+
LoggingInfo?: LoggingInfo | undefined;
|
|
190
190
|
NumberOfBrokerNodes: number | undefined;
|
|
191
|
-
ZookeeperConnectString?: string;
|
|
192
|
-
ZookeeperConnectStringTls?: string;
|
|
193
|
-
StorageMode?: StorageMode;
|
|
194
|
-
CustomerActionStatus?: CustomerActionStatus;
|
|
191
|
+
ZookeeperConnectString?: string | undefined;
|
|
192
|
+
ZookeeperConnectStringTls?: string | undefined;
|
|
193
|
+
StorageMode?: StorageMode | undefined;
|
|
194
|
+
CustomerActionStatus?: CustomerActionStatus | undefined;
|
|
195
195
|
}
|
|
196
196
|
export interface ServerlessSasl {
|
|
197
|
-
Iam?: Iam;
|
|
197
|
+
Iam?: Iam | undefined;
|
|
198
198
|
}
|
|
199
199
|
export interface ServerlessClientAuthentication {
|
|
200
|
-
Sasl?: ServerlessSasl;
|
|
200
|
+
Sasl?: ServerlessSasl | undefined;
|
|
201
201
|
}
|
|
202
202
|
export interface VpcConfig {
|
|
203
203
|
SubnetIds: string[] | undefined;
|
|
204
|
-
SecurityGroupIds?: string[];
|
|
204
|
+
SecurityGroupIds?: string[] | undefined;
|
|
205
205
|
}
|
|
206
206
|
export interface Serverless {
|
|
207
207
|
VpcConfigs: VpcConfig[] | undefined;
|
|
208
|
-
ClientAuthentication?: ServerlessClientAuthentication;
|
|
208
|
+
ClientAuthentication?: ServerlessClientAuthentication | undefined;
|
|
209
209
|
}
|
|
210
210
|
export declare const ClusterState: {
|
|
211
211
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -219,21 +219,21 @@ export declare const ClusterState: {
|
|
|
219
219
|
};
|
|
220
220
|
export type ClusterState = (typeof ClusterState)[keyof typeof ClusterState];
|
|
221
221
|
export interface StateInfo {
|
|
222
|
-
Code?: string;
|
|
223
|
-
Message?: string;
|
|
222
|
+
Code?: string | undefined;
|
|
223
|
+
Message?: string | undefined;
|
|
224
224
|
}
|
|
225
225
|
export interface Cluster {
|
|
226
|
-
ActiveOperationArn?: string;
|
|
227
|
-
ClusterType?: ClusterType;
|
|
228
|
-
ClusterArn?: string;
|
|
229
|
-
ClusterName?: string;
|
|
230
|
-
CreationTime?: Date;
|
|
231
|
-
CurrentVersion?: string;
|
|
232
|
-
State?: ClusterState;
|
|
233
|
-
StateInfo?: StateInfo;
|
|
234
|
-
Tags?: Record<string, string
|
|
235
|
-
Provisioned?: Provisioned;
|
|
236
|
-
Serverless?: Serverless;
|
|
226
|
+
ActiveOperationArn?: string | undefined;
|
|
227
|
+
ClusterType?: ClusterType | undefined;
|
|
228
|
+
ClusterArn?: string | undefined;
|
|
229
|
+
ClusterName?: string | undefined;
|
|
230
|
+
CreationTime?: Date | undefined;
|
|
231
|
+
CurrentVersion?: string | undefined;
|
|
232
|
+
State?: ClusterState | undefined;
|
|
233
|
+
StateInfo?: StateInfo | undefined;
|
|
234
|
+
Tags?: Record<string, string> | undefined;
|
|
235
|
+
Provisioned?: Provisioned | undefined;
|
|
236
|
+
Serverless?: Serverless | undefined;
|
|
237
237
|
}
|
|
238
238
|
export interface JmxExporter {
|
|
239
239
|
EnabledInBroker: boolean | undefined;
|
|
@@ -242,67 +242,67 @@ export interface NodeExporter {
|
|
|
242
242
|
EnabledInBroker: boolean | undefined;
|
|
243
243
|
}
|
|
244
244
|
export interface Prometheus {
|
|
245
|
-
JmxExporter?: JmxExporter;
|
|
246
|
-
NodeExporter?: NodeExporter;
|
|
245
|
+
JmxExporter?: JmxExporter | undefined;
|
|
246
|
+
NodeExporter?: NodeExporter | undefined;
|
|
247
247
|
}
|
|
248
248
|
export interface OpenMonitoring {
|
|
249
249
|
Prometheus: Prometheus | undefined;
|
|
250
250
|
}
|
|
251
251
|
export interface ClusterInfo {
|
|
252
|
-
ActiveOperationArn?: string;
|
|
253
|
-
BrokerNodeGroupInfo?: BrokerNodeGroupInfo;
|
|
254
|
-
ClientAuthentication?: ClientAuthentication;
|
|
255
|
-
ClusterArn?: string;
|
|
256
|
-
ClusterName?: string;
|
|
257
|
-
CreationTime?: Date;
|
|
258
|
-
CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo;
|
|
259
|
-
CurrentVersion?: string;
|
|
260
|
-
EncryptionInfo?: EncryptionInfo;
|
|
261
|
-
EnhancedMonitoring?: EnhancedMonitoring;
|
|
262
|
-
OpenMonitoring?: OpenMonitoring;
|
|
263
|
-
LoggingInfo?: LoggingInfo;
|
|
264
|
-
NumberOfBrokerNodes?: number;
|
|
265
|
-
State?: ClusterState;
|
|
266
|
-
StateInfo?: StateInfo;
|
|
267
|
-
Tags?: Record<string, string
|
|
268
|
-
ZookeeperConnectString?: string;
|
|
269
|
-
ZookeeperConnectStringTls?: string;
|
|
270
|
-
StorageMode?: StorageMode;
|
|
271
|
-
CustomerActionStatus?: CustomerActionStatus;
|
|
252
|
+
ActiveOperationArn?: string | undefined;
|
|
253
|
+
BrokerNodeGroupInfo?: BrokerNodeGroupInfo | undefined;
|
|
254
|
+
ClientAuthentication?: ClientAuthentication | undefined;
|
|
255
|
+
ClusterArn?: string | undefined;
|
|
256
|
+
ClusterName?: string | undefined;
|
|
257
|
+
CreationTime?: Date | undefined;
|
|
258
|
+
CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo | undefined;
|
|
259
|
+
CurrentVersion?: string | undefined;
|
|
260
|
+
EncryptionInfo?: EncryptionInfo | undefined;
|
|
261
|
+
EnhancedMonitoring?: EnhancedMonitoring | undefined;
|
|
262
|
+
OpenMonitoring?: OpenMonitoring | undefined;
|
|
263
|
+
LoggingInfo?: LoggingInfo | undefined;
|
|
264
|
+
NumberOfBrokerNodes?: number | undefined;
|
|
265
|
+
State?: ClusterState | undefined;
|
|
266
|
+
StateInfo?: StateInfo | undefined;
|
|
267
|
+
Tags?: Record<string, string> | undefined;
|
|
268
|
+
ZookeeperConnectString?: string | undefined;
|
|
269
|
+
ZookeeperConnectStringTls?: string | undefined;
|
|
270
|
+
StorageMode?: StorageMode | undefined;
|
|
271
|
+
CustomerActionStatus?: CustomerActionStatus | undefined;
|
|
272
272
|
}
|
|
273
273
|
export interface ErrorInfo {
|
|
274
|
-
ErrorCode?: string;
|
|
275
|
-
ErrorString?: string;
|
|
274
|
+
ErrorCode?: string | undefined;
|
|
275
|
+
ErrorString?: string | undefined;
|
|
276
276
|
}
|
|
277
277
|
export interface ClusterOperationStepInfo {
|
|
278
|
-
StepStatus?: string;
|
|
278
|
+
StepStatus?: string | undefined;
|
|
279
279
|
}
|
|
280
280
|
export interface ClusterOperationStep {
|
|
281
|
-
StepInfo?: ClusterOperationStepInfo;
|
|
282
|
-
StepName?: string;
|
|
281
|
+
StepInfo?: ClusterOperationStepInfo | undefined;
|
|
282
|
+
StepName?: string | undefined;
|
|
283
283
|
}
|
|
284
284
|
export interface BrokerCountUpdateInfo {
|
|
285
|
-
CreatedBrokerIds?: number[];
|
|
286
|
-
DeletedBrokerIds?: number[];
|
|
285
|
+
CreatedBrokerIds?: number[] | undefined;
|
|
286
|
+
DeletedBrokerIds?: number[] | undefined;
|
|
287
287
|
}
|
|
288
288
|
export interface ConfigurationInfo {
|
|
289
289
|
Arn: string | undefined;
|
|
290
290
|
Revision: number | undefined;
|
|
291
291
|
}
|
|
292
292
|
export interface MutableClusterInfo {
|
|
293
|
-
BrokerEBSVolumeInfo?: BrokerEBSVolumeInfo[];
|
|
294
|
-
ConfigurationInfo?: ConfigurationInfo;
|
|
295
|
-
NumberOfBrokerNodes?: number;
|
|
296
|
-
EnhancedMonitoring?: EnhancedMonitoring;
|
|
297
|
-
OpenMonitoring?: OpenMonitoring;
|
|
298
|
-
KafkaVersion?: string;
|
|
299
|
-
LoggingInfo?: LoggingInfo;
|
|
300
|
-
InstanceType?: string;
|
|
301
|
-
ClientAuthentication?: ClientAuthentication;
|
|
302
|
-
EncryptionInfo?: EncryptionInfo;
|
|
303
|
-
ConnectivityInfo?: ConnectivityInfo;
|
|
304
|
-
StorageMode?: StorageMode;
|
|
305
|
-
BrokerCountUpdateInfo?: BrokerCountUpdateInfo;
|
|
293
|
+
BrokerEBSVolumeInfo?: BrokerEBSVolumeInfo[] | undefined;
|
|
294
|
+
ConfigurationInfo?: ConfigurationInfo | undefined;
|
|
295
|
+
NumberOfBrokerNodes?: number | undefined;
|
|
296
|
+
EnhancedMonitoring?: EnhancedMonitoring | undefined;
|
|
297
|
+
OpenMonitoring?: OpenMonitoring | undefined;
|
|
298
|
+
KafkaVersion?: string | undefined;
|
|
299
|
+
LoggingInfo?: LoggingInfo | undefined;
|
|
300
|
+
InstanceType?: string | undefined;
|
|
301
|
+
ClientAuthentication?: ClientAuthentication | undefined;
|
|
302
|
+
EncryptionInfo?: EncryptionInfo | undefined;
|
|
303
|
+
ConnectivityInfo?: ConnectivityInfo | undefined;
|
|
304
|
+
StorageMode?: StorageMode | undefined;
|
|
305
|
+
BrokerCountUpdateInfo?: BrokerCountUpdateInfo | undefined;
|
|
306
306
|
}
|
|
307
307
|
export declare const UserIdentityType: {
|
|
308
308
|
readonly AWSACCOUNT: "AWSACCOUNT";
|
|
@@ -311,45 +311,45 @@ export declare const UserIdentityType: {
|
|
|
311
311
|
export type UserIdentityType =
|
|
312
312
|
(typeof UserIdentityType)[keyof typeof UserIdentityType];
|
|
313
313
|
export interface UserIdentity {
|
|
314
|
-
Type?: UserIdentityType;
|
|
315
|
-
PrincipalId?: string;
|
|
314
|
+
Type?: UserIdentityType | undefined;
|
|
315
|
+
PrincipalId?: string | undefined;
|
|
316
316
|
}
|
|
317
317
|
export interface VpcConnectionInfo {
|
|
318
|
-
VpcConnectionArn?: string;
|
|
319
|
-
Owner?: string;
|
|
320
|
-
UserIdentity?: UserIdentity;
|
|
321
|
-
CreationTime?: Date;
|
|
318
|
+
VpcConnectionArn?: string | undefined;
|
|
319
|
+
Owner?: string | undefined;
|
|
320
|
+
UserIdentity?: UserIdentity | undefined;
|
|
321
|
+
CreationTime?: Date | undefined;
|
|
322
322
|
}
|
|
323
323
|
export interface ClusterOperationInfo {
|
|
324
|
-
ClientRequestId?: string;
|
|
325
|
-
ClusterArn?: string;
|
|
326
|
-
CreationTime?: Date;
|
|
327
|
-
EndTime?: Date;
|
|
328
|
-
ErrorInfo?: ErrorInfo;
|
|
329
|
-
OperationArn?: string;
|
|
330
|
-
OperationState?: string;
|
|
331
|
-
OperationSteps?: ClusterOperationStep[];
|
|
332
|
-
OperationType?: string;
|
|
333
|
-
SourceClusterInfo?: MutableClusterInfo;
|
|
334
|
-
TargetClusterInfo?: MutableClusterInfo;
|
|
335
|
-
VpcConnectionInfo?: VpcConnectionInfo;
|
|
324
|
+
ClientRequestId?: string | undefined;
|
|
325
|
+
ClusterArn?: string | undefined;
|
|
326
|
+
CreationTime?: Date | undefined;
|
|
327
|
+
EndTime?: Date | undefined;
|
|
328
|
+
ErrorInfo?: ErrorInfo | undefined;
|
|
329
|
+
OperationArn?: string | undefined;
|
|
330
|
+
OperationState?: string | undefined;
|
|
331
|
+
OperationSteps?: ClusterOperationStep[] | undefined;
|
|
332
|
+
OperationType?: string | undefined;
|
|
333
|
+
SourceClusterInfo?: MutableClusterInfo | undefined;
|
|
334
|
+
TargetClusterInfo?: MutableClusterInfo | undefined;
|
|
335
|
+
VpcConnectionInfo?: VpcConnectionInfo | undefined;
|
|
336
336
|
}
|
|
337
337
|
export interface ClusterOperationV2Summary {
|
|
338
|
-
ClusterArn?: string;
|
|
339
|
-
ClusterType?: ClusterType;
|
|
340
|
-
StartTime?: Date;
|
|
341
|
-
EndTime?: Date;
|
|
342
|
-
OperationArn?: string;
|
|
343
|
-
OperationState?: string;
|
|
344
|
-
OperationType?: string;
|
|
338
|
+
ClusterArn?: string | undefined;
|
|
339
|
+
ClusterType?: ClusterType | undefined;
|
|
340
|
+
StartTime?: Date | undefined;
|
|
341
|
+
EndTime?: Date | undefined;
|
|
342
|
+
OperationArn?: string | undefined;
|
|
343
|
+
OperationState?: string | undefined;
|
|
344
|
+
OperationType?: string | undefined;
|
|
345
345
|
}
|
|
346
346
|
export interface CompatibleKafkaVersion {
|
|
347
|
-
SourceVersion?: string;
|
|
348
|
-
TargetVersions?: string[];
|
|
347
|
+
SourceVersion?: string | undefined;
|
|
348
|
+
TargetVersions?: string[] | undefined;
|
|
349
349
|
}
|
|
350
350
|
export interface ConfigurationRevision {
|
|
351
351
|
CreationTime: Date | undefined;
|
|
352
|
-
Description?: string;
|
|
352
|
+
Description?: string | undefined;
|
|
353
353
|
Revision: number | undefined;
|
|
354
354
|
}
|
|
355
355
|
export declare const ConfigurationState: {
|
|
@@ -372,7 +372,7 @@ export interface AmazonMskCluster {
|
|
|
372
372
|
MskClusterArn: string | undefined;
|
|
373
373
|
}
|
|
374
374
|
export interface KafkaClusterClientVpcConfig {
|
|
375
|
-
SecurityGroupIds?: string[];
|
|
375
|
+
SecurityGroupIds?: string[] | undefined;
|
|
376
376
|
SubnetIds: string[] | undefined;
|
|
377
377
|
}
|
|
378
378
|
export interface KafkaCluster {
|
|
@@ -380,13 +380,13 @@ export interface KafkaCluster {
|
|
|
380
380
|
VpcConfig: KafkaClusterClientVpcConfig | undefined;
|
|
381
381
|
}
|
|
382
382
|
export interface KafkaClusterDescription {
|
|
383
|
-
AmazonMskCluster?: AmazonMskCluster;
|
|
384
|
-
KafkaClusterAlias?: string;
|
|
385
|
-
VpcConfig?: KafkaClusterClientVpcConfig;
|
|
383
|
+
AmazonMskCluster?: AmazonMskCluster | undefined;
|
|
384
|
+
KafkaClusterAlias?: string | undefined;
|
|
385
|
+
VpcConfig?: KafkaClusterClientVpcConfig | undefined;
|
|
386
386
|
}
|
|
387
387
|
export interface KafkaClusterSummary {
|
|
388
|
-
AmazonMskCluster?: AmazonMskCluster;
|
|
389
|
-
KafkaClusterAlias?: string;
|
|
388
|
+
AmazonMskCluster?: AmazonMskCluster | undefined;
|
|
389
|
+
KafkaClusterAlias?: string | undefined;
|
|
390
390
|
}
|
|
391
391
|
export declare const KafkaVersionStatus: {
|
|
392
392
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -395,45 +395,45 @@ export declare const KafkaVersionStatus: {
|
|
|
395
395
|
export type KafkaVersionStatus =
|
|
396
396
|
(typeof KafkaVersionStatus)[keyof typeof KafkaVersionStatus];
|
|
397
397
|
export interface KafkaVersion {
|
|
398
|
-
Version?: string;
|
|
399
|
-
Status?: KafkaVersionStatus;
|
|
398
|
+
Version?: string | undefined;
|
|
399
|
+
Status?: KafkaVersionStatus | undefined;
|
|
400
400
|
}
|
|
401
401
|
export interface BrokerNodeInfo {
|
|
402
|
-
AttachedENIId?: string;
|
|
403
|
-
BrokerId?: number;
|
|
404
|
-
ClientSubnet?: string;
|
|
405
|
-
ClientVpcIpAddress?: string;
|
|
406
|
-
CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo;
|
|
407
|
-
Endpoints?: string[];
|
|
402
|
+
AttachedENIId?: string | undefined;
|
|
403
|
+
BrokerId?: number | undefined;
|
|
404
|
+
ClientSubnet?: string | undefined;
|
|
405
|
+
ClientVpcIpAddress?: string | undefined;
|
|
406
|
+
CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo | undefined;
|
|
407
|
+
Endpoints?: string[] | undefined;
|
|
408
408
|
}
|
|
409
409
|
export interface ControllerNodeInfo {
|
|
410
|
-
Endpoints?: string[];
|
|
410
|
+
Endpoints?: string[] | undefined;
|
|
411
411
|
}
|
|
412
412
|
export declare const NodeType: {
|
|
413
413
|
readonly BROKER: "BROKER";
|
|
414
414
|
};
|
|
415
415
|
export type NodeType = (typeof NodeType)[keyof typeof NodeType];
|
|
416
416
|
export interface ZookeeperNodeInfo {
|
|
417
|
-
AttachedENIId?: string;
|
|
418
|
-
ClientVpcIpAddress?: string;
|
|
419
|
-
Endpoints?: string[];
|
|
420
|
-
ZookeeperId?: number;
|
|
421
|
-
ZookeeperVersion?: string;
|
|
417
|
+
AttachedENIId?: string | undefined;
|
|
418
|
+
ClientVpcIpAddress?: string | undefined;
|
|
419
|
+
Endpoints?: string[] | undefined;
|
|
420
|
+
ZookeeperId?: number | undefined;
|
|
421
|
+
ZookeeperVersion?: string | undefined;
|
|
422
422
|
}
|
|
423
423
|
export interface NodeInfo {
|
|
424
|
-
AddedToClusterTime?: string;
|
|
425
|
-
BrokerNodeInfo?: BrokerNodeInfo;
|
|
426
|
-
ControllerNodeInfo?: ControllerNodeInfo;
|
|
427
|
-
InstanceType?: string;
|
|
428
|
-
NodeARN?: string;
|
|
429
|
-
NodeType?: NodeType;
|
|
430
|
-
ZookeeperNodeInfo?: ZookeeperNodeInfo;
|
|
424
|
+
AddedToClusterTime?: string | undefined;
|
|
425
|
+
BrokerNodeInfo?: BrokerNodeInfo | undefined;
|
|
426
|
+
ControllerNodeInfo?: ControllerNodeInfo | undefined;
|
|
427
|
+
InstanceType?: string | undefined;
|
|
428
|
+
NodeARN?: string | undefined;
|
|
429
|
+
NodeType?: NodeType | undefined;
|
|
430
|
+
ZookeeperNodeInfo?: ZookeeperNodeInfo | undefined;
|
|
431
431
|
}
|
|
432
432
|
export interface ConsumerGroupReplication {
|
|
433
|
-
ConsumerGroupsToExclude?: string[];
|
|
433
|
+
ConsumerGroupsToExclude?: string[] | undefined;
|
|
434
434
|
ConsumerGroupsToReplicate: string[] | undefined;
|
|
435
|
-
DetectAndCopyNewConsumerGroups?: boolean;
|
|
436
|
-
SynchroniseConsumerGroupOffsets?: boolean;
|
|
435
|
+
DetectAndCopyNewConsumerGroups?: boolean | undefined;
|
|
436
|
+
SynchroniseConsumerGroupOffsets?: boolean | undefined;
|
|
437
437
|
}
|
|
438
438
|
export declare const TargetCompressionType: {
|
|
439
439
|
readonly GZIP: "GZIP";
|
|
@@ -451,7 +451,7 @@ export declare const ReplicationStartingPositionType: {
|
|
|
451
451
|
export type ReplicationStartingPositionType =
|
|
452
452
|
(typeof ReplicationStartingPositionType)[keyof typeof ReplicationStartingPositionType];
|
|
453
453
|
export interface ReplicationStartingPosition {
|
|
454
|
-
Type?: ReplicationStartingPositionType;
|
|
454
|
+
Type?: ReplicationStartingPositionType | undefined;
|
|
455
455
|
}
|
|
456
456
|
export declare const ReplicationTopicNameConfigurationType: {
|
|
457
457
|
readonly IDENTICAL: "IDENTICAL";
|
|
@@ -460,15 +460,15 @@ export declare const ReplicationTopicNameConfigurationType: {
|
|
|
460
460
|
export type ReplicationTopicNameConfigurationType =
|
|
461
461
|
(typeof ReplicationTopicNameConfigurationType)[keyof typeof ReplicationTopicNameConfigurationType];
|
|
462
462
|
export interface ReplicationTopicNameConfiguration {
|
|
463
|
-
Type?: ReplicationTopicNameConfigurationType;
|
|
463
|
+
Type?: ReplicationTopicNameConfigurationType | undefined;
|
|
464
464
|
}
|
|
465
465
|
export interface TopicReplication {
|
|
466
|
-
CopyAccessControlListsForTopics?: boolean;
|
|
467
|
-
CopyTopicConfigurations?: boolean;
|
|
468
|
-
DetectAndCopyNewTopics?: boolean;
|
|
469
|
-
StartingPosition?: ReplicationStartingPosition;
|
|
470
|
-
TopicNameConfiguration?: ReplicationTopicNameConfiguration;
|
|
471
|
-
TopicsToExclude?: string[];
|
|
466
|
+
CopyAccessControlListsForTopics?: boolean | undefined;
|
|
467
|
+
CopyTopicConfigurations?: boolean | undefined;
|
|
468
|
+
DetectAndCopyNewTopics?: boolean | undefined;
|
|
469
|
+
StartingPosition?: ReplicationStartingPosition | undefined;
|
|
470
|
+
TopicNameConfiguration?: ReplicationTopicNameConfiguration | undefined;
|
|
471
|
+
TopicsToExclude?: string[] | undefined;
|
|
472
472
|
TopicsToReplicate: string[] | undefined;
|
|
473
473
|
}
|
|
474
474
|
export interface ReplicationInfo {
|
|
@@ -479,15 +479,15 @@ export interface ReplicationInfo {
|
|
|
479
479
|
TopicReplication: TopicReplication | undefined;
|
|
480
480
|
}
|
|
481
481
|
export interface ReplicationInfoDescription {
|
|
482
|
-
ConsumerGroupReplication?: ConsumerGroupReplication;
|
|
483
|
-
SourceKafkaClusterAlias?: string;
|
|
484
|
-
TargetCompressionType?: TargetCompressionType;
|
|
485
|
-
TargetKafkaClusterAlias?: string;
|
|
486
|
-
TopicReplication?: TopicReplication;
|
|
482
|
+
ConsumerGroupReplication?: ConsumerGroupReplication | undefined;
|
|
483
|
+
SourceKafkaClusterAlias?: string | undefined;
|
|
484
|
+
TargetCompressionType?: TargetCompressionType | undefined;
|
|
485
|
+
TargetKafkaClusterAlias?: string | undefined;
|
|
486
|
+
TopicReplication?: TopicReplication | undefined;
|
|
487
487
|
}
|
|
488
488
|
export interface ReplicationInfoSummary {
|
|
489
|
-
SourceKafkaClusterAlias?: string;
|
|
490
|
-
TargetKafkaClusterAlias?: string;
|
|
489
|
+
SourceKafkaClusterAlias?: string | undefined;
|
|
490
|
+
TargetKafkaClusterAlias?: string | undefined;
|
|
491
491
|
}
|
|
492
492
|
export declare const ReplicatorState: {
|
|
493
493
|
readonly CREATING: "CREATING";
|
|
@@ -499,34 +499,34 @@ export declare const ReplicatorState: {
|
|
|
499
499
|
export type ReplicatorState =
|
|
500
500
|
(typeof ReplicatorState)[keyof typeof ReplicatorState];
|
|
501
501
|
export interface ReplicatorSummary {
|
|
502
|
-
CreationTime?: Date;
|
|
503
|
-
CurrentVersion?: string;
|
|
504
|
-
IsReplicatorReference?: boolean;
|
|
505
|
-
KafkaClustersSummary?: KafkaClusterSummary[];
|
|
506
|
-
ReplicationInfoSummaryList?: ReplicationInfoSummary[];
|
|
507
|
-
ReplicatorArn?: string;
|
|
508
|
-
ReplicatorName?: string;
|
|
509
|
-
ReplicatorResourceArn?: string;
|
|
510
|
-
ReplicatorState?: ReplicatorState;
|
|
502
|
+
CreationTime?: Date | undefined;
|
|
503
|
+
CurrentVersion?: string | undefined;
|
|
504
|
+
IsReplicatorReference?: boolean | undefined;
|
|
505
|
+
KafkaClustersSummary?: KafkaClusterSummary[] | undefined;
|
|
506
|
+
ReplicationInfoSummaryList?: ReplicationInfoSummary[] | undefined;
|
|
507
|
+
ReplicatorArn?: string | undefined;
|
|
508
|
+
ReplicatorName?: string | undefined;
|
|
509
|
+
ReplicatorResourceArn?: string | undefined;
|
|
510
|
+
ReplicatorState?: ReplicatorState | undefined;
|
|
511
511
|
}
|
|
512
512
|
export interface UnprocessedScramSecret {
|
|
513
|
-
ErrorCode?: string;
|
|
514
|
-
ErrorMessage?: string;
|
|
515
|
-
SecretArn?: string;
|
|
513
|
+
ErrorCode?: string | undefined;
|
|
514
|
+
ErrorMessage?: string | undefined;
|
|
515
|
+
SecretArn?: string | undefined;
|
|
516
516
|
}
|
|
517
517
|
export interface VpcConnection {
|
|
518
518
|
VpcConnectionArn: string | undefined;
|
|
519
519
|
TargetClusterArn: string | undefined;
|
|
520
|
-
CreationTime?: Date;
|
|
521
|
-
Authentication?: string;
|
|
522
|
-
VpcId?: string;
|
|
523
|
-
State?: VpcConnectionState;
|
|
520
|
+
CreationTime?: Date | undefined;
|
|
521
|
+
Authentication?: string | undefined;
|
|
522
|
+
VpcId?: string | undefined;
|
|
523
|
+
State?: VpcConnectionState | undefined;
|
|
524
524
|
}
|
|
525
525
|
export declare class BadRequestException extends __BaseException {
|
|
526
526
|
readonly name: "BadRequestException";
|
|
527
527
|
readonly $fault: "client";
|
|
528
|
-
InvalidParameter?: string;
|
|
529
|
-
Message?: string;
|
|
528
|
+
InvalidParameter?: string | undefined;
|
|
529
|
+
Message?: string | undefined;
|
|
530
530
|
constructor(
|
|
531
531
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
532
532
|
);
|
|
@@ -536,21 +536,21 @@ export interface BatchAssociateScramSecretRequest {
|
|
|
536
536
|
SecretArnList: string[] | undefined;
|
|
537
537
|
}
|
|
538
538
|
export interface BatchAssociateScramSecretResponse {
|
|
539
|
-
ClusterArn?: string;
|
|
540
|
-
UnprocessedScramSecrets?: UnprocessedScramSecret[];
|
|
539
|
+
ClusterArn?: string | undefined;
|
|
540
|
+
UnprocessedScramSecrets?: UnprocessedScramSecret[] | undefined;
|
|
541
541
|
}
|
|
542
542
|
export declare class ForbiddenException extends __BaseException {
|
|
543
543
|
readonly name: "ForbiddenException";
|
|
544
544
|
readonly $fault: "client";
|
|
545
|
-
InvalidParameter?: string;
|
|
546
|
-
Message?: string;
|
|
545
|
+
InvalidParameter?: string | undefined;
|
|
546
|
+
Message?: string | undefined;
|
|
547
547
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
548
548
|
}
|
|
549
549
|
export declare class InternalServerErrorException extends __BaseException {
|
|
550
550
|
readonly name: "InternalServerErrorException";
|
|
551
551
|
readonly $fault: "server";
|
|
552
|
-
InvalidParameter?: string;
|
|
553
|
-
Message?: string;
|
|
552
|
+
InvalidParameter?: string | undefined;
|
|
553
|
+
Message?: string | undefined;
|
|
554
554
|
constructor(
|
|
555
555
|
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
556
556
|
);
|
|
@@ -558,15 +558,15 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
558
558
|
export declare class NotFoundException extends __BaseException {
|
|
559
559
|
readonly name: "NotFoundException";
|
|
560
560
|
readonly $fault: "client";
|
|
561
|
-
InvalidParameter?: string;
|
|
562
|
-
Message?: string;
|
|
561
|
+
InvalidParameter?: string | undefined;
|
|
562
|
+
Message?: string | undefined;
|
|
563
563
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
564
564
|
}
|
|
565
565
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
566
566
|
readonly name: "ServiceUnavailableException";
|
|
567
567
|
readonly $fault: "server";
|
|
568
|
-
InvalidParameter?: string;
|
|
569
|
-
Message?: string;
|
|
568
|
+
InvalidParameter?: string | undefined;
|
|
569
|
+
Message?: string | undefined;
|
|
570
570
|
constructor(
|
|
571
571
|
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
572
572
|
);
|
|
@@ -574,8 +574,8 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
574
574
|
export declare class TooManyRequestsException extends __BaseException {
|
|
575
575
|
readonly name: "TooManyRequestsException";
|
|
576
576
|
readonly $fault: "client";
|
|
577
|
-
InvalidParameter?: string;
|
|
578
|
-
Message?: string;
|
|
577
|
+
InvalidParameter?: string | undefined;
|
|
578
|
+
Message?: string | undefined;
|
|
579
579
|
constructor(
|
|
580
580
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
581
581
|
);
|
|
@@ -583,8 +583,8 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
583
583
|
export declare class UnauthorizedException extends __BaseException {
|
|
584
584
|
readonly name: "UnauthorizedException";
|
|
585
585
|
readonly $fault: "client";
|
|
586
|
-
InvalidParameter?: string;
|
|
587
|
-
Message?: string;
|
|
586
|
+
InvalidParameter?: string | undefined;
|
|
587
|
+
Message?: string | undefined;
|
|
588
588
|
constructor(
|
|
589
589
|
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
590
590
|
);
|
|
@@ -594,41 +594,41 @@ export interface BatchDisassociateScramSecretRequest {
|
|
|
594
594
|
SecretArnList: string[] | undefined;
|
|
595
595
|
}
|
|
596
596
|
export interface BatchDisassociateScramSecretResponse {
|
|
597
|
-
ClusterArn?: string;
|
|
598
|
-
UnprocessedScramSecrets?: UnprocessedScramSecret[];
|
|
597
|
+
ClusterArn?: string | undefined;
|
|
598
|
+
UnprocessedScramSecrets?: UnprocessedScramSecret[] | undefined;
|
|
599
599
|
}
|
|
600
600
|
export interface ClusterOperationV2Provisioned {
|
|
601
|
-
OperationSteps?: ClusterOperationStep[];
|
|
602
|
-
SourceClusterInfo?: MutableClusterInfo;
|
|
603
|
-
TargetClusterInfo?: MutableClusterInfo;
|
|
604
|
-
VpcConnectionInfo?: VpcConnectionInfo;
|
|
601
|
+
OperationSteps?: ClusterOperationStep[] | undefined;
|
|
602
|
+
SourceClusterInfo?: MutableClusterInfo | undefined;
|
|
603
|
+
TargetClusterInfo?: MutableClusterInfo | undefined;
|
|
604
|
+
VpcConnectionInfo?: VpcConnectionInfo | undefined;
|
|
605
605
|
}
|
|
606
606
|
export interface VpcConnectionInfoServerless {
|
|
607
|
-
CreationTime?: Date;
|
|
608
|
-
Owner?: string;
|
|
609
|
-
UserIdentity?: UserIdentity;
|
|
610
|
-
VpcConnectionArn?: string;
|
|
607
|
+
CreationTime?: Date | undefined;
|
|
608
|
+
Owner?: string | undefined;
|
|
609
|
+
UserIdentity?: UserIdentity | undefined;
|
|
610
|
+
VpcConnectionArn?: string | undefined;
|
|
611
611
|
}
|
|
612
612
|
export interface ClusterOperationV2Serverless {
|
|
613
|
-
VpcConnectionInfo?: VpcConnectionInfoServerless;
|
|
613
|
+
VpcConnectionInfo?: VpcConnectionInfoServerless | undefined;
|
|
614
614
|
}
|
|
615
615
|
export interface ClusterOperationV2 {
|
|
616
|
-
ClusterArn?: string;
|
|
617
|
-
ClusterType?: ClusterType;
|
|
618
|
-
StartTime?: Date;
|
|
619
|
-
EndTime?: Date;
|
|
620
|
-
ErrorInfo?: ErrorInfo;
|
|
621
|
-
OperationArn?: string;
|
|
622
|
-
OperationState?: string;
|
|
623
|
-
OperationType?: string;
|
|
624
|
-
Provisioned?: ClusterOperationV2Provisioned;
|
|
625
|
-
Serverless?: ClusterOperationV2Serverless;
|
|
616
|
+
ClusterArn?: string | undefined;
|
|
617
|
+
ClusterType?: ClusterType | undefined;
|
|
618
|
+
StartTime?: Date | undefined;
|
|
619
|
+
EndTime?: Date | undefined;
|
|
620
|
+
ErrorInfo?: ErrorInfo | undefined;
|
|
621
|
+
OperationArn?: string | undefined;
|
|
622
|
+
OperationState?: string | undefined;
|
|
623
|
+
OperationType?: string | undefined;
|
|
624
|
+
Provisioned?: ClusterOperationV2Provisioned | undefined;
|
|
625
|
+
Serverless?: ClusterOperationV2Serverless | undefined;
|
|
626
626
|
}
|
|
627
627
|
export declare class ConflictException extends __BaseException {
|
|
628
628
|
readonly name: "ConflictException";
|
|
629
629
|
readonly $fault: "client";
|
|
630
|
-
InvalidParameter?: string;
|
|
631
|
-
Message?: string;
|
|
630
|
+
InvalidParameter?: string | undefined;
|
|
631
|
+
Message?: string | undefined;
|
|
632
632
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
633
633
|
}
|
|
634
634
|
export interface ConsumerGroupReplicationUpdate {
|
|
@@ -639,76 +639,76 @@ export interface ConsumerGroupReplicationUpdate {
|
|
|
639
639
|
}
|
|
640
640
|
export interface CreateClusterRequest {
|
|
641
641
|
BrokerNodeGroupInfo: BrokerNodeGroupInfo | undefined;
|
|
642
|
-
ClientAuthentication?: ClientAuthentication;
|
|
642
|
+
ClientAuthentication?: ClientAuthentication | undefined;
|
|
643
643
|
ClusterName: string | undefined;
|
|
644
|
-
ConfigurationInfo?: ConfigurationInfo;
|
|
645
|
-
EncryptionInfo?: EncryptionInfo;
|
|
646
|
-
EnhancedMonitoring?: EnhancedMonitoring;
|
|
647
|
-
OpenMonitoring?: OpenMonitoringInfo;
|
|
644
|
+
ConfigurationInfo?: ConfigurationInfo | undefined;
|
|
645
|
+
EncryptionInfo?: EncryptionInfo | undefined;
|
|
646
|
+
EnhancedMonitoring?: EnhancedMonitoring | undefined;
|
|
647
|
+
OpenMonitoring?: OpenMonitoringInfo | undefined;
|
|
648
648
|
KafkaVersion: string | undefined;
|
|
649
|
-
LoggingInfo?: LoggingInfo;
|
|
649
|
+
LoggingInfo?: LoggingInfo | undefined;
|
|
650
650
|
NumberOfBrokerNodes: number | undefined;
|
|
651
|
-
Tags?: Record<string, string
|
|
652
|
-
StorageMode?: StorageMode;
|
|
651
|
+
Tags?: Record<string, string> | undefined;
|
|
652
|
+
StorageMode?: StorageMode | undefined;
|
|
653
653
|
}
|
|
654
654
|
export interface CreateClusterResponse {
|
|
655
|
-
ClusterArn?: string;
|
|
656
|
-
ClusterName?: string;
|
|
657
|
-
State?: ClusterState;
|
|
655
|
+
ClusterArn?: string | undefined;
|
|
656
|
+
ClusterName?: string | undefined;
|
|
657
|
+
State?: ClusterState | undefined;
|
|
658
658
|
}
|
|
659
659
|
export interface ProvisionedRequest {
|
|
660
660
|
BrokerNodeGroupInfo: BrokerNodeGroupInfo | undefined;
|
|
661
|
-
ClientAuthentication?: ClientAuthentication;
|
|
662
|
-
ConfigurationInfo?: ConfigurationInfo;
|
|
663
|
-
EncryptionInfo?: EncryptionInfo;
|
|
664
|
-
EnhancedMonitoring?: EnhancedMonitoring;
|
|
665
|
-
OpenMonitoring?: OpenMonitoringInfo;
|
|
661
|
+
ClientAuthentication?: ClientAuthentication | undefined;
|
|
662
|
+
ConfigurationInfo?: ConfigurationInfo | undefined;
|
|
663
|
+
EncryptionInfo?: EncryptionInfo | undefined;
|
|
664
|
+
EnhancedMonitoring?: EnhancedMonitoring | undefined;
|
|
665
|
+
OpenMonitoring?: OpenMonitoringInfo | undefined;
|
|
666
666
|
KafkaVersion: string | undefined;
|
|
667
|
-
LoggingInfo?: LoggingInfo;
|
|
667
|
+
LoggingInfo?: LoggingInfo | undefined;
|
|
668
668
|
NumberOfBrokerNodes: number | undefined;
|
|
669
|
-
StorageMode?: StorageMode;
|
|
669
|
+
StorageMode?: StorageMode | undefined;
|
|
670
670
|
}
|
|
671
671
|
export interface ServerlessRequest {
|
|
672
672
|
VpcConfigs: VpcConfig[] | undefined;
|
|
673
|
-
ClientAuthentication?: ServerlessClientAuthentication;
|
|
673
|
+
ClientAuthentication?: ServerlessClientAuthentication | undefined;
|
|
674
674
|
}
|
|
675
675
|
export interface CreateClusterV2Request {
|
|
676
676
|
ClusterName: string | undefined;
|
|
677
|
-
Tags?: Record<string, string
|
|
678
|
-
Provisioned?: ProvisionedRequest;
|
|
679
|
-
Serverless?: ServerlessRequest;
|
|
677
|
+
Tags?: Record<string, string> | undefined;
|
|
678
|
+
Provisioned?: ProvisionedRequest | undefined;
|
|
679
|
+
Serverless?: ServerlessRequest | undefined;
|
|
680
680
|
}
|
|
681
681
|
export interface CreateClusterV2Response {
|
|
682
|
-
ClusterArn?: string;
|
|
683
|
-
ClusterName?: string;
|
|
684
|
-
State?: ClusterState;
|
|
685
|
-
ClusterType?: ClusterType;
|
|
682
|
+
ClusterArn?: string | undefined;
|
|
683
|
+
ClusterName?: string | undefined;
|
|
684
|
+
State?: ClusterState | undefined;
|
|
685
|
+
ClusterType?: ClusterType | undefined;
|
|
686
686
|
}
|
|
687
687
|
export interface CreateConfigurationRequest {
|
|
688
|
-
Description?: string;
|
|
689
|
-
KafkaVersions?: string[];
|
|
688
|
+
Description?: string | undefined;
|
|
689
|
+
KafkaVersions?: string[] | undefined;
|
|
690
690
|
Name: string | undefined;
|
|
691
691
|
ServerProperties: Uint8Array | undefined;
|
|
692
692
|
}
|
|
693
693
|
export interface CreateConfigurationResponse {
|
|
694
|
-
Arn?: string;
|
|
695
|
-
CreationTime?: Date;
|
|
696
|
-
LatestRevision?: ConfigurationRevision;
|
|
697
|
-
Name?: string;
|
|
698
|
-
State?: ConfigurationState;
|
|
694
|
+
Arn?: string | undefined;
|
|
695
|
+
CreationTime?: Date | undefined;
|
|
696
|
+
LatestRevision?: ConfigurationRevision | undefined;
|
|
697
|
+
Name?: string | undefined;
|
|
698
|
+
State?: ConfigurationState | undefined;
|
|
699
699
|
}
|
|
700
700
|
export interface CreateReplicatorRequest {
|
|
701
|
-
Description?: string;
|
|
701
|
+
Description?: string | undefined;
|
|
702
702
|
KafkaClusters: KafkaCluster[] | undefined;
|
|
703
703
|
ReplicationInfoList: ReplicationInfo[] | undefined;
|
|
704
704
|
ReplicatorName: string | undefined;
|
|
705
705
|
ServiceExecutionRoleArn: string | undefined;
|
|
706
|
-
Tags?: Record<string, string
|
|
706
|
+
Tags?: Record<string, string> | undefined;
|
|
707
707
|
}
|
|
708
708
|
export interface CreateReplicatorResponse {
|
|
709
|
-
ReplicatorArn?: string;
|
|
710
|
-
ReplicatorName?: string;
|
|
711
|
-
ReplicatorState?: ReplicatorState;
|
|
709
|
+
ReplicatorArn?: string | undefined;
|
|
710
|
+
ReplicatorName?: string | undefined;
|
|
711
|
+
ReplicatorState?: ReplicatorState | undefined;
|
|
712
712
|
}
|
|
713
713
|
export interface CreateVpcConnectionRequest {
|
|
714
714
|
TargetClusterArn: string | undefined;
|
|
@@ -716,25 +716,25 @@ export interface CreateVpcConnectionRequest {
|
|
|
716
716
|
VpcId: string | undefined;
|
|
717
717
|
ClientSubnets: string[] | undefined;
|
|
718
718
|
SecurityGroups: string[] | undefined;
|
|
719
|
-
Tags?: Record<string, string
|
|
719
|
+
Tags?: Record<string, string> | undefined;
|
|
720
720
|
}
|
|
721
721
|
export interface CreateVpcConnectionResponse {
|
|
722
|
-
VpcConnectionArn?: string;
|
|
723
|
-
State?: VpcConnectionState;
|
|
724
|
-
Authentication?: string;
|
|
725
|
-
VpcId?: string;
|
|
726
|
-
ClientSubnets?: string[];
|
|
727
|
-
SecurityGroups?: string[];
|
|
728
|
-
CreationTime?: Date;
|
|
729
|
-
Tags?: Record<string, string
|
|
722
|
+
VpcConnectionArn?: string | undefined;
|
|
723
|
+
State?: VpcConnectionState | undefined;
|
|
724
|
+
Authentication?: string | undefined;
|
|
725
|
+
VpcId?: string | undefined;
|
|
726
|
+
ClientSubnets?: string[] | undefined;
|
|
727
|
+
SecurityGroups?: string[] | undefined;
|
|
728
|
+
CreationTime?: Date | undefined;
|
|
729
|
+
Tags?: Record<string, string> | undefined;
|
|
730
730
|
}
|
|
731
731
|
export interface DeleteClusterRequest {
|
|
732
732
|
ClusterArn: string | undefined;
|
|
733
|
-
CurrentVersion?: string;
|
|
733
|
+
CurrentVersion?: string | undefined;
|
|
734
734
|
}
|
|
735
735
|
export interface DeleteClusterResponse {
|
|
736
|
-
ClusterArn?: string;
|
|
737
|
-
State?: ClusterState;
|
|
736
|
+
ClusterArn?: string | undefined;
|
|
737
|
+
State?: ClusterState | undefined;
|
|
738
738
|
}
|
|
739
739
|
export interface DeleteClusterPolicyRequest {
|
|
740
740
|
ClusterArn: string | undefined;
|
|
@@ -744,262 +744,262 @@ export interface DeleteConfigurationRequest {
|
|
|
744
744
|
Arn: string | undefined;
|
|
745
745
|
}
|
|
746
746
|
export interface DeleteConfigurationResponse {
|
|
747
|
-
Arn?: string;
|
|
748
|
-
State?: ConfigurationState;
|
|
747
|
+
Arn?: string | undefined;
|
|
748
|
+
State?: ConfigurationState | undefined;
|
|
749
749
|
}
|
|
750
750
|
export interface DeleteReplicatorRequest {
|
|
751
|
-
CurrentVersion?: string;
|
|
751
|
+
CurrentVersion?: string | undefined;
|
|
752
752
|
ReplicatorArn: string | undefined;
|
|
753
753
|
}
|
|
754
754
|
export interface DeleteReplicatorResponse {
|
|
755
|
-
ReplicatorArn?: string;
|
|
756
|
-
ReplicatorState?: ReplicatorState;
|
|
755
|
+
ReplicatorArn?: string | undefined;
|
|
756
|
+
ReplicatorState?: ReplicatorState | undefined;
|
|
757
757
|
}
|
|
758
758
|
export interface DeleteVpcConnectionRequest {
|
|
759
759
|
Arn: string | undefined;
|
|
760
760
|
}
|
|
761
761
|
export interface DeleteVpcConnectionResponse {
|
|
762
|
-
VpcConnectionArn?: string;
|
|
763
|
-
State?: VpcConnectionState;
|
|
762
|
+
VpcConnectionArn?: string | undefined;
|
|
763
|
+
State?: VpcConnectionState | undefined;
|
|
764
764
|
}
|
|
765
765
|
export interface DescribeClusterRequest {
|
|
766
766
|
ClusterArn: string | undefined;
|
|
767
767
|
}
|
|
768
768
|
export interface DescribeClusterResponse {
|
|
769
|
-
ClusterInfo?: ClusterInfo;
|
|
769
|
+
ClusterInfo?: ClusterInfo | undefined;
|
|
770
770
|
}
|
|
771
771
|
export interface DescribeClusterOperationRequest {
|
|
772
772
|
ClusterOperationArn: string | undefined;
|
|
773
773
|
}
|
|
774
774
|
export interface DescribeClusterOperationResponse {
|
|
775
|
-
ClusterOperationInfo?: ClusterOperationInfo;
|
|
775
|
+
ClusterOperationInfo?: ClusterOperationInfo | undefined;
|
|
776
776
|
}
|
|
777
777
|
export interface DescribeClusterOperationV2Request {
|
|
778
778
|
ClusterOperationArn: string | undefined;
|
|
779
779
|
}
|
|
780
780
|
export interface DescribeClusterOperationV2Response {
|
|
781
|
-
ClusterOperationInfo?: ClusterOperationV2;
|
|
781
|
+
ClusterOperationInfo?: ClusterOperationV2 | undefined;
|
|
782
782
|
}
|
|
783
783
|
export interface DescribeClusterV2Request {
|
|
784
784
|
ClusterArn: string | undefined;
|
|
785
785
|
}
|
|
786
786
|
export interface DescribeClusterV2Response {
|
|
787
|
-
ClusterInfo?: Cluster;
|
|
787
|
+
ClusterInfo?: Cluster | undefined;
|
|
788
788
|
}
|
|
789
789
|
export interface DescribeConfigurationRequest {
|
|
790
790
|
Arn: string | undefined;
|
|
791
791
|
}
|
|
792
792
|
export interface DescribeConfigurationResponse {
|
|
793
|
-
Arn?: string;
|
|
794
|
-
CreationTime?: Date;
|
|
795
|
-
Description?: string;
|
|
796
|
-
KafkaVersions?: string[];
|
|
797
|
-
LatestRevision?: ConfigurationRevision;
|
|
798
|
-
Name?: string;
|
|
799
|
-
State?: ConfigurationState;
|
|
793
|
+
Arn?: string | undefined;
|
|
794
|
+
CreationTime?: Date | undefined;
|
|
795
|
+
Description?: string | undefined;
|
|
796
|
+
KafkaVersions?: string[] | undefined;
|
|
797
|
+
LatestRevision?: ConfigurationRevision | undefined;
|
|
798
|
+
Name?: string | undefined;
|
|
799
|
+
State?: ConfigurationState | undefined;
|
|
800
800
|
}
|
|
801
801
|
export interface DescribeConfigurationRevisionRequest {
|
|
802
802
|
Arn: string | undefined;
|
|
803
803
|
Revision: number | undefined;
|
|
804
804
|
}
|
|
805
805
|
export interface DescribeConfigurationRevisionResponse {
|
|
806
|
-
Arn?: string;
|
|
807
|
-
CreationTime?: Date;
|
|
808
|
-
Description?: string;
|
|
809
|
-
Revision?: number;
|
|
810
|
-
ServerProperties?: Uint8Array;
|
|
806
|
+
Arn?: string | undefined;
|
|
807
|
+
CreationTime?: Date | undefined;
|
|
808
|
+
Description?: string | undefined;
|
|
809
|
+
Revision?: number | undefined;
|
|
810
|
+
ServerProperties?: Uint8Array | undefined;
|
|
811
811
|
}
|
|
812
812
|
export interface DescribeReplicatorRequest {
|
|
813
813
|
ReplicatorArn: string | undefined;
|
|
814
814
|
}
|
|
815
815
|
export interface ReplicationStateInfo {
|
|
816
|
-
Code?: string;
|
|
817
|
-
Message?: string;
|
|
816
|
+
Code?: string | undefined;
|
|
817
|
+
Message?: string | undefined;
|
|
818
818
|
}
|
|
819
819
|
export interface DescribeReplicatorResponse {
|
|
820
|
-
CreationTime?: Date;
|
|
821
|
-
CurrentVersion?: string;
|
|
822
|
-
IsReplicatorReference?: boolean;
|
|
823
|
-
KafkaClusters?: KafkaClusterDescription[];
|
|
824
|
-
ReplicationInfoList?: ReplicationInfoDescription[];
|
|
825
|
-
ReplicatorArn?: string;
|
|
826
|
-
ReplicatorDescription?: string;
|
|
827
|
-
ReplicatorName?: string;
|
|
828
|
-
ReplicatorResourceArn?: string;
|
|
829
|
-
ReplicatorState?: ReplicatorState;
|
|
830
|
-
ServiceExecutionRoleArn?: string;
|
|
831
|
-
StateInfo?: ReplicationStateInfo;
|
|
832
|
-
Tags?: Record<string, string
|
|
820
|
+
CreationTime?: Date | undefined;
|
|
821
|
+
CurrentVersion?: string | undefined;
|
|
822
|
+
IsReplicatorReference?: boolean | undefined;
|
|
823
|
+
KafkaClusters?: KafkaClusterDescription[] | undefined;
|
|
824
|
+
ReplicationInfoList?: ReplicationInfoDescription[] | undefined;
|
|
825
|
+
ReplicatorArn?: string | undefined;
|
|
826
|
+
ReplicatorDescription?: string | undefined;
|
|
827
|
+
ReplicatorName?: string | undefined;
|
|
828
|
+
ReplicatorResourceArn?: string | undefined;
|
|
829
|
+
ReplicatorState?: ReplicatorState | undefined;
|
|
830
|
+
ServiceExecutionRoleArn?: string | undefined;
|
|
831
|
+
StateInfo?: ReplicationStateInfo | undefined;
|
|
832
|
+
Tags?: Record<string, string> | undefined;
|
|
833
833
|
}
|
|
834
834
|
export interface DescribeVpcConnectionRequest {
|
|
835
835
|
Arn: string | undefined;
|
|
836
836
|
}
|
|
837
837
|
export interface DescribeVpcConnectionResponse {
|
|
838
|
-
VpcConnectionArn?: string;
|
|
839
|
-
TargetClusterArn?: string;
|
|
840
|
-
State?: VpcConnectionState;
|
|
841
|
-
Authentication?: string;
|
|
842
|
-
VpcId?: string;
|
|
843
|
-
Subnets?: string[];
|
|
844
|
-
SecurityGroups?: string[];
|
|
845
|
-
CreationTime?: Date;
|
|
846
|
-
Tags?: Record<string, string
|
|
838
|
+
VpcConnectionArn?: string | undefined;
|
|
839
|
+
TargetClusterArn?: string | undefined;
|
|
840
|
+
State?: VpcConnectionState | undefined;
|
|
841
|
+
Authentication?: string | undefined;
|
|
842
|
+
VpcId?: string | undefined;
|
|
843
|
+
Subnets?: string[] | undefined;
|
|
844
|
+
SecurityGroups?: string[] | undefined;
|
|
845
|
+
CreationTime?: Date | undefined;
|
|
846
|
+
Tags?: Record<string, string> | undefined;
|
|
847
847
|
}
|
|
848
848
|
export interface GetBootstrapBrokersRequest {
|
|
849
849
|
ClusterArn: string | undefined;
|
|
850
850
|
}
|
|
851
851
|
export interface GetBootstrapBrokersResponse {
|
|
852
|
-
BootstrapBrokerString?: string;
|
|
853
|
-
BootstrapBrokerStringTls?: string;
|
|
854
|
-
BootstrapBrokerStringSaslScram?: string;
|
|
855
|
-
BootstrapBrokerStringSaslIam?: string;
|
|
856
|
-
BootstrapBrokerStringPublicTls?: string;
|
|
857
|
-
BootstrapBrokerStringPublicSaslScram?: string;
|
|
858
|
-
BootstrapBrokerStringPublicSaslIam?: string;
|
|
859
|
-
BootstrapBrokerStringVpcConnectivityTls?: string;
|
|
860
|
-
BootstrapBrokerStringVpcConnectivitySaslScram?: string;
|
|
861
|
-
BootstrapBrokerStringVpcConnectivitySaslIam?: string;
|
|
852
|
+
BootstrapBrokerString?: string | undefined;
|
|
853
|
+
BootstrapBrokerStringTls?: string | undefined;
|
|
854
|
+
BootstrapBrokerStringSaslScram?: string | undefined;
|
|
855
|
+
BootstrapBrokerStringSaslIam?: string | undefined;
|
|
856
|
+
BootstrapBrokerStringPublicTls?: string | undefined;
|
|
857
|
+
BootstrapBrokerStringPublicSaslScram?: string | undefined;
|
|
858
|
+
BootstrapBrokerStringPublicSaslIam?: string | undefined;
|
|
859
|
+
BootstrapBrokerStringVpcConnectivityTls?: string | undefined;
|
|
860
|
+
BootstrapBrokerStringVpcConnectivitySaslScram?: string | undefined;
|
|
861
|
+
BootstrapBrokerStringVpcConnectivitySaslIam?: string | undefined;
|
|
862
862
|
}
|
|
863
863
|
export interface GetClusterPolicyRequest {
|
|
864
864
|
ClusterArn: string | undefined;
|
|
865
865
|
}
|
|
866
866
|
export interface GetClusterPolicyResponse {
|
|
867
|
-
CurrentVersion?: string;
|
|
868
|
-
Policy?: string;
|
|
867
|
+
CurrentVersion?: string | undefined;
|
|
868
|
+
Policy?: string | undefined;
|
|
869
869
|
}
|
|
870
870
|
export interface GetCompatibleKafkaVersionsRequest {
|
|
871
|
-
ClusterArn?: string;
|
|
871
|
+
ClusterArn?: string | undefined;
|
|
872
872
|
}
|
|
873
873
|
export interface GetCompatibleKafkaVersionsResponse {
|
|
874
|
-
CompatibleKafkaVersions?: CompatibleKafkaVersion[];
|
|
874
|
+
CompatibleKafkaVersions?: CompatibleKafkaVersion[] | undefined;
|
|
875
875
|
}
|
|
876
876
|
export interface ListClientVpcConnectionsRequest {
|
|
877
877
|
ClusterArn: string | undefined;
|
|
878
|
-
MaxResults?: number;
|
|
879
|
-
NextToken?: string;
|
|
878
|
+
MaxResults?: number | undefined;
|
|
879
|
+
NextToken?: string | undefined;
|
|
880
880
|
}
|
|
881
881
|
export interface ListClientVpcConnectionsResponse {
|
|
882
|
-
ClientVpcConnections?: ClientVpcConnection[];
|
|
883
|
-
NextToken?: string;
|
|
882
|
+
ClientVpcConnections?: ClientVpcConnection[] | undefined;
|
|
883
|
+
NextToken?: string | undefined;
|
|
884
884
|
}
|
|
885
885
|
export interface ListClusterOperationsRequest {
|
|
886
886
|
ClusterArn: string | undefined;
|
|
887
|
-
MaxResults?: number;
|
|
888
|
-
NextToken?: string;
|
|
887
|
+
MaxResults?: number | undefined;
|
|
888
|
+
NextToken?: string | undefined;
|
|
889
889
|
}
|
|
890
890
|
export interface ListClusterOperationsResponse {
|
|
891
|
-
ClusterOperationInfoList?: ClusterOperationInfo[];
|
|
892
|
-
NextToken?: string;
|
|
891
|
+
ClusterOperationInfoList?: ClusterOperationInfo[] | undefined;
|
|
892
|
+
NextToken?: string | undefined;
|
|
893
893
|
}
|
|
894
894
|
export interface ListClusterOperationsV2Request {
|
|
895
895
|
ClusterArn: string | undefined;
|
|
896
|
-
MaxResults?: number;
|
|
897
|
-
NextToken?: string;
|
|
896
|
+
MaxResults?: number | undefined;
|
|
897
|
+
NextToken?: string | undefined;
|
|
898
898
|
}
|
|
899
899
|
export interface ListClusterOperationsV2Response {
|
|
900
|
-
ClusterOperationInfoList?: ClusterOperationV2Summary[];
|
|
901
|
-
NextToken?: string;
|
|
900
|
+
ClusterOperationInfoList?: ClusterOperationV2Summary[] | undefined;
|
|
901
|
+
NextToken?: string | undefined;
|
|
902
902
|
}
|
|
903
903
|
export interface ListClustersRequest {
|
|
904
|
-
ClusterNameFilter?: string;
|
|
905
|
-
MaxResults?: number;
|
|
906
|
-
NextToken?: string;
|
|
904
|
+
ClusterNameFilter?: string | undefined;
|
|
905
|
+
MaxResults?: number | undefined;
|
|
906
|
+
NextToken?: string | undefined;
|
|
907
907
|
}
|
|
908
908
|
export interface ListClustersResponse {
|
|
909
|
-
ClusterInfoList?: ClusterInfo[];
|
|
910
|
-
NextToken?: string;
|
|
909
|
+
ClusterInfoList?: ClusterInfo[] | undefined;
|
|
910
|
+
NextToken?: string | undefined;
|
|
911
911
|
}
|
|
912
912
|
export interface ListClustersV2Request {
|
|
913
|
-
ClusterNameFilter?: string;
|
|
914
|
-
ClusterTypeFilter?: string;
|
|
915
|
-
MaxResults?: number;
|
|
916
|
-
NextToken?: string;
|
|
913
|
+
ClusterNameFilter?: string | undefined;
|
|
914
|
+
ClusterTypeFilter?: string | undefined;
|
|
915
|
+
MaxResults?: number | undefined;
|
|
916
|
+
NextToken?: string | undefined;
|
|
917
917
|
}
|
|
918
918
|
export interface ListClustersV2Response {
|
|
919
|
-
ClusterInfoList?: Cluster[];
|
|
920
|
-
NextToken?: string;
|
|
919
|
+
ClusterInfoList?: Cluster[] | undefined;
|
|
920
|
+
NextToken?: string | undefined;
|
|
921
921
|
}
|
|
922
922
|
export interface ListConfigurationRevisionsRequest {
|
|
923
923
|
Arn: string | undefined;
|
|
924
|
-
MaxResults?: number;
|
|
925
|
-
NextToken?: string;
|
|
924
|
+
MaxResults?: number | undefined;
|
|
925
|
+
NextToken?: string | undefined;
|
|
926
926
|
}
|
|
927
927
|
export interface ListConfigurationRevisionsResponse {
|
|
928
|
-
NextToken?: string;
|
|
929
|
-
Revisions?: ConfigurationRevision[];
|
|
928
|
+
NextToken?: string | undefined;
|
|
929
|
+
Revisions?: ConfigurationRevision[] | undefined;
|
|
930
930
|
}
|
|
931
931
|
export interface ListConfigurationsRequest {
|
|
932
|
-
MaxResults?: number;
|
|
933
|
-
NextToken?: string;
|
|
932
|
+
MaxResults?: number | undefined;
|
|
933
|
+
NextToken?: string | undefined;
|
|
934
934
|
}
|
|
935
935
|
export interface ListConfigurationsResponse {
|
|
936
|
-
Configurations?: Configuration[];
|
|
937
|
-
NextToken?: string;
|
|
936
|
+
Configurations?: Configuration[] | undefined;
|
|
937
|
+
NextToken?: string | undefined;
|
|
938
938
|
}
|
|
939
939
|
export interface ListKafkaVersionsRequest {
|
|
940
|
-
MaxResults?: number;
|
|
941
|
-
NextToken?: string;
|
|
940
|
+
MaxResults?: number | undefined;
|
|
941
|
+
NextToken?: string | undefined;
|
|
942
942
|
}
|
|
943
943
|
export interface ListKafkaVersionsResponse {
|
|
944
|
-
KafkaVersions?: KafkaVersion[];
|
|
945
|
-
NextToken?: string;
|
|
944
|
+
KafkaVersions?: KafkaVersion[] | undefined;
|
|
945
|
+
NextToken?: string | undefined;
|
|
946
946
|
}
|
|
947
947
|
export interface ListNodesRequest {
|
|
948
948
|
ClusterArn: string | undefined;
|
|
949
|
-
MaxResults?: number;
|
|
950
|
-
NextToken?: string;
|
|
949
|
+
MaxResults?: number | undefined;
|
|
950
|
+
NextToken?: string | undefined;
|
|
951
951
|
}
|
|
952
952
|
export interface ListNodesResponse {
|
|
953
|
-
NextToken?: string;
|
|
954
|
-
NodeInfoList?: NodeInfo[];
|
|
953
|
+
NextToken?: string | undefined;
|
|
954
|
+
NodeInfoList?: NodeInfo[] | undefined;
|
|
955
955
|
}
|
|
956
956
|
export interface ListReplicatorsRequest {
|
|
957
|
-
MaxResults?: number;
|
|
958
|
-
NextToken?: string;
|
|
959
|
-
ReplicatorNameFilter?: string;
|
|
957
|
+
MaxResults?: number | undefined;
|
|
958
|
+
NextToken?: string | undefined;
|
|
959
|
+
ReplicatorNameFilter?: string | undefined;
|
|
960
960
|
}
|
|
961
961
|
export interface ListReplicatorsResponse {
|
|
962
|
-
NextToken?: string;
|
|
963
|
-
Replicators?: ReplicatorSummary[];
|
|
962
|
+
NextToken?: string | undefined;
|
|
963
|
+
Replicators?: ReplicatorSummary[] | undefined;
|
|
964
964
|
}
|
|
965
965
|
export interface ListScramSecretsRequest {
|
|
966
966
|
ClusterArn: string | undefined;
|
|
967
|
-
MaxResults?: number;
|
|
968
|
-
NextToken?: string;
|
|
967
|
+
MaxResults?: number | undefined;
|
|
968
|
+
NextToken?: string | undefined;
|
|
969
969
|
}
|
|
970
970
|
export interface ListScramSecretsResponse {
|
|
971
|
-
NextToken?: string;
|
|
972
|
-
SecretArnList?: string[];
|
|
971
|
+
NextToken?: string | undefined;
|
|
972
|
+
SecretArnList?: string[] | undefined;
|
|
973
973
|
}
|
|
974
974
|
export interface ListTagsForResourceRequest {
|
|
975
975
|
ResourceArn: string | undefined;
|
|
976
976
|
}
|
|
977
977
|
export interface ListTagsForResourceResponse {
|
|
978
|
-
Tags?: Record<string, string
|
|
978
|
+
Tags?: Record<string, string> | undefined;
|
|
979
979
|
}
|
|
980
980
|
export interface ListVpcConnectionsRequest {
|
|
981
|
-
MaxResults?: number;
|
|
982
|
-
NextToken?: string;
|
|
981
|
+
MaxResults?: number | undefined;
|
|
982
|
+
NextToken?: string | undefined;
|
|
983
983
|
}
|
|
984
984
|
export interface ListVpcConnectionsResponse {
|
|
985
|
-
VpcConnections?: VpcConnection[];
|
|
986
|
-
NextToken?: string;
|
|
985
|
+
VpcConnections?: VpcConnection[] | undefined;
|
|
986
|
+
NextToken?: string | undefined;
|
|
987
987
|
}
|
|
988
988
|
export interface PutClusterPolicyRequest {
|
|
989
989
|
ClusterArn: string | undefined;
|
|
990
|
-
CurrentVersion?: string;
|
|
990
|
+
CurrentVersion?: string | undefined;
|
|
991
991
|
Policy: string | undefined;
|
|
992
992
|
}
|
|
993
993
|
export interface PutClusterPolicyResponse {
|
|
994
|
-
CurrentVersion?: string;
|
|
994
|
+
CurrentVersion?: string | undefined;
|
|
995
995
|
}
|
|
996
996
|
export interface RebootBrokerRequest {
|
|
997
997
|
BrokerIds: string[] | undefined;
|
|
998
998
|
ClusterArn: string | undefined;
|
|
999
999
|
}
|
|
1000
1000
|
export interface RebootBrokerResponse {
|
|
1001
|
-
ClusterArn?: string;
|
|
1002
|
-
ClusterOperationArn?: string;
|
|
1001
|
+
ClusterArn?: string | undefined;
|
|
1002
|
+
ClusterOperationArn?: string | undefined;
|
|
1003
1003
|
}
|
|
1004
1004
|
export interface RejectClientVpcConnectionRequest {
|
|
1005
1005
|
ClusterArn: string | undefined;
|
|
@@ -1020,8 +1020,8 @@ export interface UpdateBrokerCountRequest {
|
|
|
1020
1020
|
TargetNumberOfBrokerNodes: number | undefined;
|
|
1021
1021
|
}
|
|
1022
1022
|
export interface UpdateBrokerCountResponse {
|
|
1023
|
-
ClusterArn?: string;
|
|
1024
|
-
ClusterOperationArn?: string;
|
|
1023
|
+
ClusterArn?: string | undefined;
|
|
1024
|
+
ClusterOperationArn?: string | undefined;
|
|
1025
1025
|
}
|
|
1026
1026
|
export interface UpdateBrokerStorageRequest {
|
|
1027
1027
|
ClusterArn: string | undefined;
|
|
@@ -1029,8 +1029,8 @@ export interface UpdateBrokerStorageRequest {
|
|
|
1029
1029
|
TargetBrokerEBSVolumeInfo: BrokerEBSVolumeInfo[] | undefined;
|
|
1030
1030
|
}
|
|
1031
1031
|
export interface UpdateBrokerStorageResponse {
|
|
1032
|
-
ClusterArn?: string;
|
|
1033
|
-
ClusterOperationArn?: string;
|
|
1032
|
+
ClusterArn?: string | undefined;
|
|
1033
|
+
ClusterOperationArn?: string | undefined;
|
|
1034
1034
|
}
|
|
1035
1035
|
export interface UpdateBrokerTypeRequest {
|
|
1036
1036
|
ClusterArn: string | undefined;
|
|
@@ -1038,8 +1038,8 @@ export interface UpdateBrokerTypeRequest {
|
|
|
1038
1038
|
TargetInstanceType: string | undefined;
|
|
1039
1039
|
}
|
|
1040
1040
|
export interface UpdateBrokerTypeResponse {
|
|
1041
|
-
ClusterArn?: string;
|
|
1042
|
-
ClusterOperationArn?: string;
|
|
1041
|
+
ClusterArn?: string | undefined;
|
|
1042
|
+
ClusterOperationArn?: string | undefined;
|
|
1043
1043
|
}
|
|
1044
1044
|
export interface UpdateClusterConfigurationRequest {
|
|
1045
1045
|
ClusterArn: string | undefined;
|
|
@@ -1047,27 +1047,27 @@ export interface UpdateClusterConfigurationRequest {
|
|
|
1047
1047
|
CurrentVersion: string | undefined;
|
|
1048
1048
|
}
|
|
1049
1049
|
export interface UpdateClusterConfigurationResponse {
|
|
1050
|
-
ClusterArn?: string;
|
|
1051
|
-
ClusterOperationArn?: string;
|
|
1050
|
+
ClusterArn?: string | undefined;
|
|
1051
|
+
ClusterOperationArn?: string | undefined;
|
|
1052
1052
|
}
|
|
1053
1053
|
export interface UpdateClusterKafkaVersionRequest {
|
|
1054
1054
|
ClusterArn: string | undefined;
|
|
1055
|
-
ConfigurationInfo?: ConfigurationInfo;
|
|
1055
|
+
ConfigurationInfo?: ConfigurationInfo | undefined;
|
|
1056
1056
|
CurrentVersion: string | undefined;
|
|
1057
1057
|
TargetKafkaVersion: string | undefined;
|
|
1058
1058
|
}
|
|
1059
1059
|
export interface UpdateClusterKafkaVersionResponse {
|
|
1060
|
-
ClusterArn?: string;
|
|
1061
|
-
ClusterOperationArn?: string;
|
|
1060
|
+
ClusterArn?: string | undefined;
|
|
1061
|
+
ClusterOperationArn?: string | undefined;
|
|
1062
1062
|
}
|
|
1063
1063
|
export interface UpdateConfigurationRequest {
|
|
1064
1064
|
Arn: string | undefined;
|
|
1065
|
-
Description?: string;
|
|
1065
|
+
Description?: string | undefined;
|
|
1066
1066
|
ServerProperties: Uint8Array | undefined;
|
|
1067
1067
|
}
|
|
1068
1068
|
export interface UpdateConfigurationResponse {
|
|
1069
|
-
Arn?: string;
|
|
1070
|
-
LatestRevision?: ConfigurationRevision;
|
|
1069
|
+
Arn?: string | undefined;
|
|
1070
|
+
LatestRevision?: ConfigurationRevision | undefined;
|
|
1071
1071
|
}
|
|
1072
1072
|
export interface UpdateConnectivityRequest {
|
|
1073
1073
|
ClusterArn: string | undefined;
|
|
@@ -1075,19 +1075,19 @@ export interface UpdateConnectivityRequest {
|
|
|
1075
1075
|
CurrentVersion: string | undefined;
|
|
1076
1076
|
}
|
|
1077
1077
|
export interface UpdateConnectivityResponse {
|
|
1078
|
-
ClusterArn?: string;
|
|
1079
|
-
ClusterOperationArn?: string;
|
|
1078
|
+
ClusterArn?: string | undefined;
|
|
1079
|
+
ClusterOperationArn?: string | undefined;
|
|
1080
1080
|
}
|
|
1081
1081
|
export interface UpdateMonitoringRequest {
|
|
1082
1082
|
ClusterArn: string | undefined;
|
|
1083
1083
|
CurrentVersion: string | undefined;
|
|
1084
|
-
EnhancedMonitoring?: EnhancedMonitoring;
|
|
1085
|
-
OpenMonitoring?: OpenMonitoringInfo;
|
|
1086
|
-
LoggingInfo?: LoggingInfo;
|
|
1084
|
+
EnhancedMonitoring?: EnhancedMonitoring | undefined;
|
|
1085
|
+
OpenMonitoring?: OpenMonitoringInfo | undefined;
|
|
1086
|
+
LoggingInfo?: LoggingInfo | undefined;
|
|
1087
1087
|
}
|
|
1088
1088
|
export interface UpdateMonitoringResponse {
|
|
1089
|
-
ClusterArn?: string;
|
|
1090
|
-
ClusterOperationArn?: string;
|
|
1089
|
+
ClusterArn?: string | undefined;
|
|
1090
|
+
ClusterOperationArn?: string | undefined;
|
|
1091
1091
|
}
|
|
1092
1092
|
export interface TopicReplicationUpdate {
|
|
1093
1093
|
CopyAccessControlListsForTopics: boolean | undefined;
|
|
@@ -1097,35 +1097,35 @@ export interface TopicReplicationUpdate {
|
|
|
1097
1097
|
TopicsToReplicate: string[] | undefined;
|
|
1098
1098
|
}
|
|
1099
1099
|
export interface UpdateReplicationInfoRequest {
|
|
1100
|
-
ConsumerGroupReplication?: ConsumerGroupReplicationUpdate;
|
|
1100
|
+
ConsumerGroupReplication?: ConsumerGroupReplicationUpdate | undefined;
|
|
1101
1101
|
CurrentVersion: string | undefined;
|
|
1102
1102
|
ReplicatorArn: string | undefined;
|
|
1103
1103
|
SourceKafkaClusterArn: string | undefined;
|
|
1104
1104
|
TargetKafkaClusterArn: string | undefined;
|
|
1105
|
-
TopicReplication?: TopicReplicationUpdate;
|
|
1105
|
+
TopicReplication?: TopicReplicationUpdate | undefined;
|
|
1106
1106
|
}
|
|
1107
1107
|
export interface UpdateReplicationInfoResponse {
|
|
1108
|
-
ReplicatorArn?: string;
|
|
1109
|
-
ReplicatorState?: ReplicatorState;
|
|
1108
|
+
ReplicatorArn?: string | undefined;
|
|
1109
|
+
ReplicatorState?: ReplicatorState | undefined;
|
|
1110
1110
|
}
|
|
1111
1111
|
export interface UpdateSecurityRequest {
|
|
1112
|
-
ClientAuthentication?: ClientAuthentication;
|
|
1112
|
+
ClientAuthentication?: ClientAuthentication | undefined;
|
|
1113
1113
|
ClusterArn: string | undefined;
|
|
1114
1114
|
CurrentVersion: string | undefined;
|
|
1115
|
-
EncryptionInfo?: EncryptionInfo;
|
|
1115
|
+
EncryptionInfo?: EncryptionInfo | undefined;
|
|
1116
1116
|
}
|
|
1117
1117
|
export interface UpdateSecurityResponse {
|
|
1118
|
-
ClusterArn?: string;
|
|
1119
|
-
ClusterOperationArn?: string;
|
|
1118
|
+
ClusterArn?: string | undefined;
|
|
1119
|
+
ClusterOperationArn?: string | undefined;
|
|
1120
1120
|
}
|
|
1121
1121
|
export interface UpdateStorageRequest {
|
|
1122
1122
|
ClusterArn: string | undefined;
|
|
1123
1123
|
CurrentVersion: string | undefined;
|
|
1124
|
-
ProvisionedThroughput?: ProvisionedThroughput;
|
|
1125
|
-
StorageMode?: StorageMode;
|
|
1126
|
-
VolumeSizeGB?: number;
|
|
1124
|
+
ProvisionedThroughput?: ProvisionedThroughput | undefined;
|
|
1125
|
+
StorageMode?: StorageMode | undefined;
|
|
1126
|
+
VolumeSizeGB?: number | undefined;
|
|
1127
1127
|
}
|
|
1128
1128
|
export interface UpdateStorageResponse {
|
|
1129
|
-
ClusterArn?: string;
|
|
1130
|
-
ClusterOperationArn?: string;
|
|
1129
|
+
ClusterArn?: string | undefined;
|
|
1130
|
+
ClusterOperationArn?: string | undefined;
|
|
1131
1131
|
}
|