public static interface CfnApplicationOutputV2.OutputProperty
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.kinesisanalytics.*; 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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnApplicationOutputV2.OutputProperty.Builder
A builder for
CfnApplicationOutputV2.OutputProperty |
static class |
CfnApplicationOutputV2.OutputProperty.Jsii$Proxy
An implementation for
CfnApplicationOutputV2.OutputProperty |
Modifier and Type | Method and Description |
---|---|
static CfnApplicationOutputV2.OutputProperty.Builder |
builder() |
java.lang.Object |
getDestinationSchema()
Describes the data format when records are written to the destination.
|
default java.lang.Object |
getKinesisFirehoseOutput()
Identifies a Kinesis Data Firehose delivery stream as the destination.
|
default java.lang.Object |
getKinesisStreamsOutput()
Identifies a Kinesis data stream as the destination.
|
default java.lang.Object |
getLambdaOutput()
Identifies an Amazon Lambda function as the destination.
|
default java.lang.String |
getName()
The name of the in-application stream.
|
java.lang.Object getDestinationSchema()
default java.lang.Object getKinesisFirehoseOutput()
default java.lang.Object getKinesisStreamsOutput()
default java.lang.Object getLambdaOutput()
default java.lang.String getName()
static CfnApplicationOutputV2.OutputProperty.Builder builder()