interface IcebergDestinationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisFirehose.Mixins.CfnDeliveryStreamPropsMixin.IcebergDestinationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisfirehose/mixins#CfnDeliveryStreamPropsMixin_IcebergDestinationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.IcebergDestinationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.IcebergDestinationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisfirehose » mixins » CfnDeliveryStreamPropsMixin » IcebergDestinationConfigurationProperty |
Specifies the destination configure settings for Apache Iceberg Table.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as kinesisfirehose_mixins } from '@aws-cdk/mixins-preview/aws-kinesisfirehose';
const icebergDestinationConfigurationProperty: kinesisfirehose_mixins.CfnDeliveryStreamPropsMixin.IcebergDestinationConfigurationProperty = {
appendOnly: false,
bufferingHints: {
intervalInSeconds: 123,
sizeInMBs: 123,
},
catalogConfiguration: {
catalogArn: 'catalogArn',
warehouseLocation: 'warehouseLocation',
},
cloudWatchLoggingOptions: {
enabled: false,
logGroupName: 'logGroupName',
logStreamName: 'logStreamName',
},
destinationTableConfigurationList: [{
destinationDatabaseName: 'destinationDatabaseName',
destinationTableName: 'destinationTableName',
partitionSpec: {
identity: [{
sourceName: 'sourceName',
}],
},
s3ErrorOutputPrefix: 's3ErrorOutputPrefix',
uniqueKeys: ['uniqueKeys'],
}],
processingConfiguration: {
enabled: false,
processors: [{
parameters: [{
parameterName: 'parameterName',
parameterValue: 'parameterValue',
}],
type: 'type',
}],
},
retryOptions: {
durationInSeconds: 123,
},
roleArn: 'roleArn',
s3BackupMode: 's3BackupMode',
s3Configuration: {
bucketArn: 'bucketArn',
bufferingHints: {
intervalInSeconds: 123,
sizeInMBs: 123,
},
cloudWatchLoggingOptions: {
enabled: false,
logGroupName: 'logGroupName',
logStreamName: 'logStreamName',
},
compressionFormat: 'compressionFormat',
encryptionConfiguration: {
kmsEncryptionConfig: {
awskmsKeyArn: 'awskmsKeyArn',
},
noEncryptionConfig: 'noEncryptionConfig',
},
errorOutputPrefix: 'errorOutputPrefix',
prefix: 'prefix',
roleArn: 'roleArn',
},
schemaEvolutionConfiguration: {
enabled: false,
},
tableCreationConfiguration: {
enabled: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| append | boolean | IResolvable | Describes whether all incoming data for this delivery stream will be append only (inserts only and not for updates and deletes) for Iceberg delivery. |
| buffering | IResolvable | Buffering | |
| catalog | IResolvable | Catalog | Configuration describing where the destination Apache Iceberg Tables are persisted. |
| cloud | IResolvable | Cloud | |
| destination | IResolvable | (IResolvable | Destination)[] | Provides a list of DestinationTableConfigurations which Firehose uses to deliver data to Apache Iceberg Tables. |
| processing | IResolvable | Processing | |
| retry | IResolvable | Retry | |
| role | string | The Amazon Resource Name (ARN) of the IAM role to be assumed by Firehose for calling Apache Iceberg Tables. |
| s3 | string | Describes how Firehose will backup records. |
| s3 | IResolvable | S3 | |
| schema | IResolvable | Schema | The configuration to enable automatic schema evolution. |
| table | IResolvable | Table | The configuration to enable automatic table creation. |
appendOnly?
Type:
boolean | IResolvable
(optional)
Describes whether all incoming data for this delivery stream will be append only (inserts only and not for updates and deletes) for Iceberg delivery.
This feature is only applicable for Apache Iceberg Tables.
The default value is false. If you set this value to true, Firehose automatically increases the throughput limit of a stream based on the throttling levels of the stream. If you set this parameter to true for a stream with updates and deletes, you will see out of order delivery.
bufferingHints?
Type:
IResolvable | Buffering
(optional)
catalogConfiguration?
Type:
IResolvable | Catalog
(optional)
Configuration describing where the destination Apache Iceberg Tables are persisted.
cloudWatchLoggingOptions?
Type:
IResolvable | Cloud
(optional)
destinationTableConfigurationList?
Type:
IResolvable | (IResolvable | Destination)[]
(optional)
Provides a list of DestinationTableConfigurations which Firehose uses to deliver data to Apache Iceberg Tables.
Firehose will write data with insert if table specific configuration is not provided here.
processingConfiguration?
Type:
IResolvable | Processing
(optional)
retryOptions?
Type:
IResolvable | Retry
(optional)
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IAM role to be assumed by Firehose for calling Apache Iceberg Tables.
s3BackupMode?
Type:
string
(optional)
Describes how Firehose will backup records.
Currently,S3 backup only supports FailedDataOnly .
s3Configuration?
Type:
IResolvable | S3
(optional)
schemaEvolutionConfiguration?
Type:
IResolvable | Schema
(optional)
The configuration to enable automatic schema evolution.
Amazon Data Firehose is in preview release and is subject to change.
tableCreationConfiguration?
Type:
IResolvable | Table
(optional)
The configuration to enable automatic table creation.
Amazon Data Firehose is in preview release and is subject to change.

.NET
Go
Java
Python
TypeScript