Struct rusoto_devicefarm::CreateProjectRequest[][src]

pub struct CreateProjectRequest {
    pub default_job_timeout_minutes: Option<i64>,
    pub name: String,
}

Represents a request to the create project operation.

Fields

Sets the execution timeout value (in minutes) for a project. All test runs in this project will use the specified execution timeout value unless overridden when scheduling a run.

The project's name.

Trait Implementations

impl Default for CreateProjectRequest
[src]

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

impl Debug for CreateProjectRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateProjectRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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