Interface CfnPipe.IPipeSourceManagedStreamingKafkaParametersProperty
The parameters for using an MSK stream as a source.
Namespace: Amazon.CDK.AWS.Pipes
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IPipeSourceManagedStreamingKafkaParametersProperty
Syntax (vb)
Public Interface IPipeSourceManagedStreamingKafkaParametersProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Pipes;
var pipeSourceManagedStreamingKafkaParametersProperty = new PipeSourceManagedStreamingKafkaParametersProperty {
TopicName = "topicName",
// the properties below are optional
BatchSize = 123,
ConsumerGroupId = "consumerGroupId",
Credentials = new MSKAccessCredentialsProperty {
ClientCertificateTlsAuth = "clientCertificateTlsAuth",
SaslScram512Auth = "saslScram512Auth"
},
MaximumBatchingWindowInSeconds = 123,
StartingPosition = "startingPosition"
};
Synopsis
Properties
Batch |
The maximum number of records to include in each batch. |
Consumer |
The name of the destination queue to consume. |
Credentials | The credentials needed to access the resource. |
Maximum |
The maximum length of a time to wait for events. |
Starting |
The position in a stream from which to start reading. |
Topic |
The name of the topic that the pipe will read from. |
Properties
BatchSize
The maximum number of records to include in each batch.
virtual Nullable<double> BatchSize { get; }
Property Value
System.
Remarks
ConsumerGroupId
The name of the destination queue to consume.
virtual string ConsumerGroupId { get; }
Property Value
System.
Remarks
Credentials
The credentials needed to access the resource.
virtual object Credentials { get; }
Property Value
System.
Remarks
MaximumBatchingWindowInSeconds
The maximum length of a time to wait for events.
virtual Nullable<double> MaximumBatchingWindowInSeconds { get; }
Property Value
System.
Remarks
StartingPosition
The position in a stream from which to start reading.
virtual string StartingPosition { get; }
Property Value
System.
Remarks
TopicName
The name of the topic that the pipe will read from.
string TopicName { get; }
Property Value
System.