Interface CfnApplicationOutput.KinesisStreamsOutputProperty

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

@Stability(Stable) public static interface CfnApplicationOutput.KinesisStreamsOutputProperty extends software.amazon.jsii.JsiiSerializable
When you configure a SQL-based Kinesis Data Analytics application's output, identifies a Kinesis data stream as the destination.

You provide the stream Amazon Resource Name (ARN).

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.kinesisanalyticsv2.*;
 KinesisStreamsOutputProperty kinesisStreamsOutputProperty = KinesisStreamsOutputProperty.builder()
         .resourceArn("resourceArn")
         .build();