pub struct GetPipelineInput {
pub name: String,
pub version: Option<i64>,
}
Expand description
Represents the input of a GetPipeline
action.
Fields§
§name: String
The name of the pipeline for which you want to get information. Pipeline names must be unique under an AWS user account.
version: Option<i64>
The version number of the pipeline. If you do not specify a version, defaults to the current version.
Trait Implementations§
Source§impl Clone for GetPipelineInput
impl Clone for GetPipelineInput
Source§fn clone(&self) -> GetPipelineInput
fn clone(&self) -> GetPipelineInput
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 Debug for GetPipelineInput
impl Debug for GetPipelineInput
Source§impl Default for GetPipelineInput
impl Default for GetPipelineInput
Source§fn default() -> GetPipelineInput
fn default() -> GetPipelineInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetPipelineInput
impl PartialEq for GetPipelineInput
Source§impl Serialize for GetPipelineInput
impl Serialize for GetPipelineInput
impl StructuralPartialEq for GetPipelineInput
Auto Trait Implementations§
impl Freeze for GetPipelineInput
impl RefUnwindSafe for GetPipelineInput
impl Send for GetPipelineInput
impl Sync for GetPipelineInput
impl Unpin for GetPipelineInput
impl UnwindSafe for GetPipelineInput
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