Struct rusoto_iot::ListTopicRulesRequest[][src]

pub struct ListTopicRulesRequest {
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub rule_disabled: Option<bool>,
    pub topic: Option<String>,
}

The input for the ListTopicRules operation.

Fields

The maximum number of results to return.

A token used to retrieve the next value.

Specifies whether the rule is disabled.

The topic.

Trait Implementations

impl Default for ListTopicRulesRequest
[src]

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

impl Debug for ListTopicRulesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListTopicRulesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListTopicRulesRequest
[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