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

DeliveryStreamDescription

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

Contains information about a delivery stream.

interface DeliveryStreamDescription {
CreateTimestamp?: Date | number | null;
DeliveryStreamARN: string;
DeliveryStreamEncryptionConfiguration?: DeliveryStreamEncryptionConfiguration | null;
DeliveryStreamName: string;
DeliveryStreamStatus: DeliveryStreamStatus;
DeliveryStreamType: DeliveryStreamType;
Destinations: DestinationDescription[];
FailureDescription?: FailureDescription | null;
HasMoreDestinations: boolean;
LastUpdateTimestamp?: Date | number | null;
Source?: SourceDescription | null;
VersionId: string;
}

§Properties

§
CreateTimestamp?: Date | number | null
[src]

The date and time that the delivery stream was created.

§
DeliveryStreamARN: string
[src]

The Amazon Resource Name (ARN) of the delivery stream. For more information, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces.

§
DeliveryStreamEncryptionConfiguration?: DeliveryStreamEncryptionConfiguration | null
[src]

Indicates the server-side encryption (SSE) status for the delivery stream.

§
DeliveryStreamName: string
[src]

The name of the delivery stream.

§
DeliveryStreamStatus: DeliveryStreamStatus
[src]

The status of the delivery stream. If the status of a delivery stream is CREATING_FAILED, this status doesn't change, and you can't invoke CreateDeliveryStream again on it. However, you can invoke the "DeleteDeliveryStream" operation to delete it.

§
DeliveryStreamType: DeliveryStreamType
[src]

The delivery stream type. This can be one of the following values:

  • DirectPut: Provider applications access the delivery stream directly.
  • KinesisStreamAsSource: The delivery stream uses a Kinesis data stream as a source.
§

The destinations.

§
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".

§
HasMoreDestinations: boolean
[src]

Indicates whether there are more destinations available to list.

§
LastUpdateTimestamp?: Date | number | null
[src]

The date and time that the delivery stream was last updated.

§
Source?: SourceDescription | null
[src]

If the DeliveryStreamType parameter is KinesisStreamAsSource, a "SourceDescription" object describing the source Kinesis data stream.

§
VersionId: string
[src]

Each time the destination is updated for a delivery stream, the version ID is changed, and the current version ID is required when updating the destination. This is so that the service knows it is applying the changes to the correct version of the delivery stream.