aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.HttpEndpointRequestConfigurationProperty

interface HttpEndpointRequestConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.HttpEndpointRequestConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#CfnDeliveryStream_HttpEndpointRequestConfigurationProperty
Javasoftware.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.HttpEndpointRequestConfigurationProperty
Pythonaws_cdk.aws_kinesisfirehose.CfnDeliveryStream.HttpEndpointRequestConfigurationProperty
TypeScript aws-cdk-lib » aws_kinesisfirehose » CfnDeliveryStream » 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 { aws_kinesisfirehose as kinesisfirehose } from 'aws-cdk-lib';
const httpEndpointRequestConfigurationProperty: kinesisfirehose.CfnDeliveryStream.HttpEndpointRequestConfigurationProperty = {
  commonAttributes: [{
    attributeName: 'attributeName',
    attributeValue: 'attributeValue',
  }],
  contentEncoding: 'contentEncoding',
};

Properties

NameTypeDescription
commonAttributes?IResolvable | IResolvable | HttpEndpointCommonAttributeProperty[]Describes the metadata sent to the HTTP endpoint destination.
contentEncoding?stringKinesis Data Firehose uses the content encoding to compress the body of a request before sending the request to the destination.

commonAttributes?

Type: IResolvable | IResolvable | HttpEndpointCommonAttributeProperty[] (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.