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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDeliveryStream.HttpEndpointRequestConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCommonAttributes
Describes the metadata sent to the HTTP endpoint destination. -
getContentEncoding
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.
-
builder
@Stability(Stable) static CfnDeliveryStream.HttpEndpointRequestConfigurationProperty.Builder builder()
-