Struct aws_sdk_datapipeline::types::PipelineDescription
source · #[non_exhaustive]pub struct PipelineDescription {
pub pipeline_id: String,
pub name: String,
pub fields: Vec<Field>,
pub description: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Contains pipeline metadata.
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_id: String
The pipeline identifier that was assigned by AWS Data Pipeline. This is a string of the form df-297EG78HU43EEXAMPLE
.
name: String
The name of the pipeline.
fields: Vec<Field>
A list of read-only fields that contain metadata about the pipeline: @userId, @accountId, and @pipelineState.
description: Option<String>
Description of the pipeline.
A list of tags to associated with a pipeline. Tags let you control access to pipelines. For more information, see Controlling User Access to Pipelines in the AWS Data Pipeline Developer Guide.
Implementations§
source§impl PipelineDescription
impl PipelineDescription
sourcepub fn pipeline_id(&self) -> &str
pub fn pipeline_id(&self) -> &str
The pipeline identifier that was assigned by AWS Data Pipeline. This is a string of the form df-297EG78HU43EEXAMPLE
.
sourcepub fn fields(&self) -> &[Field]
pub fn fields(&self) -> &[Field]
A list of read-only fields that contain metadata about the pipeline: @userId, @accountId, and @pipelineState.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Description of the pipeline.
A list of tags to associated with a pipeline. Tags let you control access to pipelines. For more information, see Controlling User Access to Pipelines in the AWS Data Pipeline Developer Guide.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl PipelineDescription
impl PipelineDescription
sourcepub fn builder() -> PipelineDescriptionBuilder
pub fn builder() -> PipelineDescriptionBuilder
Creates a new builder-style object to manufacture PipelineDescription
.
Trait Implementations§
source§impl Clone for PipelineDescription
impl Clone for PipelineDescription
source§fn clone(&self) -> PipelineDescription
fn clone(&self) -> PipelineDescription
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PipelineDescription
impl Debug for PipelineDescription
source§impl PartialEq for PipelineDescription
impl PartialEq for PipelineDescription
source§fn eq(&self, other: &PipelineDescription) -> bool
fn eq(&self, other: &PipelineDescription) -> bool
self
and other
values to be equal, and is used
by ==
.