interface MSKSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisFirehose.Mixins.CfnDeliveryStreamPropsMixin.MSKSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisfirehose/mixins#CfnDeliveryStreamPropsMixin_MSKSourceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.MSKSourceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.MSKSourceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisfirehose » mixins » CfnDeliveryStreamPropsMixin » MSKSourceConfigurationProperty |
The configuration for the Amazon MSK cluster to be used as the source for a delivery stream.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as kinesisfirehose_mixins } from '@aws-cdk/mixins-preview/aws-kinesisfirehose';
const mSKSourceConfigurationProperty: kinesisfirehose_mixins.CfnDeliveryStreamPropsMixin.MSKSourceConfigurationProperty = {
authenticationConfiguration: {
connectivity: 'connectivity',
roleArn: 'roleArn',
},
mskClusterArn: 'mskClusterArn',
readFromTimestamp: 'readFromTimestamp',
topicName: 'topicName',
};
Properties
| Name | Type | Description |
|---|---|---|
| authentication | IResolvable | Authentication | The authentication configuration of the Amazon MSK cluster. |
| msk | string | The ARN of the Amazon MSK cluster. |
| read | string | The start date and time in UTC for the offset position within your MSK topic from where Firehose begins to read. |
| topic | string | The topic name within the Amazon MSK cluster. |
authenticationConfiguration?
Type:
IResolvable | Authentication
(optional)
The authentication configuration of the Amazon MSK cluster.
mskClusterArn?
Type:
string
(optional)
The ARN of the Amazon MSK cluster.
readFromTimestamp?
Type:
string
(optional)
The start date and time in UTC for the offset position within your MSK topic from where Firehose begins to read.
By default, this is set to timestamp when Firehose becomes Active.
If you want to create a Firehose stream with Earliest start position from SDK or CLI, you need to set the ReadFromTimestamp parameter to Epoch (1970-01-01T00:00:00Z).
topicName?
Type:
string
(optional)
The topic name within the Amazon MSK cluster.

.NET
Go
Java
Python
TypeScript