12 lines
218 B
C#
12 lines
218 B
C#
namespace StellaOps.Cryptography.Kms;
|
|
|
|
/// <summary>
|
|
/// Represents the lifecycle state of a KMS key or key version.
|
|
/// </summary>
|
|
public enum KmsKeyState
|
|
{
|
|
Active = 0,
|
|
PendingRotation = 1,
|
|
Revoked = 2,
|
|
}
|