Struct rusoto_config::ConfigStreamDeliveryInfo[][src]

pub struct ConfigStreamDeliveryInfo {
    pub last_error_code: Option<String>,
    pub last_error_message: Option<String>,
    pub last_status: Option<String>,
    pub last_status_change_time: Option<f64>,
}

A list that contains the status of the delivery of the configuration stream notification to the Amazon SNS topic.

Fields

The error code from the last attempted delivery.

The error message from the last attempted delivery.

Status of the last attempted delivery.

Note Providing an SNS topic on a DeliveryChannel for AWS Config is optional. If the SNS delivery is turned off, the last status will be Not_Applicable.

The time from the last status change.

Trait Implementations

impl Default for ConfigStreamDeliveryInfo
[src]

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

impl Debug for ConfigStreamDeliveryInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for ConfigStreamDeliveryInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ConfigStreamDeliveryInfo
[src]

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

This method tests for !=.

Auto Trait Implementations