interface HttpEndpointRequestConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisFirehose.Mixins.CfnDeliveryStreamPropsMixin.HttpEndpointRequestConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisfirehose/mixins#CfnDeliveryStreamPropsMixin_HttpEndpointRequestConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.HttpEndpointRequestConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.HttpEndpointRequestConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisfirehose » mixins » CfnDeliveryStreamPropsMixin » HttpEndpointRequestConfigurationProperty |
The configuration of the HTTP endpoint request.
Kinesis Firehose supports any custom HTTP endpoint or HTTP endpoints owned by supported third-party service providers, including Datadog, MongoDB, and New Relic.
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 httpEndpointRequestConfigurationProperty: kinesisfirehose_mixins.CfnDeliveryStreamPropsMixin.HttpEndpointRequestConfigurationProperty = {
commonAttributes: [{
attributeName: 'attributeName',
attributeValue: 'attributeValue',
}],
contentEncoding: 'contentEncoding',
};
Properties
| Name | Type | Description |
|---|---|---|
| common | IResolvable | (IResolvable | Http)[] | Describes the metadata sent to the HTTP endpoint destination. |
| content | string | Kinesis Data Firehose uses the content encoding to compress the body of a request before sending the request to the destination. |
commonAttributes?
Type:
IResolvable | (IResolvable | Http)[]
(optional)
Describes the metadata sent to the HTTP endpoint destination.
contentEncoding?
Type:
string
(optional)
Kinesis Data Firehose uses the content encoding to compress the body of a request before sending the request to the destination.
For more information, see Content-Encoding in MDN Web Docs, the official Mozilla documentation.

.NET
Go
Java
Python
TypeScript