AliasReference
- class aws_cdk.aws_kms.AliasReference(*, alias_name)
- Bases: - object- A reference to a Alias resource. - Parameters:
- alias_name ( - str) – The AliasName of the Alias 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_kms as kms alias_reference = kms.AliasReference( alias_name="aliasName" ) - Attributes - alias_name
- The AliasName of the Alias resource.