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

DeliveryStreamEncryptionConfiguration

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

Contains information about the server-side encryption (SSE) status for the delivery stream, the type customer master key (CMK) in use, if any, and the ARN of the CMK. You can get DeliveryStreamEncryptionConfiguration by invoking the "DescribeDeliveryStream" operation.

interface DeliveryStreamEncryptionConfiguration {
FailureDescription?: FailureDescription | null;
KeyARN?: string | null;
KeyType?: KeyType | null;
}

§Properties

§
FailureDescription?: FailureDescription | null
[src]

Provides details in case one of the following operations fails due to an error related to KMS: "CreateDeliveryStream", "DeleteDeliveryStream", "StartDeliveryStreamEncryption", "StopDeliveryStreamEncryption".

§
KeyARN?: string | null
[src]

If KeyType is CUSTOMER_MANAGED_CMK, this field contains the ARN of the customer managed CMK. If KeyType is Amazon Web Services_OWNED_CMK, DeliveryStreamEncryptionConfiguration doesn't contain a value for KeyARN.

§
KeyType?: KeyType | null
[src]

Indicates the type of customer master key (CMK) that is used for encryption. The default setting is Amazon Web Services_OWNED_CMK. For more information about CMKs, see Customer Master Keys (CMKs).

§

This is the server-side encryption (SSE) status for the delivery stream. For a full description of the different values of this status, see "StartDeliveryStreamEncryption" and "StopDeliveryStreamEncryption". If this status is ENABLING_FAILED or DISABLING_FAILED, it is the status of the most recent attempt to enable or disable SSE, respectively.