pub struct ActivatePipelineInput {
pub parameter_values: Option<Vec<ParameterValue>>,
pub pipeline_id: String,
pub start_timestamp: Option<f64>,
}
Expand description
Contains the parameters for ActivatePipeline.
Fields§
§parameter_values: Option<Vec<ParameterValue>>
A list of parameter values to pass to the pipeline at activation.
pipeline_id: String
The ID of the pipeline.
start_timestamp: Option<f64>
The date and time to resume the pipeline. By default, the pipeline resumes from the last completed execution.
Trait Implementations§
Source§impl Clone for ActivatePipelineInput
impl Clone for ActivatePipelineInput
Source§fn clone(&self) -> ActivatePipelineInput
fn clone(&self) -> ActivatePipelineInput
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 ActivatePipelineInput
impl Debug for ActivatePipelineInput
Source§impl Default for ActivatePipelineInput
impl Default for ActivatePipelineInput
Source§fn default() -> ActivatePipelineInput
fn default() -> ActivatePipelineInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ActivatePipelineInput
impl PartialEq for ActivatePipelineInput
Source§impl Serialize for ActivatePipelineInput
impl Serialize for ActivatePipelineInput
impl StructuralPartialEq for ActivatePipelineInput
Auto Trait Implementations§
impl Freeze for ActivatePipelineInput
impl RefUnwindSafe for ActivatePipelineInput
impl Send for ActivatePipelineInput
impl Sync for ActivatePipelineInput
impl Unpin for ActivatePipelineInput
impl UnwindSafe for ActivatePipelineInput
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