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.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.KinesisAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class OutputProperty : Object, CfnApplicationOutput.IOutputProperty
Syntax (vb)
Public Class OutputProperty
Inherits Object
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
Output |
Properties
Destination |
Describes the data format when records are written to the destination. |
Kinesis |
Identifies an Amazon Kinesis Firehose delivery stream as the destination. |
Kinesis |
Identifies an Amazon Kinesis stream as the destination. |
Lambda |
Identifies an AWS Lambda function as the destination. |
Name | Name of the in-application stream. |
Constructors
OutputProperty()
public OutputProperty()
Properties
DestinationSchema
Describes the data format when records are written to the destination.
public object DestinationSchema { get; set; }
Property Value
System.
Remarks
KinesisFirehoseOutput
Identifies an Amazon Kinesis Firehose delivery stream as the destination.
public object KinesisFirehoseOutput { get; set; }
Property Value
System.
Remarks
KinesisStreamsOutput
Identifies an Amazon Kinesis stream as the destination.
public object KinesisStreamsOutput { get; set; }
Property Value
System.
Remarks
LambdaOutput
Identifies an AWS Lambda function as the destination.
public object LambdaOutput { get; set; }
Property Value
System.
Remarks
Name
Name of the in-application stream.
public string Name { get; set; }
Property Value
System.