Struct aws_sdk_datapipeline::input::ActivatePipelineInput [−][src]
#[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
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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ActivatePipeline, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ActivatePipeline, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ActivatePipeline
>
Creates a new builder-style object to manufacture ActivatePipelineInput
The ID of the pipeline.
A list of parameter values to pass to the pipeline at activation.
The date and time to resume the pipeline. By default, the pipeline resumes from the last completed execution.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ActivatePipelineInput
impl Send for ActivatePipelineInput
impl Sync for ActivatePipelineInput
impl Unpin for ActivatePipelineInput
impl UnwindSafe for ActivatePipelineInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more