interface HttpActionHeaderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnTopicRulePropsMixin.HttpActionHeaderProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnTopicRulePropsMixin_HttpActionHeaderProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnTopicRulePropsMixin.HttpActionHeaderProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnTopicRulePropsMixin.HttpActionHeaderProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnTopicRulePropsMixin » HttpActionHeaderProperty |
The HTTP action header.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const httpActionHeaderProperty: iot_mixins.CfnTopicRulePropsMixin.HttpActionHeaderProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The HTTP header key. |
| value? | string | The HTTP header value. |
key?
Type:
string
(optional)
The HTTP header key.
value?
Type:
string
(optional)
The HTTP header value.
Substitution templates are supported.

.NET
Go
Java
Python
TypeScript