Interface CfnStreamConsumerProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStreamConsumerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:39.617Z")
@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") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnStreamConsumerProps
static final class
An implementation forCfnStreamConsumerProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the consumer is something you choose when you register the consumer.The ARN of the stream with which you registered the consumer.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. -
getStreamArn
The ARN of the stream with which you registered the consumer. -
builder
- Returns:
- a
CfnStreamConsumerProps.Builder
ofCfnStreamConsumerProps
-