interface RoleAliasReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.RoleAliasReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#RoleAliasReference |
Java | software.amazon.awscdk.services.iot.RoleAliasReference |
Python | aws_cdk.aws_iot.RoleAliasReference |
TypeScript | aws-cdk-lib » aws_iot » RoleAliasReference |
A reference to a RoleAlias resource.
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 roleAliasReference: iot.RoleAliasReference = {
roleAlias: 'roleAlias',
roleAliasArn: 'roleAliasArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| role | string | The RoleAlias of the RoleAlias resource. |
| role | string | The ARN of the RoleAlias resource. |
roleAlias
Type:
string
The RoleAlias of the RoleAlias resource.
roleAliasArn
Type:
string
The ARN of the RoleAlias resource.

.NET
Go
Java
Python
TypeScript