package awskinesisanalytics // When configuring application output, identifies an Amazon Kinesis stream as the destination. // // You provide the stream Amazon Resource Name (ARN) and also an IAM role ARN that Amazon Kinesis Analytics can use 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" // // kinesisStreamsOutputProperty := &KinesisStreamsOutputProperty{ // ResourceArn: jsii.String("resourceArn"), // RoleArn: jsii.String("roleArn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html // type CfnApplicationOutput_KinesisStreamsOutputProperty struct { // ARN of the destination Amazon Kinesis stream to write to. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-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-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-rolearn // RoleArn *string `field:"required" json:"roleArn" yaml:"roleArn"` }