[][src]Struct rusoto_batch::NodeOverrides

pub struct NodeOverrides {
    pub node_property_overrides: Option<Vec<NodePropertyOverride>>,
    pub num_nodes: Option<i64>,
}

Object representing any node overrides to a job definition that is used in a SubmitJob API operation.

Fields

node_property_overrides: Option<Vec<NodePropertyOverride>>

The node property overrides for the job.

num_nodes: Option<i64>

The number of nodes to use with a multi-node parallel job. This value overrides the number of nodes that are specified in the job definition. To use this override:

  • There must be at least one node range in your job definition that has an open upper boundary (such as : or n:).

  • The lower boundary of the node range specified in the job definition must be fewer than the number of nodes specified in the override.

  • The main node index specified in the job definition must be fewer than the number of nodes specified in the override.

Trait Implementations

impl Clone for NodeOverrides[src]

impl Debug for NodeOverrides[src]

impl Default for NodeOverrides[src]

impl PartialEq<NodeOverrides> for NodeOverrides[src]

impl Serialize for NodeOverrides[src]

impl StructuralPartialEq for NodeOverrides[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.