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

MultiRegionConfiguration

import type { MultiRegionConfiguration } from "https://aws-api.deno.dev/v0.3/services/kms.ts?docs=full";

Describes the configuration of this multi-Region key. This field appears only when the KMS key is a primary or replica of a multi-Region key.

For more information about any listed KMS key, use the "DescribeKey" operation.

interface MultiRegionConfiguration {
MultiRegionKeyType?: MultiRegionKeyType | null;
PrimaryKey?: MultiRegionKey | null;
ReplicaKeys?: MultiRegionKey[] | null;
}

§Properties

§
MultiRegionKeyType?: MultiRegionKeyType | null
[src]

Indicates whether the KMS key is a PRIMARY or REPLICA key.

§
PrimaryKey?: MultiRegionKey | null
[src]

Displays the key ARN and Region of the primary key. This field includes the current KMS key if it is the primary key.

§
ReplicaKeys?: MultiRegionKey[] | null
[src]

displays the key ARNs and Regions of all replica keys. This field includes the current KMS key if it is a replica key.