@Stability(value=Stable)
public static interface CfnDeliveryStream.HttpEndpointConfigurationProperty
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.*;
HttpEndpointConfigurationProperty httpEndpointConfigurationProperty = HttpEndpointConfigurationProperty.builder()
.url("url")
// the properties below are optional
.accessKey("accessKey")
.name("name")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeliveryStream.HttpEndpointConfigurationProperty.Builder
A builder for
CfnDeliveryStream.HttpEndpointConfigurationProperty |
static class |
CfnDeliveryStream.HttpEndpointConfigurationProperty.Jsii$Proxy
An implementation for
CfnDeliveryStream.HttpEndpointConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeliveryStream.HttpEndpointConfigurationProperty.Builder |
builder() |
default String |
getAccessKey()
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.
|
String |
getUrl()
The URL of the HTTP endpoint selected as the destination.
|
@Stability(value=Stable) @NotNull String getUrl()
@Stability(value=Stable) @Nullable default String getAccessKey()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) static CfnDeliveryStream.HttpEndpointConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.