package awscdkkinesisfirehosealpha import ( "github.com/aws/aws-cdk-go/awscdk/v2/awsiam" ) // Options when binding a DataProcessor to a delivery stream destination. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import kinesisfirehose_alpha "github.com/aws/aws-cdk-go/awscdkkinesisfirehosealpha" // import "github.com/aws/aws-cdk-go/awscdk" // // var role role // // dataProcessorBindOptions := &DataProcessorBindOptions{ // Role: role, // } // // Experimental. type DataProcessorBindOptions struct { // The IAM role assumed by Kinesis Data Firehose to write to the destination that this DataProcessor will bind to. // Experimental. Role awsiam.IRole `field:"required" json:"role" yaml:"role"` }