CfnAliasMixinProps
- class aws_cdk.mixins_preview.aws_paymentcryptography.mixins.CfnAliasMixinProps(*, alias_name=None, key_arn=None)
Bases:
objectProperties for CfnAliasPropsMixin.
- Parameters:
alias_name (
Optional[str]) – A friendly name that you can use to refer to a key. The value must begin withalias/. .. epigraph:: Do not include confidential or sensitive information in this field. This field may be displayed in plaintext in AWS CloudTrail logs and other output.key_arn (
Optional[str]) – TheKeyARNof the key associated with the alias.
- See:
- 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.mixins_preview.aws_paymentcryptography import mixins as paymentcryptography_mixins cfn_alias_mixin_props = paymentcryptography_mixins.CfnAliasMixinProps( alias_name="aliasName", key_arn="keyArn" )
Attributes
- alias_name
A friendly name that you can use to refer to a key. The value must begin with
alias/.Do not include confidential or sensitive information in this field. This field may be displayed in plaintext in AWS CloudTrail logs and other output.
- key_arn
The
KeyARNof the key associated with the alias.