Struct rusoto_inspector::ListRulesPackagesResponse[][src]

pub struct ListRulesPackagesResponse {
    pub next_token: Option<String>,
    pub rules_package_arns: Vec<String>,
}

Fields

When a response is generated, if there is more data to be listed, this parameter is present in the response and contains the value to use for the nextToken parameter in a subsequent pagination request. If there is no more data to be listed, this parameter is set to null.

The list of ARNs that specifies the rules packages returned by the action.

Trait Implementations

impl Default for ListRulesPackagesResponse
[src]

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

impl Debug for ListRulesPackagesResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListRulesPackagesResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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