[][src]Struct rusoto_devicefarm::UpdateProjectRequest

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

arn: String

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

default_job_timeout_minutes: Option<i64>

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

name: Option<String>

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

Trait Implementations

impl Clone for UpdateProjectRequest[src]

impl Debug for UpdateProjectRequest[src]

impl Default for UpdateProjectRequest[src]

impl PartialEq<UpdateProjectRequest> for UpdateProjectRequest[src]

impl Serialize for UpdateProjectRequest[src]

impl StructuralPartialEq for UpdateProjectRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.