interface SigV4AuthorizationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IoT.CfnTopicRule.SigV4AuthorizationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnTopicRule_SigV4AuthorizationProperty | 
|  Java | software.amazon.awscdk.services.iot.CfnTopicRule.SigV4AuthorizationProperty | 
|  Python | aws_cdk.aws_iot.CfnTopicRule.SigV4AuthorizationProperty | 
|  TypeScript | aws-cdk-lib»aws_iot»CfnTopicRule»SigV4AuthorizationProperty | 
For more information, see Signature Version 4 signing process .
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-lib';
const sigV4AuthorizationProperty: iot.CfnTopicRule.SigV4AuthorizationProperty = {
  roleArn: 'roleArn',
  serviceName: 'serviceName',
  signingRegion: 'signingRegion',
};
Properties
| Name | Type | Description | 
|---|---|---|
| role | string | The ARN of the signing role. | 
| service | string | The service name to use while signing with Sig V4. | 
| signing | string | The signing region. | 
roleArn
Type:
string
The ARN of the signing role.
serviceName
Type:
string
The service name to use while signing with Sig V4.
signingRegion
Type:
string
The signing region.
