interface SchemaConfigurationBindOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.SchemaConfigurationBindOptions |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#SchemaConfigurationBindOptions |
Java | software.amazon.awscdk.services.kinesisfirehose.SchemaConfigurationBindOptions |
Python | aws_cdk.aws_kinesisfirehose.SchemaConfigurationBindOptions |
TypeScript (source) | aws-cdk-lib » aws_kinesisfirehose » SchemaConfigurationBindOptions |
Options when binding a SchemaConfig to a 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 schemaConfigurationBindOptions: kinesisfirehose.SchemaConfigurationBindOptions = {
role: role,
};
Properties
| Name | Type | Description |
|---|---|---|
| role | IRole | The IAM Role that will be used by the Delivery Stream for access to the Glue data catalog for record format conversion. |
role
Type:
IRole
The IAM Role that will be used by the Delivery Stream for access to the Glue data catalog for record format conversion.

.NET
Go
Java
Python
TypeScript (