[][src]Struct rusoto_iot::TopicRuleDestinationSummary

pub struct TopicRuleDestinationSummary {
    pub arn: Option<String>,
    pub http_url_summary: Option<HttpUrlDestinationSummary>,
    pub status: Option<String>,
    pub status_reason: Option<String>,
}

Information about the topic rule destination.

Fields

arn: Option<String>

The topic rule destination ARN.

http_url_summary: Option<HttpUrlDestinationSummary>

Information about the HTTP URL.

status: Option<String>

The status of the topic rule destination. Valid values are:

INPROGRESS

A topic rule destination was created but has not been confirmed. You can set status to INPROGRESS by calling UpdateTopicRuleDestination. Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint.

ENABLED

Confirmation was completed, and traffic to this destination is allowed. You can set status to DISABLED by calling UpdateTopicRuleDestination.

DISABLED

Confirmation was completed, and traffic to this destination is not allowed. You can set status to ENABLED by calling UpdateTopicRuleDestination.

ERROR

Confirmation could not be completed, for example if the confirmation timed out. You can call GetTopicRuleDestination for details about the error. You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination. Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint.

status_reason: Option<String>

The reason the topic rule destination is in the current status.

Trait Implementations

impl Clone for TopicRuleDestinationSummary[src]

impl Debug for TopicRuleDestinationSummary[src]

impl Default for TopicRuleDestinationSummary[src]

impl<'de> Deserialize<'de> for TopicRuleDestinationSummary[src]

impl PartialEq<TopicRuleDestinationSummary> for TopicRuleDestinationSummary[src]

impl StructuralPartialEq for TopicRuleDestinationSummary[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.