Interface CfnDeliveryStreamPropsMixin.KinesisStreamSourceConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeliveryStreamPropsMixin.KinesisStreamSourceConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDeliveryStreamPropsMixin

@Stability(Stable) public static interface CfnDeliveryStreamPropsMixin.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.cfnpropertymixins.services.kinesisfirehose.*;
 KinesisStreamSourceConfigurationProperty kinesisStreamSourceConfigurationProperty = KinesisStreamSourceConfigurationProperty.builder()
         .kinesisStreamArn("kinesisStreamArn")
         .roleArn("roleArn")
         .build();
 

See Also: