interface HttpEndpointCommonAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.KinesisFirehose.CfnDeliveryStreamPropsMixin.HttpEndpointCommonAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskinesisfirehose#CfnDeliveryStreamPropsMixin_HttpEndpointCommonAttributeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kinesisfirehose.CfnDeliveryStreamPropsMixin.HttpEndpointCommonAttributeProperty |
Python | aws_cdk.cfn_property_mixins.aws_kinesisfirehose.CfnDeliveryStreamPropsMixin.HttpEndpointCommonAttributeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kinesisfirehose » 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 { aws_kinesisfirehose as kinesisfirehose } from '@aws-cdk/cfn-property-mixins';
const httpEndpointCommonAttributeProperty: kinesisfirehose.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