pub struct ProjectBuildBatchConfig {
pub combine_artifacts: Option<bool>,
pub restrictions: Option<BatchRestrictions>,
pub service_role: Option<String>,
pub timeout_in_mins: Option<i64>,
}
Expand description
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§
Source§impl Clone for ProjectBuildBatchConfig
impl Clone for ProjectBuildBatchConfig
Source§fn clone(&self) -> ProjectBuildBatchConfig
fn clone(&self) -> ProjectBuildBatchConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ProjectBuildBatchConfig
impl Debug for ProjectBuildBatchConfig
Source§impl Default for ProjectBuildBatchConfig
impl Default for ProjectBuildBatchConfig
Source§fn default() -> ProjectBuildBatchConfig
fn default() -> ProjectBuildBatchConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectBuildBatchConfig
impl<'de> Deserialize<'de> for ProjectBuildBatchConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProjectBuildBatchConfig
impl PartialEq for ProjectBuildBatchConfig
Source§impl Serialize for ProjectBuildBatchConfig
impl Serialize for ProjectBuildBatchConfig
impl StructuralPartialEq for ProjectBuildBatchConfig
Auto Trait Implementations§
impl Freeze for ProjectBuildBatchConfig
impl RefUnwindSafe for ProjectBuildBatchConfig
impl Send for ProjectBuildBatchConfig
impl Sync for ProjectBuildBatchConfig
impl Unpin for ProjectBuildBatchConfig
impl UnwindSafe for ProjectBuildBatchConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more