Interface CfnDeliveryStreamPropsMixin.HttpEndpointConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStreamPropsMixin.HttpEndpointConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStreamPropsMixin
@Stability(Stable)
public static interface CfnDeliveryStreamPropsMixin.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.cfnpropertymixins.services.kinesisfirehose.*;
HttpEndpointConfigurationProperty httpEndpointConfigurationProperty = HttpEndpointConfigurationProperty.builder()
.accessKey("accessKey")
.name("name")
.url("url")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDeliveryStreamPropsMixin.HttpEndpointConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe access key required for Kinesis Firehose to authenticate with the HTTP endpoint selected as the destination.default StringgetName()The name of the HTTP endpoint selected as the destination.default StringgetUrl()The URL of the HTTP endpoint selected as the destination.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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:
-
getUrl
The URL of the HTTP endpoint selected as the destination.- See Also:
-
builder
@Stability(Stable) static CfnDeliveryStreamPropsMixin.HttpEndpointConfigurationProperty.Builder builder()
-