interface PipeSourceManagedStreamingKafkaParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pipes.Mixins.CfnPipePropsMixin.PipeSourceManagedStreamingKafkaParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspipes/mixins#CfnPipePropsMixin_PipeSourceManagedStreamingKafkaParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.pipes.mixins.CfnPipePropsMixin.PipeSourceManagedStreamingKafkaParametersProperty |
Python | aws_cdk.mixins_preview.aws_pipes.mixins.CfnPipePropsMixin.PipeSourceManagedStreamingKafkaParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pipes » mixins » CfnPipePropsMixin » PipeSourceManagedStreamingKafkaParametersProperty |
The parameters for using an MSK stream as a source.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pipes_mixins } from '@aws-cdk/mixins-preview/aws-pipes';
const pipeSourceManagedStreamingKafkaParametersProperty: pipes_mixins.CfnPipePropsMixin.PipeSourceManagedStreamingKafkaParametersProperty = {
batchSize: 123,
consumerGroupId: 'consumerGroupId',
credentials: {
clientCertificateTlsAuth: 'clientCertificateTlsAuth',
saslScram512Auth: 'saslScram512Auth',
},
maximumBatchingWindowInSeconds: 123,
startingPosition: 'startingPosition',
topicName: 'topicName',
};
Properties
| Name | Type | Description |
|---|---|---|
| batch | number | The maximum number of records to include in each batch. |
| consumer | string | The name of the destination queue to consume. |
| credentials? | IResolvable | MSKAccess | The credentials needed to access the resource. |
| maximum | number | The maximum length of a time to wait for events. |
| starting | string | The position in a stream from which to start reading. |
| topic | string | The name of the topic that the pipe will read from. |
batchSize?
Type:
number
(optional)
The maximum number of records to include in each batch.
consumerGroupId?
Type:
string
(optional)
The name of the destination queue to consume.
credentials?
Type:
IResolvable | MSKAccess
(optional)
The credentials needed to access the resource.
maximumBatchingWindowInSeconds?
Type:
number
(optional)
The maximum length of a time to wait for events.
startingPosition?
Type:
string
(optional)
The position in a stream from which to start reading.
topicName?
Type:
string
(optional)
The name of the topic that the pipe will read from.

.NET
Go
Java
Python
TypeScript