Struct aws_sdk_codepipeline::operation::start_pipeline_execution::StartPipelineExecutionInput
source · #[non_exhaustive]pub struct StartPipelineExecutionInput {
pub name: Option<String>,
pub variables: Option<Vec<PipelineVariable>>,
pub client_request_token: Option<String>,
}
Expand description
Represents the input of a StartPipelineExecution
action.
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.name: Option<String>
The name of the pipeline to start.
variables: Option<Vec<PipelineVariable>>
A list that overrides pipeline variables for a pipeline execution that's being started. Variable names must match [A-Za-z0-9@\-_]+
, and the values can be anything except an empty string.
client_request_token: Option<String>
The system-generated unique ID used to identify a unique execution request.
Implementations§
source§impl StartPipelineExecutionInput
impl StartPipelineExecutionInput
sourcepub fn variables(&self) -> Option<&[PipelineVariable]>
pub fn variables(&self) -> Option<&[PipelineVariable]>
A list that overrides pipeline variables for a pipeline execution that's being started. Variable names must match [A-Za-z0-9@\-_]+
, and the values can be anything except an empty string.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
The system-generated unique ID used to identify a unique execution request.
source§impl StartPipelineExecutionInput
impl StartPipelineExecutionInput
sourcepub fn builder() -> StartPipelineExecutionInputBuilder
pub fn builder() -> StartPipelineExecutionInputBuilder
Creates a new builder-style object to manufacture StartPipelineExecutionInput
.
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 for StartPipelineExecutionInput
impl PartialEq 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 ==
.impl StructuralPartialEq for StartPipelineExecutionInput
Auto Trait Implementations§
impl RefUnwindSafe for StartPipelineExecutionInput
impl Send for StartPipelineExecutionInput
impl Sync for StartPipelineExecutionInput
impl Unpin for StartPipelineExecutionInput
impl UnwindSafe for StartPipelineExecutionInput
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