Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AwsKmsKeyDetails

import type { AwsKmsKeyDetails } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

Contains metadata about an KMS key.

interface AwsKmsKeyDetails {
AWSAccountId?: string | null;
CreationDate?: number | null;
Description?: string | null;
KeyId?: string | null;
KeyManager?: string | null;
KeyRotationStatus?: boolean | null;
KeyState?: string | null;
Origin?: string | null;
}

§Properties

§
AWSAccountId?: string | null
[src]

The twelve-digit account ID of the Amazon Web Services account that owns the KMS key.

§
CreationDate?: number | null
[src]

Indicates when the KMS key was created.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be separated by T. For example, 2020-03-22T13:22:13.933Z.

§
Description?: string | null
[src]

A description of the KMS key.

§
KeyId?: string | null
[src]

The globally unique identifier for the KMS key.

§
KeyManager?: string | null
[src]

The manager of the KMS key. KMS keys in your Amazon Web Services account are either customer managed or Amazon Web Services managed.

§
KeyRotationStatus?: boolean | null
[src]

Whether the key has key rotation enabled.

§
KeyState?: string | null
[src]

The state of the KMS key. Valid values are as follows:

  • Disabled
    
  • Enabled
    
  • PendingDeletion
    
  • PendingImport
    
  • Unavailable
    
§
Origin?: string | null
[src]

The source of the KMS key material.

When this value is AWS_KMS, KMS created the key material.

When this value is EXTERNAL, the key material was imported from your existing key management infrastructure or the KMS key lacks key material.

When this value is AWS_CLOUDHSM, the key material was created in the CloudHSM cluster associated with a custom key store.