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

 .NET
 Java
 Python
 TypeScript