Cloud Keys 2020 Python Edition

Questions / Feedback?

on_alias_list Event

Fires once for each alias when listing aliases.

Syntax

class AmazonKMSAliasListEventParams(object):
  @property
  def arn() -> str: ...
  @property
  def name() -> str: ...
  @property
  def key_id() -> str: ...

# In class AmazonKMS:
@property
def on_alias_list() -> Callable[[AmazonKMSAliasListEventParams], None]: ...
@on_alias_list.setter
def on_alias_list(event_hook: Callable[[AmazonKMSAliasListEventParams], None]) -> None: ...

Remarks

This event fires once for each alias returned when list_aliases is called.

ARN reflects the Amazon resource name of the alias.

Name reflects the name of the alias, including the alias/ prefix.

KeyId reflects the Id of the CMK that the alias refers to.

Copyright (c) 2022 /n software inc. - All rights reserved.
Cloud Keys 2020 Python Edition - Version 20.0 [Build 8157]