aws-cdk-lib.aws_kinesisanalytics.CfnApplicationOutputProps

interface CfnApplicationOutputProps

LanguageType name
.NETAmazon.CDK.AWS.KinesisAnalytics.CfnApplicationOutputProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalytics#CfnApplicationOutputProps
Javasoftware.amazon.awscdk.services.kinesisanalytics.CfnApplicationOutputProps
Pythonaws_cdk.aws_kinesisanalytics.CfnApplicationOutputProps
TypeScript aws-cdk-lib » aws_kinesisanalytics » CfnApplicationOutputProps

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 { aws_kinesisanalytics as kinesisanalytics } from 'aws-cdk-lib';
const cfnApplicationOutputProps: kinesisanalytics.CfnApplicationOutputProps = {
  applicationName: 'applicationName',
  output: {
    destinationSchema: {
      recordFormatType: 'recordFormatType',
    },

    // the properties below are optional
    kinesisFirehoseOutput: {
      resourceArn: 'resourceArn',
      roleArn: 'roleArn',
    },
    kinesisStreamsOutput: {
      resourceArn: 'resourceArn',
      roleArn: 'roleArn',
    },
    lambdaOutput: {
      resourceArn: 'resourceArn',
      roleArn: 'roleArn',
    },
    name: 'name',
  },
};

Properties

NameTypeDescription
applicationNamestringName of the application to which you want to add the output configuration.
outputIResolvable | OutputPropertyAn array of objects, each describing one output configuration.

applicationName

Type: string

Name of the application to which you want to add the output configuration.


output

Type: IResolvable | OutputProperty

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.