interface HttpAuthorizationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnTopicRule.HttpAuthorizationProperty |
Java | software.amazon.awscdk.services.iot.CfnTopicRule.HttpAuthorizationProperty |
Python | aws_cdk.aws_iot.CfnTopicRule.HttpAuthorizationProperty |
TypeScript | @aws-cdk/aws-iot » CfnTopicRule » 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 * as iot from '@aws-cdk/aws-iot';
const httpAuthorizationProperty: iot.CfnTopicRule.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
Java
Python
TypeScript