#[non_exhaustive]pub struct GetPipelineExecutionInput {
pub pipeline_name: Option<String>,
pub pipeline_execution_id: Option<String>,
}
Expand description
Represents the input of a GetPipelineExecution
action.
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_name: Option<String>
The name of the pipeline about which you want to get execution details.
pipeline_execution_id: Option<String>
The ID of the pipeline execution about which you want to get execution details.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetPipelineExecution, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetPipelineExecution, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GetPipelineExecution
>
Creates a new builder-style object to manufacture GetPipelineExecutionInput
The name of the pipeline about which you want to get execution details.
The ID of the pipeline execution about which you want to get execution details.
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 GetPipelineExecutionInput
impl Send for GetPipelineExecutionInput
impl Sync for GetPipelineExecutionInput
impl Unpin for GetPipelineExecutionInput
impl UnwindSafe for GetPipelineExecutionInput
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