Struct rusoto_mgh::ListDiscoveredResourcesResult[][src]

pub struct ListDiscoveredResourcesResult {
    pub discovered_resource_list: Option<Vec<DiscoveredResource>>,
    pub next_token: Option<String>,
}

Fields

Returned list of discovered resources associated with the given MigrationTask.

If there are more discovered resources than the max result, return the next token to be passed to the next call as a bookmark of where to start from.

Trait Implementations

impl Default for ListDiscoveredResourcesResult
[src]

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

impl Debug for ListDiscoveredResourcesResult
[src]

Formats the value using the given formatter. Read more

impl Clone for ListDiscoveredResourcesResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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