interface CfnStreamConsumerMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Kinesis.CfnStreamConsumerMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskinesis#CfnStreamConsumerMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.kinesis.CfnStreamConsumerMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_kinesis.CfnStreamConsumerMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kinesis » 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 { aws_kinesis as kinesis } from '@aws-cdk/cfn-property-mixins';
const cfnStreamConsumerMixinProps: kinesis.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