pub struct ListPipelinesOutput {
pub next_token: Option<String>,
pub pipelines: Option<Vec<PipelineSummary>>,
}
Expand description
Represents the output of a ListPipelines
action.
Fields§
§next_token: Option<String>
If the amount of returned information is significantly large, an identifier is also returned. It can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
pipelines: Option<Vec<PipelineSummary>>
The list of pipelines.
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