package awscdkkinesisfirehosealpha import ( _jsii_ "github.com/aws/jsii-runtime-go/runtime" "github.com/aws/constructs-go/constructs/v10" ) // A data processor that Kinesis Data Firehose will call to transform records before delivering data. // Experimental. type IDataProcessor interface { // Binds this processor to a destination of a delivery stream. // // Implementers should use this method to grant processor invocation permissions to the provided stream and return the // necessary configuration to register as a processor. // Experimental. Bind(scope constructs.Construct, options *DataProcessorBindOptions) *DataProcessorConfig // The constructor props of the DataProcessor. // Experimental. Props() *DataProcessorProps } // The jsii proxy for IDataProcessor type jsiiProxy_IDataProcessor struct { _ byte // padding } func (i *jsiiProxy_IDataProcessor) Bind(scope constructs.Construct, options *DataProcessorBindOptions) *DataProcessorConfig { if err := i.validateBindParameters(scope, options); err != nil { panic(err) } var returns *DataProcessorConfig _jsii_.Invoke( i, "bind", []interface{}{scope, options}, &returns, ) return returns } func (j *jsiiProxy_IDataProcessor) Props() *DataProcessorProps { var returns *DataProcessorProps _jsii_.Get( j, "props", &returns, ) return returns }