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]

[src]

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

impl Debug for ListTopicRulesRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListTopicRulesRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations