Struct rusoto_devicefarm::UpdateDevicePoolRequest[][src]

pub struct UpdateDevicePoolRequest {
    pub arn: String,
    pub description: Option<String>,
    pub name: Option<String>,
    pub rules: Option<Vec<Rule>>,
}

Represents a request to the update device pool operation.

Fields

The Amazon Resourc Name (ARN) of the Device Farm device pool you wish to update.

A description of the device pool you wish to update.

A string representing the name of the device pool you wish to update.

Represents the rules you wish to modify for the device pool. Updating rules is optional; however, if you choose to update rules for your request, the update will replace the existing rules.

Trait Implementations

impl Default for UpdateDevicePoolRequest
[src]

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

impl Debug for UpdateDevicePoolRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateDevicePoolRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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