Interface CfnApplicationOutput.OutputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationOutput.OutputProperty.Jsii$Proxy
- Enclosing class:
- CfnApplicationOutput
@Stability(Stable)
public static interface CfnApplicationOutput.OutputProperty
extends software.amazon.jsii.JsiiSerializable
Describes a SQL-based Kinesis Data Analytics application's output configuration, in which you identify an in-application stream and a destination where you want the in-application stream data to be written.
The destination can be a Kinesis data stream or a Kinesis Data Firehose 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.kinesisanalyticsv2.*;
OutputProperty outputProperty = OutputProperty.builder()
.destinationSchema(DestinationSchemaProperty.builder()
.recordFormatType("recordFormatType")
.build())
// the properties below are optional
.kinesisFirehoseOutput(KinesisFirehoseOutputProperty.builder()
.resourceArn("resourceArn")
.build())
.kinesisStreamsOutput(KinesisStreamsOutputProperty.builder()
.resourceArn("resourceArn")
.build())
.lambdaOutput(LambdaOutputProperty.builder()
.resourceArn("resourceArn")
.build())
.name("name")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationOutput.OutputPropertystatic final classAn implementation forCfnApplicationOutput.OutputProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Describes the data format when records are written to the destination.default ObjectIdentifies a Kinesis Data Firehose delivery stream as the destination.default ObjectIdentifies a Kinesis data stream as the destination.default ObjectIdentifies an Amazon Lambda function as the destination.default StringgetName()The name of the in-application stream.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationSchema
Describes the data format when records are written to the destination. -
getKinesisFirehoseOutput
Identifies a Kinesis Data Firehose delivery stream as the destination. -
getKinesisStreamsOutput
Identifies a Kinesis data stream as the destination. -
getLambdaOutput
Identifies an Amazon Lambda function as the destination. -
getName
The name of the in-application stream. -
builder
-