aws-cdk-lib.aws_kinesis.CfnStreamConsumerProps

interface CfnStreamConsumerProps

LanguageType name
.NETAmazon.CDK.AWS.Kinesis.CfnStreamConsumerProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesis#CfnStreamConsumerProps
Javasoftware.amazon.awscdk.services.kinesis.CfnStreamConsumerProps
Pythonaws_cdk.aws_kinesis.CfnStreamConsumerProps
TypeScript aws-cdk-lib » aws_kinesis » CfnStreamConsumerProps

Properties for defining a CfnStreamConsumer.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kinesis as kinesis } from 'aws-cdk-lib';
const cfnStreamConsumerProps: kinesis.CfnStreamConsumerProps = {
  consumerName: 'consumerName',
  streamArn: 'streamArn',
};

Properties

NameTypeDescription
consumerNamestringThe name of the consumer is something you choose when you register the consumer.
streamArnstringThe ARN of the stream with which you registered the consumer.

consumerName

Type: string

The name of the consumer is something you choose when you register the consumer.


streamArn

Type: string

The ARN of the stream with which you registered the consumer.