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 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.services.kinesisanalytics.*;
 OutputProperty outputProperty = OutputProperty.builder()
         .destinationSchema(DestinationSchemaProperty.builder()
                 .recordFormatType("recordFormatType")
                 .build())
         // the properties below are optional
         .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();
 
  • Method Details

    • getDestinationSchema

      @Stability(Stable) @NotNull Object getDestinationSchema()
      Describes the data format when records are written to the destination.

      For more information, see Configuring Application Output .

    • getKinesisFirehoseOutput

      @Stability(Stable) @Nullable default Object getKinesisFirehoseOutput()
      Identifies an Amazon Kinesis Firehose delivery stream as the destination.
    • getKinesisStreamsOutput

      @Stability(Stable) @Nullable default Object getKinesisStreamsOutput()
      Identifies an Amazon Kinesis stream as the destination.
    • getLambdaOutput

      @Stability(Stable) @Nullable default Object getLambdaOutput()
      Identifies an AWS Lambda function as the destination.
    • getName

      @Stability(Stable) @Nullable default String getName()
      Name of the in-application stream.
    • builder

      @Stability(Stable) static CfnApplicationOutput.OutputProperty.Builder builder()
      Returns:
      a CfnApplicationOutput.OutputProperty.Builder of CfnApplicationOutput.OutputProperty