Interface CfnDeliveryStream.HttpEndpointRequestConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeliveryStream.HttpEndpointRequestConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDeliveryStream

@Stability(Stable) public static interface CfnDeliveryStream.HttpEndpointRequestConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kinesisfirehose.*;
 HttpEndpointRequestConfigurationProperty httpEndpointRequestConfigurationProperty = HttpEndpointRequestConfigurationProperty.builder()
         .commonAttributes(List.of(HttpEndpointCommonAttributeProperty.builder()
                 .attributeName("attributeName")
                 .attributeValue("attributeValue")
                 .build()))
         .contentEncoding("contentEncoding")
         .build();