logo
pub struct DeliveryStreamDescription {
    pub create_timestamp: Option<f64>,
    pub delivery_stream_arn: String,
    pub delivery_stream_encryption_configuration: Option<DeliveryStreamEncryptionConfiguration>,
    pub delivery_stream_name: String,
    pub delivery_stream_status: String,
    pub delivery_stream_type: String,
    pub destinations: Vec<DestinationDescription>,
    pub failure_description: Option<FailureDescription>,
    pub has_more_destinations: bool,
    pub last_update_timestamp: Option<f64>,
    pub source: Option<SourceDescription>,
    pub version_id: String,
}
Expand description

Contains information about a delivery stream.

Fields

create_timestamp: Option<f64>

The date and time that the delivery stream was created.

delivery_stream_arn: String

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

delivery_stream_encryption_configuration: Option<DeliveryStreamEncryptionConfiguration>

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

delivery_stream_name: String

The name of the delivery stream.

delivery_stream_status: String

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.

delivery_stream_type: String

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.

destinations: Vec<DestinationDescription>

The destinations.

failure_description: Option<FailureDescription>

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

has_more_destinations: bool

Indicates whether there are more destinations available to list.

last_update_timestamp: Option<f64>

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

source: Option<SourceDescription>

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

version_id: String

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.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more