@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:36.528Z") @Stability(value=Stable) public interface CfnApplicationOutputProps extends software.amazon.jsii.JsiiSerializable
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();
| 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() |
String |
getApplicationName()
Name of the application to which you want to add the output configuration.
|
Object |
getOutput()
An array of objects, each describing one output configuration.
|
@Stability(value=Stable) @NotNull String getApplicationName()
@Stability(value=Stable) @NotNull Object getOutput()
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.
@Stability(value=Stable) static CfnApplicationOutputProps.Builder builder()
CfnApplicationOutputProps.Builder of CfnApplicationOutputPropsCopyright © 2022. All rights reserved.