@Stability(value=Stable)
public static interface CfnDeliveryStream.HttpEndpointRequestConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeliveryStream.HttpEndpointRequestConfigurationProperty.Builder
|
static class |
CfnDeliveryStream.HttpEndpointRequestConfigurationProperty.Jsii$Proxy
An implementation for
CfnDeliveryStream.HttpEndpointRequestConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeliveryStream.HttpEndpointRequestConfigurationProperty.Builder |
builder() |
default Object |
getCommonAttributes()
Describes the metadata sent to the HTTP endpoint destination.
|
default String |
getContentEncoding()
Kinesis Data Firehose uses the content encoding to compress the body of a request before sending the request to the destination.
|
@Stability(value=Stable) @Nullable default Object getCommonAttributes()
@Stability(value=Stable) @Nullable default String getContentEncoding()
For more information, see Content-Encoding in MDN Web Docs, the official Mozilla documentation.
@Stability(value=Stable) static CfnDeliveryStream.HttpEndpointRequestConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.