pub struct ListPipelinesOutput {
pub has_more_results: Option<bool>,
pub marker: Option<String>,
pub pipeline_id_list: Vec<PipelineIdName>,
}
Expand description
Contains the output of ListPipelines.
Fields§
§has_more_results: Option<bool>
Indicates whether there are more results that can be obtained by a subsequent call.
marker: Option<String>
The starting point for the next page of results. To view the next page of results, call ListPipelinesOutput
again with this marker value. If the value is null, there are no more results.
pipeline_id_list: Vec<PipelineIdName>
The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition.
Trait Implementations§
Source§impl Clone for ListPipelinesOutput
impl Clone for ListPipelinesOutput
Source§fn clone(&self) -> ListPipelinesOutput
fn clone(&self) -> ListPipelinesOutput
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 ListPipelinesOutput
impl Debug for ListPipelinesOutput
Source§impl Default for ListPipelinesOutput
impl Default for ListPipelinesOutput
Source§fn default() -> ListPipelinesOutput
fn default() -> ListPipelinesOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListPipelinesOutput
impl<'de> Deserialize<'de> for ListPipelinesOutput
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 ListPipelinesOutput
impl PartialEq for ListPipelinesOutput
impl StructuralPartialEq for ListPipelinesOutput
Auto Trait Implementations§
impl Freeze for ListPipelinesOutput
impl RefUnwindSafe for ListPipelinesOutput
impl Send for ListPipelinesOutput
impl Sync for ListPipelinesOutput
impl Unpin for ListPipelinesOutput
impl UnwindSafe for ListPipelinesOutput
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