#[non_exhaustive]pub struct ListPipelinesOutput {
pub pipeline_summaries: Option<Vec<PipelineSummary>>,
pub next_token: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.pipeline_summaries: Option<Vec<PipelineSummary>>
Contains a sorted list of PipelineSummary
objects matching the specified filters. Each PipelineSummary
consists of PipelineArn, PipelineName, ExperimentName, PipelineDescription, CreationTime, LastModifiedTime, LastRunTime, and RoleArn. This list can be empty.
next_token: Option<String>
If the result of the previous ListPipelines
request was truncated, the response includes a NextToken
. To retrieve the next set of pipelines, use the token in the next request.
Implementations§
source§impl ListPipelinesOutput
impl ListPipelinesOutput
sourcepub fn pipeline_summaries(&self) -> &[PipelineSummary]
pub fn pipeline_summaries(&self) -> &[PipelineSummary]
Contains a sorted list of PipelineSummary
objects matching the specified filters. Each PipelineSummary
consists of PipelineArn, PipelineName, ExperimentName, PipelineDescription, CreationTime, LastModifiedTime, LastRunTime, and RoleArn. This list can be empty.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .pipeline_summaries.is_none()
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the result of the previous ListPipelines
request was truncated, the response includes a NextToken
. To retrieve the next set of pipelines, use the token in the next request.
source§impl ListPipelinesOutput
impl ListPipelinesOutput
sourcepub fn builder() -> ListPipelinesOutputBuilder
pub fn builder() -> ListPipelinesOutputBuilder
Creates a new builder-style object to manufacture ListPipelinesOutput
.
Trait Implementations§
source§impl Clone for ListPipelinesOutput
impl Clone for ListPipelinesOutput
source§fn clone(&self) -> ListPipelinesOutput
fn clone(&self) -> ListPipelinesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListPipelinesOutput
impl Debug for ListPipelinesOutput
source§impl PartialEq for ListPipelinesOutput
impl PartialEq for ListPipelinesOutput
source§fn eq(&self, other: &ListPipelinesOutput) -> bool
fn eq(&self, other: &ListPipelinesOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListPipelinesOutput
impl RequestId for ListPipelinesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.