Interface CfnDeliveryStream.HttpEndpointConfigurationProperty

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

@Stability(Stable) public static interface CfnDeliveryStream.HttpEndpointConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Describes the configuration of the HTTP endpoint to which Kinesis Firehose delivers data.

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.*;
 HttpEndpointConfigurationProperty httpEndpointConfigurationProperty = HttpEndpointConfigurationProperty.builder()
         .url("url")
         // the properties below are optional
         .accessKey("accessKey")
         .name("name")
         .build();
 

See Also: