interface DataProcessorBindOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.DataProcessorBindOptions |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#DataProcessorBindOptions |
Java | software.amazon.awscdk.services.kinesisfirehose.DataProcessorBindOptions |
Python | aws_cdk.aws_kinesisfirehose.DataProcessorBindOptions |
TypeScript (source) | aws-cdk-lib » aws_kinesisfirehose » DataProcessorBindOptions |
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 { aws_iam as iam } from 'aws-cdk-lib';
import { aws_kinesisfirehose as kinesisfirehose } from 'aws-cdk-lib';
declare const role: iam.Role;
const dataProcessorBindOptions: kinesisfirehose.DataProcessorBindOptions = {
role: role,
// the properties below are optional
dynamicPartitioningEnabled: false,
prefix: 'prefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| role | IRole | The IAM role assumed by Amazon Data Firehose to write to the destination that this DataProcessor will bind to. |
| dynamic | boolean | Whether the dynamic partitioning is enabled. |
| prefix? | string | S3 bucket prefix. |
role
Type:
IRole
The IAM role assumed by Amazon Data Firehose to write to the destination that this DataProcessor will bind to.
dynamicPartitioningEnabled?
Type:
boolean
(optional, default: false)
Whether the dynamic partitioning is enabled.
prefix?
Type:
string
(optional, default: No prefix)
S3 bucket prefix.

.NET
Go
Java
Python
TypeScript (