interface SigV4AuthorizationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnTopicRulePropsMixin.SigV4AuthorizationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnTopicRulePropsMixin_SigV4AuthorizationProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnTopicRulePropsMixin.SigV4AuthorizationProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnTopicRulePropsMixin.SigV4AuthorizationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » 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 { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const sigV4AuthorizationProperty: iot_mixins.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