interface HttpEndpointConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisFirehose.Mixins.CfnDeliveryStreamPropsMixin.HttpEndpointConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisfirehose/mixins#CfnDeliveryStreamPropsMixin_HttpEndpointConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.HttpEndpointConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.HttpEndpointConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisfirehose » mixins » CfnDeliveryStreamPropsMixin » HttpEndpointConfigurationProperty |
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 { mixins as kinesisfirehose_mixins } from '@aws-cdk/mixins-preview/aws-kinesisfirehose';
const httpEndpointConfigurationProperty: kinesisfirehose_mixins.CfnDeliveryStreamPropsMixin.HttpEndpointConfigurationProperty = {
accessKey: 'accessKey',
name: 'name',
url: 'url',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | The access key required for Kinesis Firehose to authenticate with the HTTP endpoint selected as the destination. |
| name? | string | The name of the HTTP endpoint selected as the destination. |
| url? | string | The URL of the HTTP endpoint selected as the destination. |
accessKey?
Type:
string
(optional)
The access key required for Kinesis Firehose to authenticate with the HTTP endpoint selected as the destination.
name?
Type:
string
(optional)
The name of the HTTP endpoint selected as the destination.
url?
Type:
string
(optional)
The URL of the HTTP endpoint selected as the destination.

.NET
Go
Java
Python
TypeScript