@Stability(value=Stable)
public static interface CfnApplicationOutputV2.OutputProperty
extends software.amazon.jsii.JsiiSerializable
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() |
Object |
getDestinationSchema()
Describes the data format when records are written to the destination.
|
default Object |
getKinesisFirehoseOutput()
Identifies a Kinesis Data Firehose delivery stream as the destination.
|
default Object |
getKinesisStreamsOutput()
Identifies a Kinesis data stream as the destination.
|
default Object |
getLambdaOutput()
Identifies an Amazon Lambda function as the destination.
|
default String |
getName()
The name of the in-application stream.
|
@Stability(value=Stable) @NotNull Object getDestinationSchema()
@Stability(value=Stable) @Nullable default Object getKinesisFirehoseOutput()
@Stability(value=Stable) @Nullable default Object getKinesisStreamsOutput()
@Stability(value=Stable) @Nullable default Object getLambdaOutput()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) static CfnApplicationOutputV2.OutputProperty.Builder builder()
Copyright © 2022. All rights reserved.