package awskinesisanalytics // When configuring application output, identifies an Amazon Kinesis Firehose delivery stream as the destination. // // You provide the stream Amazon Resource Name (ARN) and an IAM role that enables Amazon Kinesis Analytics to write to the stream on your behalf. // // 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"), // RoleArn: jsii.String("roleArn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html // type CfnApplicationOutput_KinesisFirehoseOutputProperty struct { // ARN of the destination Amazon Kinesis Firehose delivery stream to write to. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-resourcearn // ResourceArn *string `field:"required" json:"resourceArn" yaml:"resourceArn"` // ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination stream on your behalf. // // You need to grant the necessary permissions to this role. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-rolearn // RoleArn *string `field:"required" json:"roleArn" yaml:"roleArn"` }