pub struct Build {Show 33 fields
pub arn: Option<String>,
pub artifacts: Option<BuildArtifacts>,
pub auto_retry_config: Option<AutoRetryConfig>,
pub build_batch_arn: Option<String>,
pub build_complete: Option<bool>,
pub build_number: Option<i64>,
pub build_status: Option<String>,
pub cache: Option<ProjectCache>,
pub current_phase: Option<String>,
pub debug_session: Option<DebugSession>,
pub encryption_key: Option<String>,
pub end_time: Option<f64>,
pub environment: Option<ProjectEnvironment>,
pub exported_environment_variables: Option<Vec<ExportedEnvironmentVariable>>,
pub file_system_locations: Option<Vec<ProjectFileSystemLocation>>,
pub id: Option<String>,
pub initiator: Option<String>,
pub logs: Option<LogsLocation>,
pub network_interface: Option<NetworkInterface>,
pub phases: Option<Vec<BuildPhase>>,
pub project_name: Option<String>,
pub queued_timeout_in_minutes: Option<i32>,
pub report_arns: Option<Vec<String>>,
pub resolved_source_version: Option<String>,
pub secondary_artifacts: Option<Vec<BuildArtifacts>>,
pub secondary_source_versions: Option<Vec<ProjectSourceVersion>>,
pub secondary_sources: Option<Vec<ProjectSource>>,
pub service_role: Option<String>,
pub source: Option<ProjectSource>,
pub source_version: Option<String>,
pub start_time: Option<f64>,
pub timeout_in_minutes: Option<i32>,
pub vpc_config: Option<VpcConfig>,
}Fields§
§arn: Option<String>§artifacts: Option<BuildArtifacts>§auto_retry_config: Option<AutoRetryConfig>§build_batch_arn: Option<String>§build_complete: Option<bool>§build_number: Option<i64>§build_status: Option<String>§cache: Option<ProjectCache>§current_phase: Option<String>§debug_session: Option<DebugSession>§encryption_key: Option<String>§end_time: Option<f64>§environment: Option<ProjectEnvironment>§exported_environment_variables: Option<Vec<ExportedEnvironmentVariable>>§file_system_locations: Option<Vec<ProjectFileSystemLocation>>§id: Option<String>§initiator: Option<String>§logs: Option<LogsLocation>§network_interface: Option<NetworkInterface>§phases: Option<Vec<BuildPhase>>§project_name: Option<String>§queued_timeout_in_minutes: Option<i32>§report_arns: Option<Vec<String>>§resolved_source_version: Option<String>§secondary_artifacts: Option<Vec<BuildArtifacts>>§secondary_source_versions: Option<Vec<ProjectSourceVersion>>§secondary_sources: Option<Vec<ProjectSource>>§service_role: Option<String>§source: Option<ProjectSource>§source_version: Option<String>§start_time: Option<f64>§timeout_in_minutes: Option<i32>§vpc_config: Option<VpcConfig>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Build
impl<'de> Deserialize<'de> for Build
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
Auto Trait Implementations§
impl Freeze for Build
impl RefUnwindSafe for Build
impl Send for Build
impl Sync for Build
impl Unpin for Build
impl UnsafeUnpin for Build
impl UnwindSafe for Build
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.