pub struct AwsCodeBuildHeartbeatData {Show 21 fields
pub status: BuildHeartbeatStatus,
pub project_name: String,
pub project_arn: Option<String>,
pub description: Option<String>,
pub source_type: Option<String>,
pub artifacts_type: Option<String>,
pub artifacts_encryption_disabled: Option<bool>,
pub environment_type: Option<String>,
pub environment_image: Option<String>,
pub compute_type: Option<String>,
pub image_pull_credentials_type: Option<String>,
pub privileged_mode: Option<bool>,
pub environment_variable_count: u32,
pub service_role_present: bool,
pub encryption_key_present: bool,
pub cloud_watch_logs_status: Option<String>,
pub s3_logs_status: Option<String>,
pub timeout_in_minutes: Option<i32>,
pub queued_timeout_in_minutes: Option<i32>,
pub created: Option<f64>,
pub last_modified: Option<f64>,
}Fields§
§status: BuildHeartbeatStatus§project_name: String§project_arn: Option<String>§description: Option<String>§source_type: Option<String>§artifacts_type: Option<String>§artifacts_encryption_disabled: Option<bool>§environment_type: Option<String>§environment_image: Option<String>§compute_type: Option<String>§image_pull_credentials_type: Option<String>§privileged_mode: Option<bool>§environment_variable_count: u32§service_role_present: bool§encryption_key_present: bool§cloud_watch_logs_status: Option<String>§s3_logs_status: Option<String>§timeout_in_minutes: Option<i32>§queued_timeout_in_minutes: Option<i32>§created: Option<f64>§last_modified: Option<f64>Trait Implementations§
Source§impl Clone for AwsCodeBuildHeartbeatData
impl Clone for AwsCodeBuildHeartbeatData
Source§fn clone(&self) -> AwsCodeBuildHeartbeatData
fn clone(&self) -> AwsCodeBuildHeartbeatData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AwsCodeBuildHeartbeatData
impl Debug for AwsCodeBuildHeartbeatData
Source§impl<'de> Deserialize<'de> for AwsCodeBuildHeartbeatData
impl<'de> Deserialize<'de> for AwsCodeBuildHeartbeatData
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 AwsCodeBuildHeartbeatData
impl PartialEq for AwsCodeBuildHeartbeatData
Source§fn eq(&self, other: &AwsCodeBuildHeartbeatData) -> bool
fn eq(&self, other: &AwsCodeBuildHeartbeatData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AwsCodeBuildHeartbeatData
Auto Trait Implementations§
impl Freeze for AwsCodeBuildHeartbeatData
impl RefUnwindSafe for AwsCodeBuildHeartbeatData
impl Send for AwsCodeBuildHeartbeatData
impl Sync for AwsCodeBuildHeartbeatData
impl Unpin for AwsCodeBuildHeartbeatData
impl UnsafeUnpin for AwsCodeBuildHeartbeatData
impl UnwindSafe for AwsCodeBuildHeartbeatData
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