AliasList Event

Fires once for each alias when listing aliases.

Syntax

public event OnAliasListHandler OnAliasList;

public delegate void OnAliasListHandler(object sender, AmazonkmsAliasListEventArgs e);

public class AmazonkmsAliasListEventArgs : EventArgs {
  public string ARN { get; }
  public string Name { get; }
  public string KeyId { get; }
}
Public Event OnAliasList As OnAliasListHandler

Public Delegate Sub OnAliasListHandler(sender As Object, e As AmazonkmsAliasListEventArgs)

Public Class AmazonkmsAliasListEventArgs Inherits EventArgs
  Public ReadOnly Property ARN As String
  Public ReadOnly Property Name As String
  Public ReadOnly Property KeyId As String
End Class

Remarks

This event fires once for each alias returned when ListAliases 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 .NET Edition - Version 20.0 [Build 8157]