Interface CfnApplication.KinesisFirehoseInputProperty

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

@Stability(Stable) public static interface CfnApplication.KinesisFirehoseInputProperty extends software.amazon.jsii.JsiiSerializable
Identifies an Amazon Kinesis Firehose delivery stream as the streaming source.

You provide the delivery stream's Amazon Resource Name (ARN) and an IAM role ARN that enables Amazon Kinesis Analytics to access the stream on your behalf.

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.kinesisanalytics.*;
 KinesisFirehoseInputProperty kinesisFirehoseInputProperty = KinesisFirehoseInputProperty.builder()
         .resourceArn("resourceArn")
         .roleArn("roleArn")
         .build();
 

See Also: