class DecompressionProcessor
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.DecompressionProcessor |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#DecompressionProcessor |
Java | software.amazon.awscdk.services.kinesisfirehose.DecompressionProcessor |
Python | aws_cdk.aws_kinesisfirehose.DecompressionProcessor |
TypeScript (source) | aws-cdk-lib » aws_kinesisfirehose » DecompressionProcessor |
Implements
IData
The data processor to decompress CloudWatch Logs.
Example
declare const bucket: s3.Bucket;
const s3Destination = new firehose.S3Bucket(bucket, {
processors: [
new firehose.DecompressionProcessor(),
new firehose.AppendDelimiterToRecordProcessor(),
],
});
new firehose.DeliveryStream(this, 'Delivery Stream', {
destination: s3Destination,
});
Initializer
new DecompressionProcessor(options?: DecompressionProcessorOptions)
Parameters
- options
DecompressionProcessor Options
Properties
| Name | Type | Description |
|---|---|---|
| props | Data | The constructor props of the DataProcessor. |
props
Type:
Data
The constructor props of the DataProcessor.
Methods
| Name | Description |
|---|---|
| bind(_scope, _options) | Binds this processor to a destination of a delivery stream. |
bind(_scope, _options)
public bind(_scope: Construct, _options: DataProcessorBindOptions): DataProcessorConfig
Parameters
- _scope
Construct - _options
DataProcessor Bind Options
Returns
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.

.NET
Go
Java
Python
TypeScript (