Interface CfnDeliveryStream.KinesisStreamSourceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStream.KinesisStreamSourceConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStream
@Stability(Stable)
public static interface CfnDeliveryStream.KinesisStreamSourceConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The
KinesisStreamSourceConfiguration
property type specifies the stream and role Amazon Resource Names (ARNs) for a Kinesis stream used as the source for a delivery stream.
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.kinesisfirehose.*; KinesisStreamSourceConfigurationProperty kinesisStreamSourceConfigurationProperty = KinesisStreamSourceConfigurationProperty.builder() .kinesisStreamArn("kinesisStreamArn") .roleArn("roleArn") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnDeliveryStream.KinesisStreamSourceConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The ARN of the source Kinesis data stream.The ARN of the role that provides access to the source Kinesis data stream.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKinesisStreamArn
The ARN of the source Kinesis data stream. -
getRoleArn
The ARN of the role that provides access to the source Kinesis data stream. -
builder
@Stability(Stable) static CfnDeliveryStream.KinesisStreamSourceConfigurationProperty.Builder builder()
-