Interface CfnApplicationOutputProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationOutputProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:58.233Z")
@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.kinesisanalytics.*; 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") .roleArn("roleArn") .build()) .kinesisStreamsOutput(KinesisStreamsOutputProperty.builder() .resourceArn("resourceArn") .roleArn("roleArn") .build()) .lambdaOutput(LambdaOutputProperty.builder() .resourceArn("resourceArn") .roleArn("roleArn") .build()) .name("name") .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationOutputProps
static final class
An implementation forCfnApplicationOutputProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Name of the application to which you want to add the output configuration.An array of objects, each describing one output configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationName
Name of the application to which you want to add the output configuration. -
getOutput
An array of objects, each describing one output configuration.In the output configuration, you specify the name of an in-application stream, a destination (that is, an Amazon Kinesis stream, an Amazon Kinesis Firehose delivery stream, or an AWS Lambda function), and record the formation to use when writing to the destination.
-
builder
- Returns:
- a
CfnApplicationOutputProps.Builder
ofCfnApplicationOutputProps
-