Interface CfnStreamConsumerProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStreamConsumerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:11.729Z")
@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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStreamConsumerPropsstatic final classAn 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.- See Also:
-
getStreamArn
The ARN of the stream with which you registered the consumer.- See Also:
-
builder
- Returns:
- a
CfnStreamConsumerProps.BuilderofCfnStreamConsumerProps
-