Interface CfnStreamConsumerProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStreamConsumerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)",
date="2025-09-02T11:25:33.573Z")
@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 class
A builder forCfnStreamConsumerProps
static final class
An 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.Builder
ofCfnStreamConsumerProps
-