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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDeliveryStream.HttpEndpointConfigurationProperty
static final class
An implementation forCfnDeliveryStream.HttpEndpointConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The access key required for Kinesis Firehose to authenticate with the HTTP endpoint selected as the destination.default String
getName()
The name of the HTTP endpoint selected as the destination.getUrl()
The URL of the HTTP endpoint selected as the destination.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getUrl
The URL of the HTTP endpoint selected as the destination.- See Also:
-
getAccessKey
The access key required for Kinesis Firehose to authenticate with the HTTP endpoint selected as the destination.- See Also:
-
getName
The name of the HTTP endpoint selected as the destination.- See Also:
-
builder
-