Interface CfnApplicationOutputPropsMixin.OutputProperty

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

@Stability(Stable) public static interface CfnApplicationOutputPropsMixin.OutputProperty extends software.amazon.jsii.JsiiSerializable
Describes application 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 an Amazon Kinesis stream or an Amazon Kinesis Firehose delivery stream.

For limits on how many destinations an application can write and other limitations, see Limits .

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.kinesisanalytics.*;
 OutputProperty outputProperty = OutputProperty.builder()
         .destinationSchema(DestinationSchemaProperty.builder()
                 .recordFormatType("recordFormatType")
                 .build())
         .kinesisFirehoseOutput(KinesisFirehoseOutputProperty.builder()
                 .resourceArn("resourceArn")
                 .roleArn("roleArn")
                 .build())
         .kinesisStreamsOutput(KinesisStreamsOutputProperty.builder()
                 .resourceArn("resourceArn")
                 .roleArn("roleArn")
                 .build())
         .lambdaOutput(LambdaOutputProperty.builder()
                 .resourceArn("resourceArn")
                 .roleArn("roleArn")
                 .build())
         .name("name")
         .build();
 

See Also: