pub struct UpdatePipelineExecutionRequest {
pub pipeline_execution_arn: String,
pub pipeline_execution_description: Option<String>,
pub pipeline_execution_display_name: Option<String>,
}
Fields§
§pipeline_execution_arn: String
The Amazon Resource Name (ARN) of the pipeline execution.
pipeline_execution_description: Option<String>
The description of the pipeline execution.
pipeline_execution_display_name: Option<String>
The display name of the pipeline execution.
Trait Implementations§
Source§impl Clone for UpdatePipelineExecutionRequest
impl Clone for UpdatePipelineExecutionRequest
Source§fn clone(&self) -> UpdatePipelineExecutionRequest
fn clone(&self) -> UpdatePipelineExecutionRequest
Returns a duplicate 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 Default for UpdatePipelineExecutionRequest
impl Default for UpdatePipelineExecutionRequest
Source§fn default() -> UpdatePipelineExecutionRequest
fn default() -> UpdatePipelineExecutionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdatePipelineExecutionRequest
impl PartialEq for UpdatePipelineExecutionRequest
Source§fn eq(&self, other: &UpdatePipelineExecutionRequest) -> bool
fn eq(&self, other: &UpdatePipelineExecutionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdatePipelineExecutionRequest
Auto Trait Implementations§
impl Freeze for UpdatePipelineExecutionRequest
impl RefUnwindSafe for UpdatePipelineExecutionRequest
impl Send for UpdatePipelineExecutionRequest
impl Sync for UpdatePipelineExecutionRequest
impl Unpin for UpdatePipelineExecutionRequest
impl UnwindSafe for UpdatePipelineExecutionRequest
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