#[non_exhaustive]pub struct StartPipelineExecutionInput { /* private fields */ }
Implementations§
source§impl StartPipelineExecutionInput
impl StartPipelineExecutionInput
sourcepub fn pipeline_name(&self) -> Option<&str>
pub fn pipeline_name(&self) -> Option<&str>
The name of the pipeline.
sourcepub fn pipeline_execution_display_name(&self) -> Option<&str>
pub fn pipeline_execution_display_name(&self) -> Option<&str>
The display name of the pipeline execution.
sourcepub fn pipeline_parameters(&self) -> Option<&[Parameter]>
pub fn pipeline_parameters(&self) -> Option<&[Parameter]>
Contains a list of pipeline parameters. This list can be empty.
sourcepub fn pipeline_execution_description(&self) -> Option<&str>
pub fn pipeline_execution_description(&self) -> Option<&str>
The description of the pipeline execution.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than once.
sourcepub fn parallelism_configuration(&self) -> Option<&ParallelismConfiguration>
pub fn parallelism_configuration(&self) -> Option<&ParallelismConfiguration>
This configuration, if specified, overrides the parallelism configuration of the parent pipeline for this specific run.
source§impl StartPipelineExecutionInput
impl StartPipelineExecutionInput
sourcepub fn builder() -> StartPipelineExecutionInputBuilder
pub fn builder() -> StartPipelineExecutionInputBuilder
Creates a new builder-style object to manufacture StartPipelineExecutionInput
.
source§impl StartPipelineExecutionInput
impl StartPipelineExecutionInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<StartPipelineExecution, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( self, _config: &Config ) -> Result<Operation<StartPipelineExecution, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<StartPipelineExecution
>
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 PartialEq<StartPipelineExecutionInput> for StartPipelineExecutionInput
impl PartialEq<StartPipelineExecutionInput> for StartPipelineExecutionInput
source§fn eq(&self, other: &StartPipelineExecutionInput) -> bool
fn eq(&self, other: &StartPipelineExecutionInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.