@Generated(value="jsii-pacmak/1.60.0 (build ebcefe6)",
date="2022-06-22T23:27:51.404Z")
public interface CfnApplicationOutputProps
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.*; CfnApplicationOutputProps cfnApplicationOutputProps = CfnApplicationOutputProps.builder() .applicationName("applicationName") .output(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()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnApplicationOutputProps.Builder
A builder for
CfnApplicationOutputProps |
static class |
CfnApplicationOutputProps.Jsii$Proxy
An implementation for
CfnApplicationOutputProps |
Modifier and Type | Method and Description |
---|---|
static CfnApplicationOutputProps.Builder |
builder() |
java.lang.String |
getApplicationName()
The name of the application.
|
java.lang.Object |
getOutput()
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.
|
java.lang.String getApplicationName()
java.lang.Object getOutput()
The destination can be a Kinesis data stream or a Kinesis Data Firehose delivery stream.
static CfnApplicationOutputProps.Builder builder()
CfnApplicationOutputProps.Builder
of CfnApplicationOutputProps