SecretList Event

Fires once for each secret when listing secrets.

Syntax

public event OnSecretListHandler OnSecretList;

public delegate void OnSecretListHandler(object sender, AmazonsecretsSecretListEventArgs e);

public class AmazonsecretsSecretListEventArgs : EventArgs {
  public string ARN { get; }
  public string Name { get; }
  public string Description { get; }
  public string CreationDate { get; }
  public string DeletionDate { get; }
  public string LastAccessDate { get; }
  public string LastChangeDate { get; }
}
Public Event OnSecretList As OnSecretListHandler

Public Delegate Sub OnSecretListHandler(sender As Object, e As AmazonsecretsSecretListEventArgs)

Public Class AmazonsecretsSecretListEventArgs Inherits EventArgs
  Public ReadOnly Property ARN As String
  Public ReadOnly Property Name As String
  Public ReadOnly Property Description As String
  Public ReadOnly Property CreationDate As String
  Public ReadOnly Property DeletionDate As String
  Public ReadOnly Property LastAccessDate As String
  Public ReadOnly Property LastChangeDate As String
End Class

Remarks

This event fires once for each secret returned when ListSecrets or GetSecretInfo is called.

ARN reflects the Amazon resource name of the secret.

Name reflects the name of the secret.

Description reflects the secret's description.

CreationDate reflects the secret's creation date, in seconds since the Unix epoch (including fractional seconds).

DeletionDate reflects the secret's scheduled deletion date, if applicable, in seconds since the Unix epoch (including fractional seconds).

LastAccessDate reflects the secret's last access date, in seconds since the Unix epoch. It provides date-level resolution only, the time is not included.

LastChangeDate reflects the secret's last change date, in seconds since the Unix epoch (including fractional seconds).

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