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();
 

See Also: