package awskinesisanalytics // For a SQL-based Kinesis Data Analytics application, identifies a Kinesis Data Firehose delivery stream as the streaming source. // // You provide the delivery stream's Amazon Resource Name (ARN). // // 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" // // kinesisFirehoseInputProperty := &KinesisFirehoseInputProperty{ // ResourceArn: jsii.String("resourceArn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-kinesisfirehoseinput.html // type CfnApplicationV2_KinesisFirehoseInputProperty struct { // The Amazon Resource Name (ARN) of the delivery stream. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-kinesisfirehoseinput.html#cfn-kinesisanalyticsv2-application-kinesisfirehoseinput-resourcearn // ResourceArn *string `field:"required" json:"resourceArn" yaml:"resourceArn"` }