#[non_exhaustive]
pub struct DeliveryStreamDescription { pub delivery_stream_name: Option<String>, pub delivery_stream_arn: Option<String>, pub delivery_stream_status: Option<DeliveryStreamStatus>, pub failure_description: Option<FailureDescription>, pub delivery_stream_encryption_configuration: Option<DeliveryStreamEncryptionConfiguration>, pub delivery_stream_type: Option<DeliveryStreamType>, pub version_id: Option<String>, pub create_timestamp: Option<DateTime>, pub last_update_timestamp: Option<DateTime>, pub source: Option<SourceDescription>, pub destinations: Option<Vec<DestinationDescription>>, pub has_more_destinations: Option<bool>, }
Expand description

Contains information about a delivery stream.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
delivery_stream_name: Option<String>

The name of the delivery stream.

delivery_stream_arn: Option<String>

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

delivery_stream_status: Option<DeliveryStreamStatus>

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.

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.

delivery_stream_encryption_configuration: Option<DeliveryStreamEncryptionConfiguration>

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

delivery_stream_type: Option<DeliveryStreamType>

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.

version_id: Option<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.

create_timestamp: Option<DateTime>

The date and time that the delivery stream was created.

last_update_timestamp: Option<DateTime>

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.

destinations: Option<Vec<DestinationDescription>>

The destinations.

has_more_destinations: Option<bool>

Indicates whether there are more destinations available to list.

Implementations

The name of the delivery stream.

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

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.

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

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

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.

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.

The date and time that the delivery stream was created.

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

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

The destinations.

Indicates whether there are more destinations available to list.

Creates a new builder-style object to manufacture DeliveryStreamDescription

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

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.

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