interface RoleAliasReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoT.RoleAliasReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiot#RoleAliasReference |
Java | software.amazon.awscdk.interfaces.iot.RoleAliasReference |
Python | aws_cdk.interfaces.aws_iot.RoleAliasReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_iot } from 'aws-cdk-lib/interfaces';
const roleAliasReference: interfaces_aws_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