pub struct ExecutionTrigger {
pub trigger_detail: Option<String>,
pub trigger_type: Option<String>,
}
Expand description
The interaction or event that started a pipeline execution.
Fields§
§trigger_detail: Option<String>
Detail related to the event that started a pipeline execution, such as the webhook ARN of the webhook that triggered the pipeline execution or the user ARN for a user-initiated start-pipeline-execution
CLI command.
trigger_type: Option<String>
The type of change-detection method, command, or user interaction that started a pipeline execution.
Trait Implementations§
Source§impl Clone for ExecutionTrigger
impl Clone for ExecutionTrigger
Source§fn clone(&self) -> ExecutionTrigger
fn clone(&self) -> ExecutionTrigger
Returns a copy 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 ExecutionTrigger
impl Debug for ExecutionTrigger
Source§impl Default for ExecutionTrigger
impl Default for ExecutionTrigger
Source§fn default() -> ExecutionTrigger
fn default() -> ExecutionTrigger
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecutionTrigger
impl<'de> Deserialize<'de> for ExecutionTrigger
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 ExecutionTrigger
impl PartialEq for ExecutionTrigger
impl StructuralPartialEq for ExecutionTrigger
Auto Trait Implementations§
impl Freeze for ExecutionTrigger
impl RefUnwindSafe for ExecutionTrigger
impl Send for ExecutionTrigger
impl Sync for ExecutionTrigger
impl Unpin for ExecutionTrigger
impl UnwindSafe for ExecutionTrigger
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