pub struct PipelineIdName {
pub id: Option<String>,
pub name: Option<String>,
}
Expand description
Contains the name and identifier of a pipeline.
Fields§
§id: Option<String>
The ID of the pipeline that was assigned by AWS Data Pipeline. This is a string of the form df-297EG78HU43EEXAMPLE
.
name: Option<String>
The name of the pipeline.
Trait Implementations§
Source§impl Clone for PipelineIdName
impl Clone for PipelineIdName
Source§fn clone(&self) -> PipelineIdName
fn clone(&self) -> PipelineIdName
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 PipelineIdName
impl Debug for PipelineIdName
Source§impl Default for PipelineIdName
impl Default for PipelineIdName
Source§fn default() -> PipelineIdName
fn default() -> PipelineIdName
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PipelineIdName
impl<'de> Deserialize<'de> for PipelineIdName
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PipelineIdName
impl PartialEq for PipelineIdName
impl StructuralPartialEq for PipelineIdName
Auto Trait Implementations§
impl Freeze for PipelineIdName
impl RefUnwindSafe for PipelineIdName
impl Send for PipelineIdName
impl Sync for PipelineIdName
impl Unpin for PipelineIdName
impl UnwindSafe for PipelineIdName
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