interface DirectPutSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.DirectPutSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#CfnDeliveryStream_DirectPutSourceConfigurationProperty |
Java | software.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.DirectPutSourceConfigurationProperty |
Python | aws_cdk.aws_kinesisfirehose.CfnDeliveryStream.DirectPutSourceConfigurationProperty |
TypeScript | aws-cdk-lib » aws_kinesisfirehose » CfnDeliveryStream » DirectPutSourceConfigurationProperty |
The structure that configures parameters such as ThroughputHintInMBs for a stream configured with Direct PUT as a source.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kinesisfirehose as kinesisfirehose } from 'aws-cdk-lib';
const directPutSourceConfigurationProperty: kinesisfirehose.CfnDeliveryStream.DirectPutSourceConfigurationProperty = {
throughputHintInMBs: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| throughput | number | The value that you configure for this parameter is for information purpose only and does not affect Firehose delivery throughput limit. |
throughputHintInMBs?
Type:
number
(optional)
The value that you configure for this parameter is for information purpose only and does not affect Firehose delivery throughput limit.
You can use the Firehose Limits form to request a throughput limit increase.

.NET
Go
Java
Python
TypeScript