Interface CfnStreamConsumerProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStreamConsumerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:40.720Z")
@Stability(Stable)
public interface CfnStreamConsumerProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kinesis.*;
CfnStreamConsumerProps cfnStreamConsumerProps = CfnStreamConsumerProps.builder()
.consumerName("consumerName")
.streamArn("streamArn")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStreamConsumerPropsstatic final classAn implementation forCfnStreamConsumerProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConsumerName
The name of the consumer is something you choose when you register the consumer.- See Also:
-
getStreamArn
The ARN of the stream with which you registered the consumer.- See Also:
-
getTags
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 Also:
-
builder
- Returns:
- a
CfnStreamConsumerProps.BuilderofCfnStreamConsumerProps
-