Struct rusoto_ec2::ModifyHostsResult[][src]

pub struct ModifyHostsResult {
    pub successful: Option<Vec<String>>,
    pub unsuccessful: Option<Vec<UnsuccessfulItem>>,
}

Contains the output of ModifyHosts.

Fields

The IDs of the Dedicated Hosts that were successfully modified.

The IDs of the Dedicated Hosts that could not be modified. Check whether the setting you requested can be used.

Trait Implementations

impl Default for ModifyHostsResult
[src]

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

impl Debug for ModifyHostsResult
[src]

Formats the value using the given formatter. Read more

impl Clone for ModifyHostsResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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