interface SigV4AuthorizationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnTopicRulePropsMixin.SigV4AuthorizationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnTopicRulePropsMixin_SigV4AuthorizationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnTopicRulePropsMixin.SigV4AuthorizationProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnTopicRulePropsMixin.SigV4AuthorizationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » CfnTopicRulePropsMixin » 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/cfn-property-mixins';
const sigV4AuthorizationProperty: iot.CfnTopicRulePropsMixin.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
(optional)
The ARN of the signing role.
serviceName?
Type:
string
(optional)
The service name to use while signing with Sig V4.
signingRegion?
Type:
string
(optional)
The signing region.

.NET
Go
Java
Python
TypeScript