[][src]Struct rusoto_batch::ComputeResourceUpdate

pub struct ComputeResourceUpdate {
    pub desiredv_cpus: Option<i64>,
    pub maxv_cpus: Option<i64>,
    pub minv_cpus: Option<i64>,
}

An object representing the attributes of a compute environment that can be updated.

Fields

desiredv_cpus: Option<i64>

The desired number of Amazon EC2 vCPUS in the compute environment.

maxv_cpus: Option<i64>

The maximum number of Amazon EC2 vCPUs that an environment can reach.

minv_cpus: Option<i64>

The minimum number of Amazon EC2 vCPUs that an environment should maintain.

Trait Implementations

impl Clone for ComputeResourceUpdate[src]

impl Debug for ComputeResourceUpdate[src]

impl Default for ComputeResourceUpdate[src]

impl PartialEq<ComputeResourceUpdate> for ComputeResourceUpdate[src]

impl Serialize for ComputeResourceUpdate[src]

impl StructuralPartialEq for ComputeResourceUpdate[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> Sealed<T> for T where
    T: ?Sized

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.