interface CfnStreamConsumerMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Kinesis.Mixins.CfnStreamConsumerMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesis/mixins#CfnStreamConsumerMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.kinesis.mixins.CfnStreamConsumerMixinProps |
Python | aws_cdk.mixins_preview.aws_kinesis.mixins.CfnStreamConsumerMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_kinesis » mixins » CfnStreamConsumerMixinProps |
Properties for CfnStreamConsumerPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as kinesis_mixins } from '@aws-cdk/mixins-preview/aws-kinesis';
const cfnStreamConsumerMixinProps: kinesis_mixins.CfnStreamConsumerMixinProps = {
consumerName: 'consumerName',
streamArn: 'streamArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| consumer | string | The name of the consumer is something you choose when you register the consumer. |
| stream | string | The ARN of the stream with which you registered the consumer. |
| tags? | Cfn[] | An array of tags to be added to a specified Kinesis resource. |
consumerName?
Type:
string
(optional)
The name of the consumer is something you choose when you register the consumer.
streamArn?
Type:
string
(optional)
The ARN of the stream with which you registered the consumer.
tags?
Type:
Cfn[]
(optional)
An array of tags to be added to a specified Kinesis resource.
A tag consists of a required key and an optional value. You can specify up to 50 tag key-value pairs.

.NET
Go
Java
Python
TypeScript