Struct rusoto_firehose::DestinationDescription [] [src]

pub struct DestinationDescription {
    pub destination_id: String,
    pub elasticsearch_destination_description: Option<ElasticsearchDestinationDescription>,
    pub extended_s3_destination_description: Option<ExtendedS3DestinationDescription>,
    pub redshift_destination_description: Option<RedshiftDestinationDescription>,
    pub s3_destination_description: Option<S3DestinationDescription>,
}

Describes the destination for a delivery stream.

Fields

The ID of the destination.

The destination in Amazon ES.

The destination in Amazon S3.

The destination in Amazon Redshift.

[Deprecated] The destination in Amazon S3.

Trait Implementations

impl Default for DestinationDescription
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for DestinationDescription
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DestinationDescription
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations