Interface CfnApplicationOutputProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationOutputProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:33.111Z")
@Stability(Stable)
public interface CfnApplicationOutputProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnApplicationOutput
.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationOutputProps
static final class
An implementation forCfnApplicationOutputProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the application.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.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationName
The name of the application.- See Also:
-
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.The destination can be a Kinesis data stream or a Kinesis Data Firehose delivery stream.
- See Also:
-
builder
- Returns:
- a
CfnApplicationOutputProps.Builder
ofCfnApplicationOutputProps
-