[][src]Struct rusoto_iot::TopicRuleDestination

pub struct TopicRuleDestination {
    pub arn: Option<String>,
    pub http_url_properties: Option<HttpUrlDestinationProperties>,
    pub status: Option<String>,
    pub status_reason: Option<String>,
}

A topic rule destination.

Fields

arn: Option<String>

The topic rule destination URL.

http_url_properties: Option<HttpUrlDestinationProperties>

Properties of 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>

Additional details or reason why the topic rule destination is in the current status.

Trait Implementations

impl Clone for TopicRuleDestination[src]

impl Debug for TopicRuleDestination[src]

impl Default for TopicRuleDestination[src]

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

impl PartialEq<TopicRuleDestination> for TopicRuleDestination[src]

impl StructuralPartialEq for TopicRuleDestination[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.