interface HttpAttribute
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.HttpAttribute |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#HttpAttribute |
Java | software.amazon.awscdk.services.kinesisfirehose.HttpAttribute |
Python | aws_cdk.aws_kinesisfirehose.HttpAttribute |
TypeScript (source) | aws-cdk-lib » aws_kinesisfirehose » HttpAttribute |
Describes the metadata sent to the Http endpoint destination.
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-lib';
const httpAttribute: kinesisfirehose.HttpAttribute = {
name: 'name',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the Http endpoint common attribute. |
| value | string | The value of the Http endpoint common attribute. |
name
Type:
string
The name of the Http endpoint common attribute.
value
Type:
string
The value of the Http endpoint common attribute.

.NET
Go
Java
Python
TypeScript (