package awskinesisanalytics // Identifies a Kinesis data stream as the streaming source. // // You provide the 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" // // kinesisStreamsInputProperty := &KinesisStreamsInputProperty{ // ResourceArn: jsii.String("resourceArn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-kinesisstreamsinput.html // type CfnApplicationV2_KinesisStreamsInputProperty struct { // The ARN of the input Kinesis data stream to read. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-kinesisstreamsinput.html#cfn-kinesisanalyticsv2-application-kinesisstreamsinput-resourcearn // ResourceArn *string `field:"required" json:"resourceArn" yaml:"resourceArn"` }