Class CfnApplicationOutput.OutputProperty
Describes application output configuration in which you identify an in-application stream and a destination where you want the in-application stream data to be written.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.KinesisAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationOutput.OutputProperty : CfnApplicationOutput.IOutputProperty
Syntax (vb)
Public Class CfnApplicationOutput.OutputProperty Implements CfnApplicationOutput.IOutputProperty
Remarks
The destination can be an Amazon Kinesis stream or an Amazon Kinesis Firehose delivery stream.
For limits on how many destinations an application can write and other limitations, see Limits .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.KinesisAnalytics;
var outputProperty = new OutputProperty {
DestinationSchema = new DestinationSchemaProperty {
RecordFormatType = "recordFormatType"
},
// the properties below are optional
KinesisFirehoseOutput = new KinesisFirehoseOutputProperty {
ResourceArn = "resourceArn",
RoleArn = "roleArn"
},
KinesisStreamsOutput = new KinesisStreamsOutputProperty {
ResourceArn = "resourceArn",
RoleArn = "roleArn"
},
LambdaOutput = new LambdaOutputProperty {
ResourceArn = "resourceArn",
RoleArn = "roleArn"
},
Name = "name"
};
Synopsis
Constructors
OutputProperty() | Describes application output configuration in which you identify an in-application stream and a destination where you want the in-application stream data to be written. |
Properties
DestinationSchema | Describes the data format when records are written to the destination. |
KinesisFirehoseOutput | Identifies an Amazon Kinesis Firehose delivery stream as the destination. |
KinesisStreamsOutput | Identifies an Amazon Kinesis stream as the destination. |
LambdaOutput | Identifies an AWS Lambda function as the destination. |
Name | Name of the in-application stream. |
Constructors
OutputProperty()
Describes application output configuration in which you identify an in-application stream and a destination where you want the in-application stream data to be written.
public OutputProperty()
Remarks
The destination can be an Amazon Kinesis stream or an Amazon Kinesis Firehose delivery stream.
For limits on how many destinations an application can write and other limitations, see Limits .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.KinesisAnalytics;
var outputProperty = new OutputProperty {
DestinationSchema = new DestinationSchemaProperty {
RecordFormatType = "recordFormatType"
},
// the properties below are optional
KinesisFirehoseOutput = new KinesisFirehoseOutputProperty {
ResourceArn = "resourceArn",
RoleArn = "roleArn"
},
KinesisStreamsOutput = new KinesisStreamsOutputProperty {
ResourceArn = "resourceArn",
RoleArn = "roleArn"
},
LambdaOutput = new LambdaOutputProperty {
ResourceArn = "resourceArn",
RoleArn = "roleArn"
},
Name = "name"
};
Properties
DestinationSchema
Describes the data format when records are written to the destination.
public object DestinationSchema { get; set; }
Property Value
Remarks
KinesisFirehoseOutput
Identifies an Amazon Kinesis Firehose delivery stream as the destination.
public object? KinesisFirehoseOutput { get; set; }
Property Value
Remarks
KinesisStreamsOutput
Identifies an Amazon Kinesis stream as the destination.
public object? KinesisStreamsOutput { get; set; }
Property Value
Remarks
LambdaOutput
Identifies an AWS Lambda function as the destination.
public object? LambdaOutput { get; set; }
Property Value
Remarks
Name
Name of the in-application stream.
public string? Name { get; set; }