interface HttpEndpointCommonAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisFirehose.Mixins.CfnDeliveryStreamPropsMixin.HttpEndpointCommonAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisfirehose/mixins#CfnDeliveryStreamPropsMixin_HttpEndpointCommonAttributeProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.HttpEndpointCommonAttributeProperty |
Python | aws_cdk.mixins_preview.aws_kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.HttpEndpointCommonAttributeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisfirehose » mixins » CfnDeliveryStreamPropsMixin » HttpEndpointCommonAttributeProperty |
Describes the metadata that's delivered to the specified HTTP endpoint destination.
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 httpEndpointCommonAttributeProperty: kinesisfirehose_mixins.CfnDeliveryStreamPropsMixin.HttpEndpointCommonAttributeProperty = {
attributeName: 'attributeName',
attributeValue: 'attributeValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| attribute | string | The name of the HTTP endpoint common attribute. |
| attribute | string | The value of the HTTP endpoint common attribute. |
attributeName?
Type:
string
(optional)
The name of the HTTP endpoint common attribute.
attributeValue?
Type:
string
(optional)
The value of the HTTP endpoint common attribute.

.NET
Go
Java
Python
TypeScript