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
impl StructuralPartialEq for PipelineDescription
Auto Trait Implementations§
impl Freeze for PipelineDescription
impl RefUnwindSafe for PipelineDescription
impl Send for PipelineDescription
impl Sync for PipelineDescription
impl Unpin for PipelineDescription
impl UnwindSafe for PipelineDescription
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more