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

KMSKeyDetails

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

An object that contains:

  • The encryption option for a repository association. It is either owned by Amazon Web Services Key Management Service (KMS) (AWS_OWNED_CMK) or customer managed (CUSTOMER_MANAGED_CMK).
  • The ID of the Amazon Web Services KMS key that is associated with a repository association.
interface KMSKeyDetails {
EncryptionOption?: EncryptionOption | null;
KMSKeyId?: string | null;
}

§Properties

§
EncryptionOption?: EncryptionOption | null
[src]

The encryption option for a repository association. It is either owned by Amazon Web Services Key Management Service (KMS) (AWS_OWNED_CMK) or customer managed (CUSTOMER_MANAGED_CMK).

§
KMSKeyId?: string | null
[src]

The ID of the Amazon Web Services KMS key that is associated with a repository association.