CfnStreamConsumerMixinProps

class aws_cdk.mixins_preview.aws_kinesis.mixins.CfnStreamConsumerMixinProps(*, consumer_name=None, stream_arn=None, tags=None)

Bases: object

Properties for CfnStreamConsumerPropsMixin.

Parameters:
  • consumer_name (Optional[str]) – The name of the consumer is something you choose when you register the consumer.

  • stream_arn (Optional[str]) – The ARN of the stream with which you registered the consumer.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – 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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_kinesis import mixins as kinesis_mixins

cfn_stream_consumer_mixin_props = kinesis_mixins.CfnStreamConsumerMixinProps(
    consumer_name="consumerName",
    stream_arn="streamArn",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

consumer_name

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

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername

stream_arn

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

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn

tags

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-tags