StreamConsumerAttributes
- class aws_cdk.aws_kinesis.StreamConsumerAttributes(*, stream_consumer_arn)
- Bases: - object- A reference to a StreamConsumer, which can be imported using - StreamConsumer.fromStreamConsumerAttributes.- Parameters:
- stream_consumer_arn ( - str) – The Amazon Resource Name (ARN) of the stream consumer.
- 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 import aws_kinesis as kinesis stream_consumer_attributes = kinesis.StreamConsumerAttributes( stream_consumer_arn="streamConsumerArn" ) - Attributes - stream_consumer_arn
- The Amazon Resource Name (ARN) of the stream consumer.