@aws-sdk/client-kafka 3.1098.0 → 3.1099.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/README.md +35 -0
- package/dist-cjs/index.js +535 -151
- package/dist-es/Kafka.js +10 -0
- package/dist-es/commands/CreateChannelCommand.js +4 -0
- package/dist-es/commands/DeleteChannelCommand.js +4 -0
- package/dist-es/commands/DescribeChannelCommand.js +4 -0
- package/dist-es/commands/ListChannelsCommand.js +4 -0
- package/dist-es/commands/UpdateChannelCommand.js +4 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +36 -0
- package/dist-es/schemas/schemas_0.js +432 -150
- package/dist-types/Kafka.d.ts +35 -0
- package/dist-types/KafkaClient.d.ts +7 -2
- package/dist-types/commands/CreateChannelCommand.d.ts +181 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +94 -0
- package/dist-types/commands/DescribeChannelCommand.d.ts +186 -0
- package/dist-types/commands/ListChannelsCommand.d.ts +105 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +100 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +92 -0
- package/dist-types/models/models_0.d.ts +632 -1
- package/dist-types/schemas/schemas_0.d.ts +34 -0
- package/dist-types/ts3.4/Kafka.d.ts +85 -0
- package/dist-types/ts3.4/KafkaClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeChannelCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +45 -0
- package/dist-types/ts3.4/models/models_0.d.ts +157 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +34 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { BrokerAZDistribution, ClientBroker, ClusterState, ClusterType, ConfigurationState, ConsumerGroupOffsetSyncMode, CustomerActionStatus, EnhancedMonitoring, KafkaClusterEncryptionInTransitType, KafkaClusterSaslScramMechanism, KafkaVersionStatus, NetworkType, NodeType, RebalancingStatus, ReplicationStartingPositionType, ReplicationTopicNameConfigurationType, ReplicatorState, StorageMode, TargetCompressionType, TopicState, UserIdentityType, VpcConnectionState } from "./enums";
|
|
1
|
+
import type { BrokerAZDistribution, ChannelDestinationType, ChannelStatus, ClientBroker, ClusterState, ClusterType, ConfigurationState, ConsumerGroupOffsetSyncMode, CustomerActionStatus, EnhancedMonitoring, IcebergCompressionType, KafkaClusterEncryptionInTransitType, KafkaClusterSaslScramMechanism, KafkaVersionStatus, NetworkType, NodeType, PartitionStrategy, RebalancingStatus, ReplicationStartingPositionType, ReplicationTopicNameConfigurationType, ReplicatorState, S3CompressionType, S3StorageClass, StorageMode, TargetCompressionType, TopicState, UserIdentityType, ValueConverter, VpcConnectionState } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>Contains information about provisioned throughput for EBS storage volumes attached to kafka broker nodes.</p>
|
|
4
4
|
* @public
|
|
@@ -36,6 +36,42 @@ export interface BrokerEBSVolumeInfo {
|
|
|
36
36
|
*/
|
|
37
37
|
VolumeSizeGB?: number | undefined;
|
|
38
38
|
}
|
|
39
|
+
/**
|
|
40
|
+
* <p>Summary information about a channel returned by ListChannels.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export interface ChannelInfo {
|
|
44
|
+
/**
|
|
45
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the channel.</p>
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
ChannelArn: string | undefined;
|
|
49
|
+
/**
|
|
50
|
+
* <p>The name of the channel.</p>
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
ChannelName: string | undefined;
|
|
54
|
+
/**
|
|
55
|
+
* <p>The current lifecycle state of the channel.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
Status: ChannelStatus | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* <p>The time when the channel was created.</p>
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
CreationTime: Date | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* <p>The type of destination configured for the channel.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
DestinationType: ChannelDestinationType | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* <p>The Amazon Resource Name (ARN) of the in-flight cluster operation. Returned only while the channel is in CREATING, UPDATING, or DELETING.</p>
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
ClusterOperationArn?: string | undefined;
|
|
74
|
+
}
|
|
39
75
|
/**
|
|
40
76
|
* <p>The client VPC connection object.</p>
|
|
41
77
|
* @public
|
|
@@ -1253,6 +1289,54 @@ export interface Configuration {
|
|
|
1253
1289
|
*/
|
|
1254
1290
|
State: ConfigurationState | undefined;
|
|
1255
1291
|
}
|
|
1292
|
+
/**
|
|
1293
|
+
* <p>A source column used by an Apache Iceberg destination table's partition specification.</p>
|
|
1294
|
+
* @public
|
|
1295
|
+
*/
|
|
1296
|
+
export interface PartitionSource {
|
|
1297
|
+
/**
|
|
1298
|
+
* <p>Source name.</p>
|
|
1299
|
+
* @public
|
|
1300
|
+
*/
|
|
1301
|
+
SourceName?: string | undefined;
|
|
1302
|
+
}
|
|
1303
|
+
/**
|
|
1304
|
+
* <p>Partition specification for an Apache Iceberg destination table.</p>
|
|
1305
|
+
* @public
|
|
1306
|
+
*/
|
|
1307
|
+
export interface PartitionSpec {
|
|
1308
|
+
/**
|
|
1309
|
+
* <p>The partitioning strategy applied to records written to the table.</p>
|
|
1310
|
+
* @public
|
|
1311
|
+
*/
|
|
1312
|
+
PartitionStrategy: PartitionStrategy | undefined;
|
|
1313
|
+
/**
|
|
1314
|
+
* <p>The source columns used by the partitioning strategy. For TIME_HOUR, must contain exactly one source column whose value is a timestamp.</p>
|
|
1315
|
+
* @public
|
|
1316
|
+
*/
|
|
1317
|
+
SourceList?: PartitionSource[] | undefined;
|
|
1318
|
+
}
|
|
1319
|
+
/**
|
|
1320
|
+
* <p>Configuration of an Apache Iceberg destination table.</p>
|
|
1321
|
+
* @public
|
|
1322
|
+
*/
|
|
1323
|
+
export interface DestinationTable {
|
|
1324
|
+
/**
|
|
1325
|
+
* <p>The name of the destination namespace (database) in the AWS Glue Data Catalog.</p>
|
|
1326
|
+
* @public
|
|
1327
|
+
*/
|
|
1328
|
+
DestinationDatabaseName?: string | undefined;
|
|
1329
|
+
/**
|
|
1330
|
+
* <p>The name of the destination Apache Iceberg table.</p>
|
|
1331
|
+
* @public
|
|
1332
|
+
*/
|
|
1333
|
+
DestinationTableName?: string | undefined;
|
|
1334
|
+
/**
|
|
1335
|
+
* <p>The partition specification for the destination table.</p>
|
|
1336
|
+
* @public
|
|
1337
|
+
*/
|
|
1338
|
+
PartitionSpec?: PartitionSpec | undefined;
|
|
1339
|
+
}
|
|
1256
1340
|
/**
|
|
1257
1341
|
* <p>Details of an Amazon MSK Cluster.</p>
|
|
1258
1342
|
* @public
|
|
@@ -1802,6 +1886,49 @@ export interface ReplicatorSummary {
|
|
|
1802
1886
|
*/
|
|
1803
1887
|
ReplicatorState?: ReplicatorState | undefined;
|
|
1804
1888
|
}
|
|
1889
|
+
/**
|
|
1890
|
+
* <p>Configuration that controls how Apache Kafka record values are deserialized for the destination.</p>
|
|
1891
|
+
* @public
|
|
1892
|
+
*/
|
|
1893
|
+
export interface RecordConverter {
|
|
1894
|
+
/**
|
|
1895
|
+
* <p>The deserialization format applied to Apache Kafka record values.</p>
|
|
1896
|
+
* @public
|
|
1897
|
+
*/
|
|
1898
|
+
ValueConverter: ValueConverter | undefined;
|
|
1899
|
+
}
|
|
1900
|
+
/**
|
|
1901
|
+
* <p>Schema configuration that controls how Apache Kafka record values are validated.</p>
|
|
1902
|
+
* @public
|
|
1903
|
+
*/
|
|
1904
|
+
export interface RecordSchema {
|
|
1905
|
+
/**
|
|
1906
|
+
* <p>The Amazon Resource Name (ARN) of the AWS Glue Schema Registry schema (not registry) used to validate records for the destination Apache Iceberg table.</p>
|
|
1907
|
+
* @public
|
|
1908
|
+
*/
|
|
1909
|
+
GsrArn: string | undefined;
|
|
1910
|
+
}
|
|
1911
|
+
/**
|
|
1912
|
+
* <p>Configuration of an Apache Kafka topic that feeds a channel.</p>
|
|
1913
|
+
* @public
|
|
1914
|
+
*/
|
|
1915
|
+
export interface TopicConfiguration {
|
|
1916
|
+
/**
|
|
1917
|
+
* <p>Configuration that controls how Apache Kafka record values are deserialized for the destination.</p>
|
|
1918
|
+
* @public
|
|
1919
|
+
*/
|
|
1920
|
+
RecordConverter: RecordConverter | undefined;
|
|
1921
|
+
/**
|
|
1922
|
+
* <p>The schema used to validate records when the value converter requires one (for example, JSON_SCHEMA_GSR).</p>
|
|
1923
|
+
* @public
|
|
1924
|
+
*/
|
|
1925
|
+
RecordSchema?: RecordSchema | undefined;
|
|
1926
|
+
/**
|
|
1927
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the topic.</p>
|
|
1928
|
+
* @public
|
|
1929
|
+
*/
|
|
1930
|
+
TopicArn: string | undefined;
|
|
1931
|
+
}
|
|
1805
1932
|
/**
|
|
1806
1933
|
* <p>Includes identification info about the topic.</p>
|
|
1807
1934
|
* @public
|
|
@@ -1978,6 +2105,59 @@ export interface BatchDisassociateScramSecretResponse {
|
|
|
1978
2105
|
*/
|
|
1979
2106
|
UnprocessedScramSecrets?: UnprocessedScramSecret[] | undefined;
|
|
1980
2107
|
}
|
|
2108
|
+
/**
|
|
2109
|
+
* <p>Configuration of the AWS Glue Data Catalog and S3 Tables warehouse used by the Apache Iceberg destination.</p>
|
|
2110
|
+
* @public
|
|
2111
|
+
*/
|
|
2112
|
+
export interface Catalog {
|
|
2113
|
+
/**
|
|
2114
|
+
* <p>The Amazon Resource Name (ARN) of the federated AWS Glue Data Catalog that projects the S3 Tables bucket. If omitted, MSK derives the catalog ARN from warehouseLocation.</p>
|
|
2115
|
+
* @public
|
|
2116
|
+
*/
|
|
2117
|
+
CatalogArn?: string | undefined;
|
|
2118
|
+
/**
|
|
2119
|
+
* <p>The Amazon Resource Name (ARN) of the S3 Tables bucket that backs the Apache Iceberg warehouse.</p>
|
|
2120
|
+
* @public
|
|
2121
|
+
*/
|
|
2122
|
+
WarehouseLocation?: string | undefined;
|
|
2123
|
+
}
|
|
2124
|
+
/**
|
|
2125
|
+
* <p>Configuration for the destinations to which the channel publishes operational logs.</p>
|
|
2126
|
+
* @public
|
|
2127
|
+
*/
|
|
2128
|
+
export interface ChannelLoggingInfo {
|
|
2129
|
+
/**
|
|
2130
|
+
* <p>Details of the CloudWatch Logs destination for Channel logs.</p>
|
|
2131
|
+
* @public
|
|
2132
|
+
*/
|
|
2133
|
+
CloudWatchLogs?: CloudWatchLogs | undefined;
|
|
2134
|
+
/**
|
|
2135
|
+
* <p>Details of the Kinesis Data Firehose delivery stream that is the destination for Channel logs.</p>
|
|
2136
|
+
* @public
|
|
2137
|
+
*/
|
|
2138
|
+
Firehose?: Firehose | undefined;
|
|
2139
|
+
/**
|
|
2140
|
+
* <p>Details of the Amazon S3 destination for Channel logs.</p>
|
|
2141
|
+
* @public
|
|
2142
|
+
*/
|
|
2143
|
+
S3?: S3 | undefined;
|
|
2144
|
+
}
|
|
2145
|
+
/**
|
|
2146
|
+
* <p>Additional context for the current channel state, populated when the channel is in FAILED.</p>
|
|
2147
|
+
* @public
|
|
2148
|
+
*/
|
|
2149
|
+
export interface ChannelStateInfo {
|
|
2150
|
+
/**
|
|
2151
|
+
* <p>A short, machine-readable code identifying the failure cause.</p>
|
|
2152
|
+
* @public
|
|
2153
|
+
*/
|
|
2154
|
+
Code?: string | undefined;
|
|
2155
|
+
/**
|
|
2156
|
+
* <p>A human-readable message describing the failure.</p>
|
|
2157
|
+
* @public
|
|
2158
|
+
*/
|
|
2159
|
+
Message?: string | undefined;
|
|
2160
|
+
}
|
|
1981
2161
|
/**
|
|
1982
2162
|
* <p>Returns information about a provisioned cluster operation.</p>
|
|
1983
2163
|
* @public
|
|
@@ -2133,6 +2313,235 @@ export interface ConsumerGroupReplicationUpdate {
|
|
|
2133
2313
|
*/
|
|
2134
2314
|
SynchroniseConsumerGroupOffsets: boolean | undefined;
|
|
2135
2315
|
}
|
|
2316
|
+
/**
|
|
2317
|
+
* <p>The AWS KMS encryption configuration applied to data at rest.</p>
|
|
2318
|
+
* @public
|
|
2319
|
+
*/
|
|
2320
|
+
export interface EncryptionConfiguration {
|
|
2321
|
+
/**
|
|
2322
|
+
* <p>The Amazon Resource Name (ARN) of the AWS KMS key used to encrypt the data.</p>
|
|
2323
|
+
* @public
|
|
2324
|
+
*/
|
|
2325
|
+
KmsKeyArn: string | undefined;
|
|
2326
|
+
}
|
|
2327
|
+
/**
|
|
2328
|
+
* <p>Configuration of the Amazon S3 bucket where records that fail to deliver are stored.</p>
|
|
2329
|
+
* @public
|
|
2330
|
+
*/
|
|
2331
|
+
export interface DeadLetterQueueS3 {
|
|
2332
|
+
/**
|
|
2333
|
+
* <p>The Amazon Resource Name (ARN) of the dead-letter Amazon S3 bucket.</p>
|
|
2334
|
+
* @public
|
|
2335
|
+
*/
|
|
2336
|
+
BucketArn: string | undefined;
|
|
2337
|
+
/**
|
|
2338
|
+
* <p>An optional prefix prepended to every dead-letter Amazon S3 object key.</p>
|
|
2339
|
+
* @public
|
|
2340
|
+
*/
|
|
2341
|
+
ErrorOutputPrefix?: string | undefined;
|
|
2342
|
+
/**
|
|
2343
|
+
* <p>Optional 12-digit AWS account ID expected to own the dead-letter Amazon S3 bucket.</p>
|
|
2344
|
+
* @public
|
|
2345
|
+
*/
|
|
2346
|
+
ExpectedBucketOwner?: string | undefined;
|
|
2347
|
+
}
|
|
2348
|
+
/**
|
|
2349
|
+
* <p>Configuration controlling whether the Apache Iceberg destination table's schema is evolved as incoming records change.</p>
|
|
2350
|
+
* @public
|
|
2351
|
+
*/
|
|
2352
|
+
export interface SchemaEvolution {
|
|
2353
|
+
/**
|
|
2354
|
+
* <p>Whether to allow MSK to evolve the destination table's schema. Must be false for the current release.</p>
|
|
2355
|
+
* @public
|
|
2356
|
+
*/
|
|
2357
|
+
EnableSchemaEvolution?: boolean | undefined;
|
|
2358
|
+
}
|
|
2359
|
+
/**
|
|
2360
|
+
* <p>Configuration controlling whether MSK creates the destination Apache Iceberg table if it does not already exist.</p>
|
|
2361
|
+
* @public
|
|
2362
|
+
*/
|
|
2363
|
+
export interface TableCreation {
|
|
2364
|
+
/**
|
|
2365
|
+
* <p>Whether MSK creates the destination table on the customer's behalf. Must be true for the current release.</p>
|
|
2366
|
+
* @public
|
|
2367
|
+
*/
|
|
2368
|
+
EnableTableCreation?: boolean | undefined;
|
|
2369
|
+
}
|
|
2370
|
+
/**
|
|
2371
|
+
* <p>Configuration of an Apache Iceberg destination for a channel.</p>
|
|
2372
|
+
* @public
|
|
2373
|
+
*/
|
|
2374
|
+
export interface IcebergDestinationConfiguration {
|
|
2375
|
+
/**
|
|
2376
|
+
* <p>Whether the destination is append-only. Must be true; updates and deletes are not supported.</p>
|
|
2377
|
+
* @public
|
|
2378
|
+
*/
|
|
2379
|
+
AppendOnly: boolean | undefined;
|
|
2380
|
+
/**
|
|
2381
|
+
* <p>The AWS Glue Data Catalog and S3 Tables warehouse used by the destination.</p>
|
|
2382
|
+
* @public
|
|
2383
|
+
*/
|
|
2384
|
+
Catalog?: Catalog | undefined;
|
|
2385
|
+
/**
|
|
2386
|
+
* <p>The maximum time, in seconds, that records buffer in MSK before being flushed to the destination. Allowed range: 300 to 900. Default: 600.</p>
|
|
2387
|
+
* @public
|
|
2388
|
+
*/
|
|
2389
|
+
DataFreshnessInSeconds?: number | undefined;
|
|
2390
|
+
/**
|
|
2391
|
+
* <p>The Amazon S3 bucket and prefix where MSK writes records that fail to deliver.</p>
|
|
2392
|
+
* @public
|
|
2393
|
+
*/
|
|
2394
|
+
DeadLetterQueueS3: DeadLetterQueueS3 | undefined;
|
|
2395
|
+
/**
|
|
2396
|
+
* <p>The destination Iceberg tables. Currently exactly one table must be specified.</p>
|
|
2397
|
+
* @public
|
|
2398
|
+
*/
|
|
2399
|
+
DestinationTableList: DestinationTable[] | undefined;
|
|
2400
|
+
/**
|
|
2401
|
+
* <p>Configuration controlling whether the destination table's schema is evolved to match incoming records.</p>
|
|
2402
|
+
* @public
|
|
2403
|
+
*/
|
|
2404
|
+
SchemaEvolution: SchemaEvolution | undefined;
|
|
2405
|
+
/**
|
|
2406
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role that MSK assumes to access the destination table, the AWS Glue Data Catalog, and the dead-letter Amazon S3 bucket.</p>
|
|
2407
|
+
* @public
|
|
2408
|
+
*/
|
|
2409
|
+
ServiceExecutionRoleArn: string | undefined;
|
|
2410
|
+
/**
|
|
2411
|
+
* <p>Configuration controlling whether MSK creates the destination table if it does not already exist.</p>
|
|
2412
|
+
* @public
|
|
2413
|
+
*/
|
|
2414
|
+
TableCreation: TableCreation | undefined;
|
|
2415
|
+
/**
|
|
2416
|
+
* <p>The compression codec for Iceberg table data files. Defaults to ZSTD.</p>
|
|
2417
|
+
* @public
|
|
2418
|
+
*/
|
|
2419
|
+
CompressionType?: IcebergCompressionType | undefined;
|
|
2420
|
+
}
|
|
2421
|
+
/**
|
|
2422
|
+
* <p>Storage configuration for an Amazon S3 destination bucket.</p>
|
|
2423
|
+
* @public
|
|
2424
|
+
*/
|
|
2425
|
+
export interface S3Storage {
|
|
2426
|
+
/**
|
|
2427
|
+
* <p>The Amazon Resource Name (ARN) of the destination Amazon S3 bucket.</p>
|
|
2428
|
+
* @public
|
|
2429
|
+
*/
|
|
2430
|
+
BucketArn: string | undefined;
|
|
2431
|
+
/**
|
|
2432
|
+
* <p>The compression codec applied to delivered Amazon S3 objects.</p>
|
|
2433
|
+
* @public
|
|
2434
|
+
*/
|
|
2435
|
+
CompressionType: S3CompressionType | undefined;
|
|
2436
|
+
/**
|
|
2437
|
+
* <p>An optional prefix prepended to every Amazon S3 object key written by the channel.</p>
|
|
2438
|
+
* @public
|
|
2439
|
+
*/
|
|
2440
|
+
OutputPrefix?: string | undefined;
|
|
2441
|
+
/**
|
|
2442
|
+
* <p>An optional template that controls the Amazon S3 object key for each delivered record. Supports the placeholders !\{partition-id\}, !\{sequence-number\}, and !\{kafka-offset\}.</p>
|
|
2443
|
+
* @public
|
|
2444
|
+
*/
|
|
2445
|
+
OutputKeyTemplate?: string | undefined;
|
|
2446
|
+
/**
|
|
2447
|
+
* <p>The Amazon S3 storage class for delivered objects.</p>
|
|
2448
|
+
* @public
|
|
2449
|
+
*/
|
|
2450
|
+
StorageClass: S3StorageClass | undefined;
|
|
2451
|
+
/**
|
|
2452
|
+
* <p>Optional 12-digit AWS account ID expected to own the Amazon S3 bucket.</p>
|
|
2453
|
+
* @public
|
|
2454
|
+
*/
|
|
2455
|
+
ExpectedBucketOwner?: string | undefined;
|
|
2456
|
+
}
|
|
2457
|
+
/**
|
|
2458
|
+
* <p>Configuration of an Amazon S3 destination for a channel.</p>
|
|
2459
|
+
* @public
|
|
2460
|
+
*/
|
|
2461
|
+
export interface S3DestinationConfiguration {
|
|
2462
|
+
/**
|
|
2463
|
+
* <p>The maximum time, in seconds, that records buffer in MSK before being flushed to the destination. Allowed range: 300 to 900. Default: 600.</p>
|
|
2464
|
+
* @public
|
|
2465
|
+
*/
|
|
2466
|
+
DataFreshnessInSeconds?: number | undefined;
|
|
2467
|
+
/**
|
|
2468
|
+
* <p>The Amazon S3 bucket and prefix where MSK writes records that fail to deliver.</p>
|
|
2469
|
+
* @public
|
|
2470
|
+
*/
|
|
2471
|
+
DeadLetterQueueS3: DeadLetterQueueS3 | undefined;
|
|
2472
|
+
/**
|
|
2473
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role that MSK assumes to write to the destination Amazon S3 bucket and the dead-letter bucket.</p>
|
|
2474
|
+
* @public
|
|
2475
|
+
*/
|
|
2476
|
+
ServiceExecutionRoleArn: string | undefined;
|
|
2477
|
+
/**
|
|
2478
|
+
* <p>The Amazon S3 bucket, prefix, and storage class for delivered records.</p>
|
|
2479
|
+
* @public
|
|
2480
|
+
*/
|
|
2481
|
+
Storage: S3Storage | undefined;
|
|
2482
|
+
}
|
|
2483
|
+
/**
|
|
2484
|
+
* <p>Creates a Channel that streams records from an Amazon MSK Express cluster topic to Amazon S3 or Apache Iceberg.</p>
|
|
2485
|
+
* @public
|
|
2486
|
+
*/
|
|
2487
|
+
export interface CreateChannelRequest {
|
|
2488
|
+
/**
|
|
2489
|
+
* <p>The name of the channel. Must be unique within the cluster.</p>
|
|
2490
|
+
* @public
|
|
2491
|
+
*/
|
|
2492
|
+
ChannelName: string | undefined;
|
|
2493
|
+
/**
|
|
2494
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.</p>
|
|
2495
|
+
* @public
|
|
2496
|
+
*/
|
|
2497
|
+
ClusterArn: string | undefined;
|
|
2498
|
+
/**
|
|
2499
|
+
* <p>The encryption configuration applied to the channel.</p>
|
|
2500
|
+
* @public
|
|
2501
|
+
*/
|
|
2502
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
2503
|
+
/**
|
|
2504
|
+
* <p>The Apache Iceberg destination for the channel. Mutually exclusive with s3DestinationConfiguration.</p>
|
|
2505
|
+
* @public
|
|
2506
|
+
*/
|
|
2507
|
+
IcebergDestinationConfiguration?: IcebergDestinationConfiguration | undefined;
|
|
2508
|
+
/**
|
|
2509
|
+
* <p>The Amazon S3 destination for the channel. Mutually exclusive with icebergDestinationConfiguration.</p>
|
|
2510
|
+
* @public
|
|
2511
|
+
*/
|
|
2512
|
+
S3DestinationConfiguration?: S3DestinationConfiguration | undefined;
|
|
2513
|
+
/**
|
|
2514
|
+
* <p>The tags attached to the channel.</p>
|
|
2515
|
+
* @public
|
|
2516
|
+
*/
|
|
2517
|
+
Tags?: Record<string, string> | undefined;
|
|
2518
|
+
/**
|
|
2519
|
+
* <p>The list of topic configurations for the channel. Currently exactly one topic must be specified.</p>
|
|
2520
|
+
* @public
|
|
2521
|
+
*/
|
|
2522
|
+
TopicConfigurationList: TopicConfiguration[] | undefined;
|
|
2523
|
+
/**
|
|
2524
|
+
* <p>The destinations to which the channel publishes operational logs.</p>
|
|
2525
|
+
* @public
|
|
2526
|
+
*/
|
|
2527
|
+
LoggingInfo?: ChannelLoggingInfo | undefined;
|
|
2528
|
+
}
|
|
2529
|
+
/**
|
|
2530
|
+
* <p>Returns the channel ARN and the cluster-operation ARN that tracks the asynchronous create.</p>
|
|
2531
|
+
* @public
|
|
2532
|
+
*/
|
|
2533
|
+
export interface CreateChannelResponse {
|
|
2534
|
+
/**
|
|
2535
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the channel.</p>
|
|
2536
|
+
* @public
|
|
2537
|
+
*/
|
|
2538
|
+
ChannelArn: string | undefined;
|
|
2539
|
+
/**
|
|
2540
|
+
* <p>The Amazon Resource Name (ARN) of the cluster operation.</p>
|
|
2541
|
+
* @public
|
|
2542
|
+
*/
|
|
2543
|
+
ClusterOperationArn?: string | undefined;
|
|
2544
|
+
}
|
|
2136
2545
|
/**
|
|
2137
2546
|
* @public
|
|
2138
2547
|
*/
|
|
@@ -2678,6 +3087,37 @@ export interface CreateVpcConnectionResponse {
|
|
|
2678
3087
|
*/
|
|
2679
3088
|
Tags?: Record<string, string> | undefined;
|
|
2680
3089
|
}
|
|
3090
|
+
/**
|
|
3091
|
+
* @public
|
|
3092
|
+
*/
|
|
3093
|
+
export interface DeleteChannelRequest {
|
|
3094
|
+
/**
|
|
3095
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the channel.</p>
|
|
3096
|
+
* @public
|
|
3097
|
+
*/
|
|
3098
|
+
ChannelArn: string | undefined;
|
|
3099
|
+
/**
|
|
3100
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.</p>
|
|
3101
|
+
* @public
|
|
3102
|
+
*/
|
|
3103
|
+
ClusterArn: string | undefined;
|
|
3104
|
+
}
|
|
3105
|
+
/**
|
|
3106
|
+
* <p>Returns the channel ARN and the cluster-operation ARN that tracks the asynchronous delete.</p>
|
|
3107
|
+
* @public
|
|
3108
|
+
*/
|
|
3109
|
+
export interface DeleteChannelResponse {
|
|
3110
|
+
/**
|
|
3111
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the channel.</p>
|
|
3112
|
+
* @public
|
|
3113
|
+
*/
|
|
3114
|
+
ChannelArn: string | undefined;
|
|
3115
|
+
/**
|
|
3116
|
+
* <p>The Amazon Resource Name (ARN) of the cluster operation.</p>
|
|
3117
|
+
* @public
|
|
3118
|
+
*/
|
|
3119
|
+
ClusterOperationArn?: string | undefined;
|
|
3120
|
+
}
|
|
2681
3121
|
/**
|
|
2682
3122
|
* @public
|
|
2683
3123
|
*/
|
|
@@ -2838,6 +3278,92 @@ export interface DeleteVpcConnectionResponse {
|
|
|
2838
3278
|
*/
|
|
2839
3279
|
State?: VpcConnectionState | undefined;
|
|
2840
3280
|
}
|
|
3281
|
+
/**
|
|
3282
|
+
* @public
|
|
3283
|
+
*/
|
|
3284
|
+
export interface DescribeChannelRequest {
|
|
3285
|
+
/**
|
|
3286
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the channel.</p>
|
|
3287
|
+
* @public
|
|
3288
|
+
*/
|
|
3289
|
+
ChannelArn: string | undefined;
|
|
3290
|
+
/**
|
|
3291
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.</p>
|
|
3292
|
+
* @public
|
|
3293
|
+
*/
|
|
3294
|
+
ClusterArn: string | undefined;
|
|
3295
|
+
}
|
|
3296
|
+
/**
|
|
3297
|
+
* <p>Contains the current configuration and state of a channel.</p>
|
|
3298
|
+
* @public
|
|
3299
|
+
*/
|
|
3300
|
+
export interface DescribeChannelResponse {
|
|
3301
|
+
/**
|
|
3302
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the channel.</p>
|
|
3303
|
+
* @public
|
|
3304
|
+
*/
|
|
3305
|
+
ChannelArn: string | undefined;
|
|
3306
|
+
/**
|
|
3307
|
+
* <p>The name of the channel.</p>
|
|
3308
|
+
* @public
|
|
3309
|
+
*/
|
|
3310
|
+
ChannelName: string | undefined;
|
|
3311
|
+
/**
|
|
3312
|
+
* <p>The encryption configuration applied to the channel.</p>
|
|
3313
|
+
* @public
|
|
3314
|
+
*/
|
|
3315
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
3316
|
+
/**
|
|
3317
|
+
* <p>The Apache Iceberg destination for the channel, if configured.</p>
|
|
3318
|
+
* @public
|
|
3319
|
+
*/
|
|
3320
|
+
IcebergDestinationConfiguration?: IcebergDestinationConfiguration | undefined;
|
|
3321
|
+
/**
|
|
3322
|
+
* <p>The Amazon S3 destination for the channel, if configured.</p>
|
|
3323
|
+
* @public
|
|
3324
|
+
*/
|
|
3325
|
+
S3DestinationConfiguration?: S3DestinationConfiguration | undefined;
|
|
3326
|
+
/**
|
|
3327
|
+
* <p>The current lifecycle state of the channel.</p>
|
|
3328
|
+
* @public
|
|
3329
|
+
*/
|
|
3330
|
+
Status: ChannelStatus | undefined;
|
|
3331
|
+
/**
|
|
3332
|
+
* <p>The type of destination configured for the channel.</p>
|
|
3333
|
+
* @public
|
|
3334
|
+
*/
|
|
3335
|
+
DestinationType: ChannelDestinationType | undefined;
|
|
3336
|
+
/**
|
|
3337
|
+
* <p>The time when the channel was created.</p>
|
|
3338
|
+
* @public
|
|
3339
|
+
*/
|
|
3340
|
+
CreationTime: Date | undefined;
|
|
3341
|
+
/**
|
|
3342
|
+
* <p>The list of topic configurations for the channel.</p>
|
|
3343
|
+
* @public
|
|
3344
|
+
*/
|
|
3345
|
+
TopicConfigurationList: TopicConfiguration[] | undefined;
|
|
3346
|
+
/**
|
|
3347
|
+
* <p>The destinations to which the channel publishes operational logs.</p>
|
|
3348
|
+
* @public
|
|
3349
|
+
*/
|
|
3350
|
+
LoggingInfo?: ChannelLoggingInfo | undefined;
|
|
3351
|
+
/**
|
|
3352
|
+
* <p>Additional context for the current channel state, populated when the channel is in FAILED.</p>
|
|
3353
|
+
* @public
|
|
3354
|
+
*/
|
|
3355
|
+
StateInfo?: ChannelStateInfo | undefined;
|
|
3356
|
+
/**
|
|
3357
|
+
* <p>The Amazon Resource Name (ARN) of the in-flight cluster operation. Returned only while the channel is in CREATING, UPDATING, or DELETING.</p>
|
|
3358
|
+
* @public
|
|
3359
|
+
*/
|
|
3360
|
+
ClusterOperationArn?: string | undefined;
|
|
3361
|
+
/**
|
|
3362
|
+
* <p>The tags attached to the channel.</p>
|
|
3363
|
+
* @public
|
|
3364
|
+
*/
|
|
3365
|
+
Tags?: Record<string, string> | undefined;
|
|
3366
|
+
}
|
|
2841
3367
|
/**
|
|
2842
3368
|
* @public
|
|
2843
3369
|
*/
|
|
@@ -3397,6 +3923,58 @@ export interface GetCompatibleKafkaVersionsResponse {
|
|
|
3397
3923
|
*/
|
|
3398
3924
|
CompatibleKafkaVersions?: CompatibleKafkaVersion[] | undefined;
|
|
3399
3925
|
}
|
|
3926
|
+
/**
|
|
3927
|
+
* <p>Update payload for an Apache Iceberg destination.</p>
|
|
3928
|
+
* @public
|
|
3929
|
+
*/
|
|
3930
|
+
export interface IcebergDestinationUpdate {
|
|
3931
|
+
/**
|
|
3932
|
+
* <p>The maximum time, in seconds, that records buffer in MSK before being flushed to the destination. Allowed range: 300 to 900.</p>
|
|
3933
|
+
* @public
|
|
3934
|
+
*/
|
|
3935
|
+
DataFreshnessInSeconds: number | undefined;
|
|
3936
|
+
}
|
|
3937
|
+
/**
|
|
3938
|
+
* @public
|
|
3939
|
+
*/
|
|
3940
|
+
export interface ListChannelsRequest {
|
|
3941
|
+
/**
|
|
3942
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.</p>
|
|
3943
|
+
* @public
|
|
3944
|
+
*/
|
|
3945
|
+
ClusterArn: string | undefined;
|
|
3946
|
+
/**
|
|
3947
|
+
* <p>Maximum number of channels to return in a single response.</p>
|
|
3948
|
+
* @public
|
|
3949
|
+
*/
|
|
3950
|
+
MaxResults?: number | undefined;
|
|
3951
|
+
/**
|
|
3952
|
+
* <p>If the response of ListChannels is truncated, it returns a nextToken in the response. This nextToken should be sent in the subsequent request to ListChannels.</p>
|
|
3953
|
+
* @public
|
|
3954
|
+
*/
|
|
3955
|
+
NextToken?: string | undefined;
|
|
3956
|
+
/**
|
|
3957
|
+
* <p>Filters results to channels whose topic name matches the specified value.</p>
|
|
3958
|
+
* @public
|
|
3959
|
+
*/
|
|
3960
|
+
TopicNameFilter?: string | undefined;
|
|
3961
|
+
}
|
|
3962
|
+
/**
|
|
3963
|
+
* <p>Returns the list of channels in the cluster.</p>
|
|
3964
|
+
* @public
|
|
3965
|
+
*/
|
|
3966
|
+
export interface ListChannelsResponse {
|
|
3967
|
+
/**
|
|
3968
|
+
* <p>The list of channels in the cluster.</p>
|
|
3969
|
+
* @public
|
|
3970
|
+
*/
|
|
3971
|
+
Channels?: ChannelInfo[] | undefined;
|
|
3972
|
+
/**
|
|
3973
|
+
* <p>If the response from ListChannels is truncated, this token is included. Send it as the nextToken parameter on a subsequent ListChannels call to retrieve the next page.</p>
|
|
3974
|
+
* @public
|
|
3975
|
+
*/
|
|
3976
|
+
NextToken?: string | undefined;
|
|
3977
|
+
}
|
|
3400
3978
|
/**
|
|
3401
3979
|
* @public
|
|
3402
3980
|
*/
|
|
@@ -4110,6 +4688,59 @@ export interface UpdateBrokerTypeResponse {
|
|
|
4110
4688
|
*/
|
|
4111
4689
|
ClusterOperationArn?: string | undefined;
|
|
4112
4690
|
}
|
|
4691
|
+
/**
|
|
4692
|
+
* <p>Update payload for an Amazon S3 destination.</p>
|
|
4693
|
+
* @public
|
|
4694
|
+
*/
|
|
4695
|
+
export interface S3DestinationUpdate {
|
|
4696
|
+
/**
|
|
4697
|
+
* <p>The maximum time, in seconds, that records buffer in MSK before being flushed to the destination. Allowed range: 300 to 900.</p>
|
|
4698
|
+
* @public
|
|
4699
|
+
*/
|
|
4700
|
+
DataFreshnessInSeconds: number | undefined;
|
|
4701
|
+
}
|
|
4702
|
+
/**
|
|
4703
|
+
* <p>Updates an existing channel's destination configuration. You must update the same destination type the channel was created with; the destination type cannot be changed.</p>
|
|
4704
|
+
* @public
|
|
4705
|
+
*/
|
|
4706
|
+
export interface UpdateChannelRequest {
|
|
4707
|
+
/**
|
|
4708
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the channel.</p>
|
|
4709
|
+
* @public
|
|
4710
|
+
*/
|
|
4711
|
+
ChannelArn: string | undefined;
|
|
4712
|
+
/**
|
|
4713
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.</p>
|
|
4714
|
+
* @public
|
|
4715
|
+
*/
|
|
4716
|
+
ClusterArn: string | undefined;
|
|
4717
|
+
/**
|
|
4718
|
+
* <p>Updates fields on an Apache Iceberg destination. Use only when the channel was created with an Iceberg destination.</p>
|
|
4719
|
+
* @public
|
|
4720
|
+
*/
|
|
4721
|
+
IcebergDestinationUpdate?: IcebergDestinationUpdate | undefined;
|
|
4722
|
+
/**
|
|
4723
|
+
* <p>Updates fields on an Amazon S3 destination. Use only when the channel was created with an Amazon S3 destination.</p>
|
|
4724
|
+
* @public
|
|
4725
|
+
*/
|
|
4726
|
+
S3DestinationUpdate?: S3DestinationUpdate | undefined;
|
|
4727
|
+
}
|
|
4728
|
+
/**
|
|
4729
|
+
* <p>Returns the channel ARN and the cluster-operation ARN that tracks the asynchronous update.</p>
|
|
4730
|
+
* @public
|
|
4731
|
+
*/
|
|
4732
|
+
export interface UpdateChannelResponse {
|
|
4733
|
+
/**
|
|
4734
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the channel.</p>
|
|
4735
|
+
* @public
|
|
4736
|
+
*/
|
|
4737
|
+
ChannelArn: string | undefined;
|
|
4738
|
+
/**
|
|
4739
|
+
* <p>The Amazon Resource Name (ARN) of the cluster operation.</p>
|
|
4740
|
+
* @public
|
|
4741
|
+
*/
|
|
4742
|
+
ClusterOperationArn?: string | undefined;
|
|
4743
|
+
}
|
|
4113
4744
|
/**
|
|
4114
4745
|
* @public
|
|
4115
4746
|
*/
|