Struct rusoto_discovery::ListConfigurationsResponse [] [src]

pub struct ListConfigurationsResponse {
    pub configurations: Option<Vec<HashMap<String, String>>>,
    pub next_token: Option<String>,
}

Fields

Returns configuration details, including the configuration ID, attribute names, and attribute values.

Token to retrieve the next set of results. For example, if your call to ListConfigurations returned 100 items, but you set ListConfigurationsRequest$maxResults to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.

Trait Implementations

impl Default for ListConfigurationsResponse
[src]

[src]

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

impl Debug for ListConfigurationsResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListConfigurationsResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations