package awskinesisanalyticsv2 // For a SQL-based Kinesis Data Analytics application, when configuring application output, identifies a Kinesis Data Firehose delivery stream as the destination. // // You provide the stream Amazon Resource Name (ARN) of the delivery stream. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // kinesisFirehoseOutputProperty := &KinesisFirehoseOutputProperty{ // ResourceArn: jsii.String("resourceArn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput.html // type CfnApplicationOutput_KinesisFirehoseOutputProperty struct { // The ARN of the destination delivery stream to write to. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalyticsv2-applicationoutput-kinesisfirehoseoutput-resourcearn // ResourceArn *string `field:"required" json:"resourceArn" yaml:"resourceArn"` }