pub struct StartPipelineExecutionInput {
pub client_request_token: Option<String>,
pub name: String,
}
Expand description
Represents the input of a StartPipelineExecution
action.
Fields§
§client_request_token: Option<String>
The system-generated unique ID used to identify a unique execution request.
name: String
The name of the pipeline to start.
Trait Implementations§
Source§impl Clone for StartPipelineExecutionInput
impl Clone for StartPipelineExecutionInput
Source§fn clone(&self) -> StartPipelineExecutionInput
fn clone(&self) -> StartPipelineExecutionInput
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 StartPipelineExecutionInput
impl Debug for StartPipelineExecutionInput
Source§impl Default for StartPipelineExecutionInput
impl Default for StartPipelineExecutionInput
Source§fn default() -> StartPipelineExecutionInput
fn default() -> StartPipelineExecutionInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for StartPipelineExecutionInput
Auto Trait Implementations§
impl Freeze for StartPipelineExecutionInput
impl RefUnwindSafe for StartPipelineExecutionInput
impl Send for StartPipelineExecutionInput
impl Sync for StartPipelineExecutionInput
impl Unpin for StartPipelineExecutionInput
impl UnwindSafe for StartPipelineExecutionInput
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