[][src]Struct rusoto_codebuild::ProjectBuildBatchConfig

pub struct ProjectBuildBatchConfig {
    pub combine_artifacts: Option<bool>,
    pub restrictions: Option<BatchRestrictions>,
    pub service_role: Option<String>,
    pub timeout_in_mins: Option<i64>,
}

Contains configuration information about a batch build project.

Fields

combine_artifacts: Option<bool>

Specifies if the build artifacts for the batch build should be combined into a single artifact location.

restrictions: Option<BatchRestrictions>

A BatchRestrictions object that specifies the restrictions for the batch build.

service_role: Option<String>

Specifies the service role ARN for the batch build project.

timeout_in_mins: Option<i64>

Specifies the maximum amount of time, in minutes, that the batch build must be completed in.

Trait Implementations

impl Clone for ProjectBuildBatchConfig[src]

impl Debug for ProjectBuildBatchConfig[src]

impl Default for ProjectBuildBatchConfig[src]

impl<'de> Deserialize<'de> for ProjectBuildBatchConfig[src]

impl PartialEq<ProjectBuildBatchConfig> for ProjectBuildBatchConfig[src]

impl Serialize for ProjectBuildBatchConfig[src]

impl StructuralPartialEq for ProjectBuildBatchConfig[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.