Struct rusoto_devicefarm::CreateDevicePoolRequest[][src]

pub struct CreateDevicePoolRequest {
    pub description: Option<String>,
    pub name: String,
    pub project_arn: String,
    pub rules: Vec<Rule>,
}

Represents a request to the create device pool operation.

Fields

The device pool's description.

The device pool's name.

The ARN of the project for the device pool.

The device pool's rules.

Trait Implementations

impl Default for CreateDevicePoolRequest
[src]

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

impl Debug for CreateDevicePoolRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateDevicePoolRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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