interface HttpAuthorizationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnTopicRulePropsMixin.HttpAuthorizationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnTopicRulePropsMixin_HttpAuthorizationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnTopicRulePropsMixin.HttpAuthorizationProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnTopicRulePropsMixin.HttpAuthorizationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » CfnTopicRulePropsMixin » HttpAuthorizationProperty |
The authorization method used to send messages.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iot as iot } from '@aws-cdk/cfn-property-mixins';
const httpAuthorizationProperty: iot.CfnTopicRulePropsMixin.HttpAuthorizationProperty = {
sigv4: {
roleArn: 'roleArn',
serviceName: 'serviceName',
signingRegion: 'signingRegion',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| sigv4? | IResolvable | Sig | Use Sig V4 authorization. |
sigv4?
Type:
IResolvable | Sig
(optional)
Use Sig V4 authorization.
For more information, see Signature Version 4 Signing Process .

.NET
Go
Java
Python
TypeScript