public static interface CfnDeliveryStream.HttpEndpointRequestConfigurationProperty
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 java.lang.Object |
getCommonAttributes()
Describes the metadata sent to the HTTP endpoint destination.
|
default java.lang.String |
getContentEncoding()
Kinesis Data Firehose uses the content encoding to compress the body of a request before sending the request to the destination.
|
default java.lang.Object getCommonAttributes()
default java.lang.String getContentEncoding()
For more information, see Content-Encoding in MDN Web Docs, the official Mozilla documentation.