@aws-sdk/client-kafka 3.1097.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 +6 -6
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
export declare const ChannelDestinationType: {
|
|
2
|
+
readonly ICEBERG: "ICEBERG";
|
|
3
|
+
readonly S3: "S3";
|
|
4
|
+
};
|
|
5
|
+
export type ChannelDestinationType =
|
|
6
|
+
(typeof ChannelDestinationType)[keyof typeof ChannelDestinationType];
|
|
7
|
+
export declare const ChannelStatus: {
|
|
8
|
+
readonly ACTIVE: "ACTIVE";
|
|
9
|
+
readonly CREATING: "CREATING";
|
|
10
|
+
readonly DELETING: "DELETING";
|
|
11
|
+
readonly FAILED: "FAILED";
|
|
12
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
13
|
+
readonly SUSPENDING: "SUSPENDING";
|
|
14
|
+
readonly UPDATING: "UPDATING";
|
|
15
|
+
};
|
|
16
|
+
export type ChannelStatus = (typeof ChannelStatus)[keyof typeof ChannelStatus];
|
|
1
17
|
export declare const VpcConnectionState: {
|
|
2
18
|
readonly AVAILABLE: "AVAILABLE";
|
|
3
19
|
readonly CREATING: "CREATING";
|
|
@@ -74,6 +90,10 @@ export declare const ConfigurationState: {
|
|
|
74
90
|
readonly DELETING: "DELETING";
|
|
75
91
|
};
|
|
76
92
|
export type ConfigurationState = (typeof ConfigurationState)[keyof typeof ConfigurationState];
|
|
93
|
+
export declare const PartitionStrategy: {
|
|
94
|
+
readonly TIME_HOUR: "TIME_HOUR";
|
|
95
|
+
};
|
|
96
|
+
export type PartitionStrategy = (typeof PartitionStrategy)[keyof typeof PartitionStrategy];
|
|
77
97
|
export declare const KafkaClusterSaslScramMechanism: {
|
|
78
98
|
readonly SHA256: "SHA256";
|
|
79
99
|
readonly SHA512: "SHA512";
|
|
@@ -129,6 +149,31 @@ export declare const ReplicatorState: {
|
|
|
129
149
|
readonly UPDATING: "UPDATING";
|
|
130
150
|
};
|
|
131
151
|
export type ReplicatorState = (typeof ReplicatorState)[keyof typeof ReplicatorState];
|
|
152
|
+
export declare const ValueConverter: {
|
|
153
|
+
readonly BYTE_ARRAY: "BYTE_ARRAY";
|
|
154
|
+
readonly JSON: "JSON";
|
|
155
|
+
readonly JSON_SCHEMA_GSR: "JSON_SCHEMA_GSR";
|
|
156
|
+
readonly STRING: "STRING";
|
|
157
|
+
};
|
|
158
|
+
export type ValueConverter = (typeof ValueConverter)[keyof typeof ValueConverter];
|
|
159
|
+
export declare const IcebergCompressionType: {
|
|
160
|
+
readonly SNAPPY: "SNAPPY";
|
|
161
|
+
readonly ZSTD: "ZSTD";
|
|
162
|
+
};
|
|
163
|
+
export type IcebergCompressionType =
|
|
164
|
+
(typeof IcebergCompressionType)[keyof typeof IcebergCompressionType];
|
|
165
|
+
export declare const S3CompressionType: {
|
|
166
|
+
readonly GZIP: "GZIP";
|
|
167
|
+
readonly NONE: "NONE";
|
|
168
|
+
readonly ZSTD: "ZSTD";
|
|
169
|
+
};
|
|
170
|
+
export type S3CompressionType = (typeof S3CompressionType)[keyof typeof S3CompressionType];
|
|
171
|
+
export declare const S3StorageClass: {
|
|
172
|
+
readonly GLACIER_IR: "GLACIER_IR";
|
|
173
|
+
readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
|
|
174
|
+
readonly STANDARD: "STANDARD";
|
|
175
|
+
};
|
|
176
|
+
export type S3StorageClass = (typeof S3StorageClass)[keyof typeof S3StorageClass];
|
|
132
177
|
export declare const TopicState: {
|
|
133
178
|
readonly ACTIVE: "ACTIVE";
|
|
134
179
|
readonly CREATING: "CREATING";
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
BrokerAZDistribution,
|
|
3
|
+
ChannelDestinationType,
|
|
4
|
+
ChannelStatus,
|
|
3
5
|
ClientBroker,
|
|
4
6
|
ClusterState,
|
|
5
7
|
ClusterType,
|
|
@@ -7,19 +9,24 @@ import {
|
|
|
7
9
|
ConsumerGroupOffsetSyncMode,
|
|
8
10
|
CustomerActionStatus,
|
|
9
11
|
EnhancedMonitoring,
|
|
12
|
+
IcebergCompressionType,
|
|
10
13
|
KafkaClusterEncryptionInTransitType,
|
|
11
14
|
KafkaClusterSaslScramMechanism,
|
|
12
15
|
KafkaVersionStatus,
|
|
13
16
|
NetworkType,
|
|
14
17
|
NodeType,
|
|
18
|
+
PartitionStrategy,
|
|
15
19
|
RebalancingStatus,
|
|
16
20
|
ReplicationStartingPositionType,
|
|
17
21
|
ReplicationTopicNameConfigurationType,
|
|
18
22
|
ReplicatorState,
|
|
23
|
+
S3CompressionType,
|
|
24
|
+
S3StorageClass,
|
|
19
25
|
StorageMode,
|
|
20
26
|
TargetCompressionType,
|
|
21
27
|
TopicState,
|
|
22
28
|
UserIdentityType,
|
|
29
|
+
ValueConverter,
|
|
23
30
|
VpcConnectionState,
|
|
24
31
|
} from "./enums";
|
|
25
32
|
export interface ProvisionedThroughput {
|
|
@@ -31,6 +38,14 @@ export interface BrokerEBSVolumeInfo {
|
|
|
31
38
|
ProvisionedThroughput?: ProvisionedThroughput | undefined;
|
|
32
39
|
VolumeSizeGB?: number | undefined;
|
|
33
40
|
}
|
|
41
|
+
export interface ChannelInfo {
|
|
42
|
+
ChannelArn: string | undefined;
|
|
43
|
+
ChannelName: string | undefined;
|
|
44
|
+
Status: ChannelStatus | undefined;
|
|
45
|
+
CreationTime: Date | undefined;
|
|
46
|
+
DestinationType: ChannelDestinationType | undefined;
|
|
47
|
+
ClusterOperationArn?: string | undefined;
|
|
48
|
+
}
|
|
34
49
|
export interface ClientVpcConnection {
|
|
35
50
|
Authentication?: string | undefined;
|
|
36
51
|
CreationTime?: Date | undefined;
|
|
@@ -333,6 +348,18 @@ export interface Configuration {
|
|
|
333
348
|
Name: string | undefined;
|
|
334
349
|
State: ConfigurationState | undefined;
|
|
335
350
|
}
|
|
351
|
+
export interface PartitionSource {
|
|
352
|
+
SourceName?: string | undefined;
|
|
353
|
+
}
|
|
354
|
+
export interface PartitionSpec {
|
|
355
|
+
PartitionStrategy: PartitionStrategy | undefined;
|
|
356
|
+
SourceList?: PartitionSource[] | undefined;
|
|
357
|
+
}
|
|
358
|
+
export interface DestinationTable {
|
|
359
|
+
DestinationDatabaseName?: string | undefined;
|
|
360
|
+
DestinationTableName?: string | undefined;
|
|
361
|
+
PartitionSpec?: PartitionSpec | undefined;
|
|
362
|
+
}
|
|
336
363
|
export interface AmazonMskCluster {
|
|
337
364
|
MskClusterArn: string | undefined;
|
|
338
365
|
}
|
|
@@ -463,6 +490,17 @@ export interface ReplicatorSummary {
|
|
|
463
490
|
ReplicatorResourceArn?: string | undefined;
|
|
464
491
|
ReplicatorState?: ReplicatorState | undefined;
|
|
465
492
|
}
|
|
493
|
+
export interface RecordConverter {
|
|
494
|
+
ValueConverter: ValueConverter | undefined;
|
|
495
|
+
}
|
|
496
|
+
export interface RecordSchema {
|
|
497
|
+
GsrArn: string | undefined;
|
|
498
|
+
}
|
|
499
|
+
export interface TopicConfiguration {
|
|
500
|
+
RecordConverter: RecordConverter | undefined;
|
|
501
|
+
RecordSchema?: RecordSchema | undefined;
|
|
502
|
+
TopicArn: string | undefined;
|
|
503
|
+
}
|
|
466
504
|
export interface TopicInfo {
|
|
467
505
|
TopicArn?: string | undefined;
|
|
468
506
|
TopicName?: string | undefined;
|
|
@@ -505,6 +543,19 @@ export interface BatchDisassociateScramSecretResponse {
|
|
|
505
543
|
ClusterArn?: string | undefined;
|
|
506
544
|
UnprocessedScramSecrets?: UnprocessedScramSecret[] | undefined;
|
|
507
545
|
}
|
|
546
|
+
export interface Catalog {
|
|
547
|
+
CatalogArn?: string | undefined;
|
|
548
|
+
WarehouseLocation?: string | undefined;
|
|
549
|
+
}
|
|
550
|
+
export interface ChannelLoggingInfo {
|
|
551
|
+
CloudWatchLogs?: CloudWatchLogs | undefined;
|
|
552
|
+
Firehose?: Firehose | undefined;
|
|
553
|
+
S3?: S3 | undefined;
|
|
554
|
+
}
|
|
555
|
+
export interface ChannelStateInfo {
|
|
556
|
+
Code?: string | undefined;
|
|
557
|
+
Message?: string | undefined;
|
|
558
|
+
}
|
|
508
559
|
export interface ClusterOperationV2Provisioned {
|
|
509
560
|
OperationSteps?: ClusterOperationStep[] | undefined;
|
|
510
561
|
SourceClusterInfo?: MutableClusterInfo | undefined;
|
|
@@ -540,6 +591,59 @@ export interface ConsumerGroupReplicationUpdate {
|
|
|
540
591
|
DetectAndCopyNewConsumerGroups: boolean | undefined;
|
|
541
592
|
SynchroniseConsumerGroupOffsets: boolean | undefined;
|
|
542
593
|
}
|
|
594
|
+
export interface EncryptionConfiguration {
|
|
595
|
+
KmsKeyArn: string | undefined;
|
|
596
|
+
}
|
|
597
|
+
export interface DeadLetterQueueS3 {
|
|
598
|
+
BucketArn: string | undefined;
|
|
599
|
+
ErrorOutputPrefix?: string | undefined;
|
|
600
|
+
ExpectedBucketOwner?: string | undefined;
|
|
601
|
+
}
|
|
602
|
+
export interface SchemaEvolution {
|
|
603
|
+
EnableSchemaEvolution?: boolean | undefined;
|
|
604
|
+
}
|
|
605
|
+
export interface TableCreation {
|
|
606
|
+
EnableTableCreation?: boolean | undefined;
|
|
607
|
+
}
|
|
608
|
+
export interface IcebergDestinationConfiguration {
|
|
609
|
+
AppendOnly: boolean | undefined;
|
|
610
|
+
Catalog?: Catalog | undefined;
|
|
611
|
+
DataFreshnessInSeconds?: number | undefined;
|
|
612
|
+
DeadLetterQueueS3: DeadLetterQueueS3 | undefined;
|
|
613
|
+
DestinationTableList: DestinationTable[] | undefined;
|
|
614
|
+
SchemaEvolution: SchemaEvolution | undefined;
|
|
615
|
+
ServiceExecutionRoleArn: string | undefined;
|
|
616
|
+
TableCreation: TableCreation | undefined;
|
|
617
|
+
CompressionType?: IcebergCompressionType | undefined;
|
|
618
|
+
}
|
|
619
|
+
export interface S3Storage {
|
|
620
|
+
BucketArn: string | undefined;
|
|
621
|
+
CompressionType: S3CompressionType | undefined;
|
|
622
|
+
OutputPrefix?: string | undefined;
|
|
623
|
+
OutputKeyTemplate?: string | undefined;
|
|
624
|
+
StorageClass: S3StorageClass | undefined;
|
|
625
|
+
ExpectedBucketOwner?: string | undefined;
|
|
626
|
+
}
|
|
627
|
+
export interface S3DestinationConfiguration {
|
|
628
|
+
DataFreshnessInSeconds?: number | undefined;
|
|
629
|
+
DeadLetterQueueS3: DeadLetterQueueS3 | undefined;
|
|
630
|
+
ServiceExecutionRoleArn: string | undefined;
|
|
631
|
+
Storage: S3Storage | undefined;
|
|
632
|
+
}
|
|
633
|
+
export interface CreateChannelRequest {
|
|
634
|
+
ChannelName: string | undefined;
|
|
635
|
+
ClusterArn: string | undefined;
|
|
636
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
637
|
+
IcebergDestinationConfiguration?: IcebergDestinationConfiguration | undefined;
|
|
638
|
+
S3DestinationConfiguration?: S3DestinationConfiguration | undefined;
|
|
639
|
+
Tags?: Record<string, string> | undefined;
|
|
640
|
+
TopicConfigurationList: TopicConfiguration[] | undefined;
|
|
641
|
+
LoggingInfo?: ChannelLoggingInfo | undefined;
|
|
642
|
+
}
|
|
643
|
+
export interface CreateChannelResponse {
|
|
644
|
+
ChannelArn: string | undefined;
|
|
645
|
+
ClusterOperationArn?: string | undefined;
|
|
646
|
+
}
|
|
543
647
|
export interface CreateClusterRequest {
|
|
544
648
|
BrokerNodeGroupInfo: BrokerNodeGroupInfo | undefined;
|
|
545
649
|
Rebalancing?: Rebalancing | undefined;
|
|
@@ -667,6 +771,14 @@ export interface CreateVpcConnectionResponse {
|
|
|
667
771
|
CreationTime?: Date | undefined;
|
|
668
772
|
Tags?: Record<string, string> | undefined;
|
|
669
773
|
}
|
|
774
|
+
export interface DeleteChannelRequest {
|
|
775
|
+
ChannelArn: string | undefined;
|
|
776
|
+
ClusterArn: string | undefined;
|
|
777
|
+
}
|
|
778
|
+
export interface DeleteChannelResponse {
|
|
779
|
+
ChannelArn: string | undefined;
|
|
780
|
+
ClusterOperationArn?: string | undefined;
|
|
781
|
+
}
|
|
670
782
|
export interface DeleteClusterRequest {
|
|
671
783
|
ClusterArn: string | undefined;
|
|
672
784
|
CurrentVersion?: string | undefined;
|
|
@@ -710,6 +822,25 @@ export interface DeleteVpcConnectionResponse {
|
|
|
710
822
|
VpcConnectionArn?: string | undefined;
|
|
711
823
|
State?: VpcConnectionState | undefined;
|
|
712
824
|
}
|
|
825
|
+
export interface DescribeChannelRequest {
|
|
826
|
+
ChannelArn: string | undefined;
|
|
827
|
+
ClusterArn: string | undefined;
|
|
828
|
+
}
|
|
829
|
+
export interface DescribeChannelResponse {
|
|
830
|
+
ChannelArn: string | undefined;
|
|
831
|
+
ChannelName: string | undefined;
|
|
832
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
833
|
+
IcebergDestinationConfiguration?: IcebergDestinationConfiguration | undefined;
|
|
834
|
+
S3DestinationConfiguration?: S3DestinationConfiguration | undefined;
|
|
835
|
+
Status: ChannelStatus | undefined;
|
|
836
|
+
DestinationType: ChannelDestinationType | undefined;
|
|
837
|
+
CreationTime: Date | undefined;
|
|
838
|
+
TopicConfigurationList: TopicConfiguration[] | undefined;
|
|
839
|
+
LoggingInfo?: ChannelLoggingInfo | undefined;
|
|
840
|
+
StateInfo?: ChannelStateInfo | undefined;
|
|
841
|
+
ClusterOperationArn?: string | undefined;
|
|
842
|
+
Tags?: Record<string, string> | undefined;
|
|
843
|
+
}
|
|
713
844
|
export interface DescribeClusterRequest {
|
|
714
845
|
ClusterArn: string | undefined;
|
|
715
846
|
}
|
|
@@ -848,6 +979,19 @@ export interface GetCompatibleKafkaVersionsRequest {
|
|
|
848
979
|
export interface GetCompatibleKafkaVersionsResponse {
|
|
849
980
|
CompatibleKafkaVersions?: CompatibleKafkaVersion[] | undefined;
|
|
850
981
|
}
|
|
982
|
+
export interface IcebergDestinationUpdate {
|
|
983
|
+
DataFreshnessInSeconds: number | undefined;
|
|
984
|
+
}
|
|
985
|
+
export interface ListChannelsRequest {
|
|
986
|
+
ClusterArn: string | undefined;
|
|
987
|
+
MaxResults?: number | undefined;
|
|
988
|
+
NextToken?: string | undefined;
|
|
989
|
+
TopicNameFilter?: string | undefined;
|
|
990
|
+
}
|
|
991
|
+
export interface ListChannelsResponse {
|
|
992
|
+
Channels?: ChannelInfo[] | undefined;
|
|
993
|
+
NextToken?: string | undefined;
|
|
994
|
+
}
|
|
851
995
|
export interface ListClientVpcConnectionsRequest {
|
|
852
996
|
ClusterArn: string | undefined;
|
|
853
997
|
MaxResults?: number | undefined;
|
|
@@ -1026,6 +1170,19 @@ export interface UpdateBrokerTypeResponse {
|
|
|
1026
1170
|
ClusterArn?: string | undefined;
|
|
1027
1171
|
ClusterOperationArn?: string | undefined;
|
|
1028
1172
|
}
|
|
1173
|
+
export interface S3DestinationUpdate {
|
|
1174
|
+
DataFreshnessInSeconds: number | undefined;
|
|
1175
|
+
}
|
|
1176
|
+
export interface UpdateChannelRequest {
|
|
1177
|
+
ChannelArn: string | undefined;
|
|
1178
|
+
ClusterArn: string | undefined;
|
|
1179
|
+
IcebergDestinationUpdate?: IcebergDestinationUpdate | undefined;
|
|
1180
|
+
S3DestinationUpdate?: S3DestinationUpdate | undefined;
|
|
1181
|
+
}
|
|
1182
|
+
export interface UpdateChannelResponse {
|
|
1183
|
+
ChannelArn: string | undefined;
|
|
1184
|
+
ClusterOperationArn?: string | undefined;
|
|
1185
|
+
}
|
|
1029
1186
|
export interface UpdateClusterConfigurationRequest {
|
|
1030
1187
|
ClusterArn: string | undefined;
|
|
1031
1188
|
ConfigurationInfo: ConfigurationInfo | undefined;
|
|
@@ -31,6 +31,10 @@ export declare var BrokerLogs$: StaticStructureSchema;
|
|
|
31
31
|
export declare var BrokerNodeGroupInfo$: StaticStructureSchema;
|
|
32
32
|
export declare var BrokerNodeInfo$: StaticStructureSchema;
|
|
33
33
|
export declare var BrokerSoftwareInfo$: StaticStructureSchema;
|
|
34
|
+
export declare var Catalog$: StaticStructureSchema;
|
|
35
|
+
export declare var ChannelInfo$: StaticStructureSchema;
|
|
36
|
+
export declare var ChannelLoggingInfo$: StaticStructureSchema;
|
|
37
|
+
export declare var ChannelStateInfo$: StaticStructureSchema;
|
|
34
38
|
export declare var ClientAuthentication$: StaticStructureSchema;
|
|
35
39
|
export declare var ClientVpcConnection$: StaticStructureSchema;
|
|
36
40
|
export declare var CloudWatchLogs$: StaticStructureSchema;
|
|
@@ -51,6 +55,8 @@ export declare var ConnectivityInfo$: StaticStructureSchema;
|
|
|
51
55
|
export declare var ConsumerGroupReplication$: StaticStructureSchema;
|
|
52
56
|
export declare var ConsumerGroupReplicationUpdate$: StaticStructureSchema;
|
|
53
57
|
export declare var ControllerNodeInfo$: StaticStructureSchema;
|
|
58
|
+
export declare var CreateChannelRequest$: StaticStructureSchema;
|
|
59
|
+
export declare var CreateChannelResponse$: StaticStructureSchema;
|
|
54
60
|
export declare var CreateClusterRequest$: StaticStructureSchema;
|
|
55
61
|
export declare var CreateClusterResponse$: StaticStructureSchema;
|
|
56
62
|
export declare var CreateClusterV2Request$: StaticStructureSchema;
|
|
@@ -63,6 +69,9 @@ export declare var CreateTopicRequest$: StaticStructureSchema;
|
|
|
63
69
|
export declare var CreateTopicResponse$: StaticStructureSchema;
|
|
64
70
|
export declare var CreateVpcConnectionRequest$: StaticStructureSchema;
|
|
65
71
|
export declare var CreateVpcConnectionResponse$: StaticStructureSchema;
|
|
72
|
+
export declare var DeadLetterQueueS3$: StaticStructureSchema;
|
|
73
|
+
export declare var DeleteChannelRequest$: StaticStructureSchema;
|
|
74
|
+
export declare var DeleteChannelResponse$: StaticStructureSchema;
|
|
66
75
|
export declare var DeleteClusterPolicyRequest$: StaticStructureSchema;
|
|
67
76
|
export declare var DeleteClusterPolicyResponse$: StaticStructureSchema;
|
|
68
77
|
export declare var DeleteClusterRequest$: StaticStructureSchema;
|
|
@@ -75,6 +84,8 @@ export declare var DeleteTopicRequest$: StaticStructureSchema;
|
|
|
75
84
|
export declare var DeleteTopicResponse$: StaticStructureSchema;
|
|
76
85
|
export declare var DeleteVpcConnectionRequest$: StaticStructureSchema;
|
|
77
86
|
export declare var DeleteVpcConnectionResponse$: StaticStructureSchema;
|
|
87
|
+
export declare var DescribeChannelRequest$: StaticStructureSchema;
|
|
88
|
+
export declare var DescribeChannelResponse$: StaticStructureSchema;
|
|
78
89
|
export declare var DescribeClusterOperationRequest$: StaticStructureSchema;
|
|
79
90
|
export declare var DescribeClusterOperationResponse$: StaticStructureSchema;
|
|
80
91
|
export declare var DescribeClusterOperationV2Request$: StaticStructureSchema;
|
|
@@ -95,8 +106,10 @@ export declare var DescribeTopicRequest$: StaticStructureSchema;
|
|
|
95
106
|
export declare var DescribeTopicResponse$: StaticStructureSchema;
|
|
96
107
|
export declare var DescribeVpcConnectionRequest$: StaticStructureSchema;
|
|
97
108
|
export declare var DescribeVpcConnectionResponse$: StaticStructureSchema;
|
|
109
|
+
export declare var DestinationTable$: StaticStructureSchema;
|
|
98
110
|
export declare var EBSStorageInfo$: StaticStructureSchema;
|
|
99
111
|
export declare var EncryptionAtRest$: StaticStructureSchema;
|
|
112
|
+
export declare var EncryptionConfiguration$: StaticStructureSchema;
|
|
100
113
|
export declare var EncryptionInfo$: StaticStructureSchema;
|
|
101
114
|
export declare var EncryptionInTransit$: StaticStructureSchema;
|
|
102
115
|
export declare var ErrorInfo$: StaticStructureSchema;
|
|
@@ -108,6 +121,8 @@ export declare var GetClusterPolicyResponse$: StaticStructureSchema;
|
|
|
108
121
|
export declare var GetCompatibleKafkaVersionsRequest$: StaticStructureSchema;
|
|
109
122
|
export declare var GetCompatibleKafkaVersionsResponse$: StaticStructureSchema;
|
|
110
123
|
export declare var Iam$: StaticStructureSchema;
|
|
124
|
+
export declare var IcebergDestinationConfiguration$: StaticStructureSchema;
|
|
125
|
+
export declare var IcebergDestinationUpdate$: StaticStructureSchema;
|
|
111
126
|
export declare var JmxExporter$: StaticStructureSchema;
|
|
112
127
|
export declare var JmxExporterInfo$: StaticStructureSchema;
|
|
113
128
|
export declare var KafkaCluster$: StaticStructureSchema;
|
|
@@ -119,6 +134,8 @@ export declare var KafkaClusterMTLSAuthentication$: StaticStructureSchema;
|
|
|
119
134
|
export declare var KafkaClusterSaslScramAuthentication$: StaticStructureSchema;
|
|
120
135
|
export declare var KafkaClusterSummary$: StaticStructureSchema;
|
|
121
136
|
export declare var KafkaVersion$: StaticStructureSchema;
|
|
137
|
+
export declare var ListChannelsRequest$: StaticStructureSchema;
|
|
138
|
+
export declare var ListChannelsResponse$: StaticStructureSchema;
|
|
122
139
|
export declare var ListClientVpcConnectionsRequest$: StaticStructureSchema;
|
|
123
140
|
export declare var ListClientVpcConnectionsResponse$: StaticStructureSchema;
|
|
124
141
|
export declare var ListClusterOperationsRequest$: StaticStructureSchema;
|
|
@@ -155,6 +172,8 @@ export declare var NodeExporterInfo$: StaticStructureSchema;
|
|
|
155
172
|
export declare var NodeInfo$: StaticStructureSchema;
|
|
156
173
|
export declare var OpenMonitoring$: StaticStructureSchema;
|
|
157
174
|
export declare var OpenMonitoringInfo$: StaticStructureSchema;
|
|
175
|
+
export declare var PartitionSource$: StaticStructureSchema;
|
|
176
|
+
export declare var PartitionSpec$: StaticStructureSchema;
|
|
158
177
|
export declare var Prometheus$: StaticStructureSchema;
|
|
159
178
|
export declare var PrometheusInfo$: StaticStructureSchema;
|
|
160
179
|
export declare var Provisioned$: StaticStructureSchema;
|
|
@@ -166,6 +185,8 @@ export declare var PutClusterPolicyResponse$: StaticStructureSchema;
|
|
|
166
185
|
export declare var Rebalancing$: StaticStructureSchema;
|
|
167
186
|
export declare var RebootBrokerRequest$: StaticStructureSchema;
|
|
168
187
|
export declare var RebootBrokerResponse$: StaticStructureSchema;
|
|
188
|
+
export declare var RecordConverter$: StaticStructureSchema;
|
|
189
|
+
export declare var RecordSchema$: StaticStructureSchema;
|
|
169
190
|
export declare var RejectClientVpcConnectionRequest$: StaticStructureSchema;
|
|
170
191
|
export declare var RejectClientVpcConnectionResponse$: StaticStructureSchema;
|
|
171
192
|
export declare var ReplicationInfo$: StaticStructureSchema;
|
|
@@ -180,7 +201,11 @@ export declare var ReplicatorLogDelivery$: StaticStructureSchema;
|
|
|
180
201
|
export declare var ReplicatorS3$: StaticStructureSchema;
|
|
181
202
|
export declare var ReplicatorSummary$: StaticStructureSchema;
|
|
182
203
|
export declare var S3$: StaticStructureSchema;
|
|
204
|
+
export declare var S3DestinationConfiguration$: StaticStructureSchema;
|
|
205
|
+
export declare var S3DestinationUpdate$: StaticStructureSchema;
|
|
206
|
+
export declare var S3Storage$: StaticStructureSchema;
|
|
183
207
|
export declare var Sasl$: StaticStructureSchema;
|
|
208
|
+
export declare var SchemaEvolution$: StaticStructureSchema;
|
|
184
209
|
export declare var Scram$: StaticStructureSchema;
|
|
185
210
|
export declare var Serverless$: StaticStructureSchema;
|
|
186
211
|
export declare var ServerlessClientAuthentication$: StaticStructureSchema;
|
|
@@ -189,8 +214,10 @@ export declare var ServerlessRequest$: StaticStructureSchema;
|
|
|
189
214
|
export declare var ServerlessSasl$: StaticStructureSchema;
|
|
190
215
|
export declare var StateInfo$: StaticStructureSchema;
|
|
191
216
|
export declare var StorageInfo$: StaticStructureSchema;
|
|
217
|
+
export declare var TableCreation$: StaticStructureSchema;
|
|
192
218
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
193
219
|
export declare var Tls$: StaticStructureSchema;
|
|
220
|
+
export declare var TopicConfiguration$: StaticStructureSchema;
|
|
194
221
|
export declare var TopicInfo$: StaticStructureSchema;
|
|
195
222
|
export declare var TopicPartitionInfo$: StaticStructureSchema;
|
|
196
223
|
export declare var TopicReplication$: StaticStructureSchema;
|
|
@@ -204,6 +231,8 @@ export declare var UpdateBrokerStorageRequest$: StaticStructureSchema;
|
|
|
204
231
|
export declare var UpdateBrokerStorageResponse$: StaticStructureSchema;
|
|
205
232
|
export declare var UpdateBrokerTypeRequest$: StaticStructureSchema;
|
|
206
233
|
export declare var UpdateBrokerTypeResponse$: StaticStructureSchema;
|
|
234
|
+
export declare var UpdateChannelRequest$: StaticStructureSchema;
|
|
235
|
+
export declare var UpdateChannelResponse$: StaticStructureSchema;
|
|
207
236
|
export declare var UpdateClusterConfigurationRequest$: StaticStructureSchema;
|
|
208
237
|
export declare var UpdateClusterConfigurationResponse$: StaticStructureSchema;
|
|
209
238
|
export declare var UpdateClusterKafkaVersionRequest$: StaticStructureSchema;
|
|
@@ -239,18 +268,21 @@ export declare var ZookeeperAccess$: StaticStructureSchema;
|
|
|
239
268
|
export declare var ZookeeperNodeInfo$: StaticStructureSchema;
|
|
240
269
|
export declare var BatchAssociateScramSecret$: StaticOperationSchema;
|
|
241
270
|
export declare var BatchDisassociateScramSecret$: StaticOperationSchema;
|
|
271
|
+
export declare var CreateChannel$: StaticOperationSchema;
|
|
242
272
|
export declare var CreateCluster$: StaticOperationSchema;
|
|
243
273
|
export declare var CreateClusterV2$: StaticOperationSchema;
|
|
244
274
|
export declare var CreateConfiguration$: StaticOperationSchema;
|
|
245
275
|
export declare var CreateReplicator$: StaticOperationSchema;
|
|
246
276
|
export declare var CreateTopic$: StaticOperationSchema;
|
|
247
277
|
export declare var CreateVpcConnection$: StaticOperationSchema;
|
|
278
|
+
export declare var DeleteChannel$: StaticOperationSchema;
|
|
248
279
|
export declare var DeleteCluster$: StaticOperationSchema;
|
|
249
280
|
export declare var DeleteClusterPolicy$: StaticOperationSchema;
|
|
250
281
|
export declare var DeleteConfiguration$: StaticOperationSchema;
|
|
251
282
|
export declare var DeleteReplicator$: StaticOperationSchema;
|
|
252
283
|
export declare var DeleteTopic$: StaticOperationSchema;
|
|
253
284
|
export declare var DeleteVpcConnection$: StaticOperationSchema;
|
|
285
|
+
export declare var DescribeChannel$: StaticOperationSchema;
|
|
254
286
|
export declare var DescribeCluster$: StaticOperationSchema;
|
|
255
287
|
export declare var DescribeClusterOperation$: StaticOperationSchema;
|
|
256
288
|
export declare var DescribeClusterOperationV2$: StaticOperationSchema;
|
|
@@ -264,6 +296,7 @@ export declare var DescribeVpcConnection$: StaticOperationSchema;
|
|
|
264
296
|
export declare var GetBootstrapBrokers$: StaticOperationSchema;
|
|
265
297
|
export declare var GetClusterPolicy$: StaticOperationSchema;
|
|
266
298
|
export declare var GetCompatibleKafkaVersions$: StaticOperationSchema;
|
|
299
|
+
export declare var ListChannels$: StaticOperationSchema;
|
|
267
300
|
export declare var ListClientVpcConnections$: StaticOperationSchema;
|
|
268
301
|
export declare var ListClusterOperations$: StaticOperationSchema;
|
|
269
302
|
export declare var ListClusterOperationsV2$: StaticOperationSchema;
|
|
@@ -286,6 +319,7 @@ export declare var UntagResource$: StaticOperationSchema;
|
|
|
286
319
|
export declare var UpdateBrokerCount$: StaticOperationSchema;
|
|
287
320
|
export declare var UpdateBrokerStorage$: StaticOperationSchema;
|
|
288
321
|
export declare var UpdateBrokerType$: StaticOperationSchema;
|
|
322
|
+
export declare var UpdateChannel$: StaticOperationSchema;
|
|
289
323
|
export declare var UpdateClusterConfiguration$: StaticOperationSchema;
|
|
290
324
|
export declare var UpdateClusterKafkaVersion$: StaticOperationSchema;
|
|
291
325
|
export declare var UpdateConfiguration$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kafka",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1099.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Kafka Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-kafka",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@aws-sdk/core": "^3.977.
|
|
50
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
49
|
+
"@aws-sdk/core": "^3.977.3",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.75",
|
|
51
51
|
"@aws-sdk/types": "^3.974.2",
|
|
52
|
-
"@smithy/core": "^3.
|
|
53
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
54
|
-
"@smithy/node-http-handler": "^4.9.
|
|
52
|
+
"@smithy/core": "^3.31.1",
|
|
53
|
+
"@smithy/fetch-http-handler": "^5.6.13",
|
|
54
|
+
"@smithy/node-http-handler": "^4.9.13",
|
|
55
55
|
"@smithy/types": "^4.16.1",
|
|
56
56
|
"tslib": "^2.6.2"
|
|
57
57
|
},
|