Struct rusoto_devicefarm::UpdateProjectRequest[][src]

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

Represents a request to the update project operation.

Fields

The Amazon Resource Name (ARN) of the project whose name you wish to update.

The number of minutes a test run in the project will execute before it times out.

A string representing the new name of the project that you are updating.

Trait Implementations

impl Default for UpdateProjectRequest
[src]

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

impl Debug for UpdateProjectRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateProjectRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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