RoleAliasReference

class aws_cdk.aws_iot.RoleAliasReference(*, role_alias, role_alias_arn)

Bases: object

A reference to a RoleAlias resource.

Parameters:
  • role_alias (str) – The RoleAlias of the RoleAlias resource.

  • role_alias_arn (str) – The ARN of the RoleAlias resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_iot as iot

role_alias_reference = iot.RoleAliasReference(
    role_alias="roleAlias",
    role_alias_arn="roleAliasArn"
)

Attributes

role_alias

The RoleAlias of the RoleAlias resource.

role_alias_arn

The ARN of the RoleAlias resource.