Interface CfnStreamConsumerMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStreamConsumerMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:00.671Z")
@Stability(Stable)
public interface CfnStreamConsumerMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnStreamConsumerPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.kinesis.*;
CfnStreamConsumerMixinProps cfnStreamConsumerMixinProps = CfnStreamConsumerMixinProps.builder()
.consumerName("consumerName")
.streamArn("streamArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStreamConsumerMixinPropsstatic final classAn implementation forCfnStreamConsumerMixinProps -
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
-