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]

[src]

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

impl Debug for UpdateDevicePoolRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateDevicePoolRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations