Enum KeySigningKeyStatus
The status for a Key Signing Key.
Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum KeySigningKeyStatus
Syntax (vb)
Public Enum KeySigningKeyStatus
Remarks
ExampleMetadata: infused
Examples
HostedZone hostedZone;
Key kmsKey;
new KeySigningKey(this, "KeySigningKey", new KeySigningKeyProps {
HostedZone = hostedZone,
KmsKey = kmsKey,
KeySigningKeyName = "ksk",
Status = KeySigningKeyStatus.ACTIVE
});
Synopsis
Fields
| ACTIVE | The KSK is being used for signing. |
| INACTIVE | The KSK is not being used for signing. |
Fields
| Name | Description |
|---|---|
| ACTIVE | The KSK is being used for signing. |
| INACTIVE | The KSK is not being used for signing. |