#[non_exhaustive]pub struct ActivatePipelineInput {
pub pipeline_id: Option<String>,
pub parameter_values: Option<Vec<ParameterValue>>,
pub start_timestamp: Option<DateTime>,
}
Expand description
Contains the parameters for ActivatePipeline.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.pipeline_id: Option<String>
The ID of the pipeline.
parameter_values: Option<Vec<ParameterValue>>
A list of parameter values to pass to the pipeline at activation.
start_timestamp: Option<DateTime>
The date and time to resume the pipeline. By default, the pipeline resumes from the last completed execution.
Implementations§
source§impl ActivatePipelineInput
impl ActivatePipelineInput
sourcepub fn pipeline_id(&self) -> Option<&str>
pub fn pipeline_id(&self) -> Option<&str>
The ID of the pipeline.
sourcepub fn parameter_values(&self) -> &[ParameterValue]
pub fn parameter_values(&self) -> &[ParameterValue]
A list of parameter values to pass to the pipeline at activation.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .parameter_values.is_none()
.
sourcepub fn start_timestamp(&self) -> Option<&DateTime>
pub fn start_timestamp(&self) -> Option<&DateTime>
The date and time to resume the pipeline. By default, the pipeline resumes from the last completed execution.
source§impl ActivatePipelineInput
impl ActivatePipelineInput
sourcepub fn builder() -> ActivatePipelineInputBuilder
pub fn builder() -> ActivatePipelineInputBuilder
Creates a new builder-style object to manufacture ActivatePipelineInput
.
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 PartialEq for ActivatePipelineInput
impl PartialEq 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.