#[non_exhaustive]pub struct PipelineMetadataBuilder { /* private fields */ }
Expand description
A builder for PipelineMetadata
.
Implementations§
source§impl PipelineMetadataBuilder
impl PipelineMetadataBuilder
sourcepub fn pipeline_arn(self, input: impl Into<String>) -> Self
pub fn pipeline_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the pipeline.
sourcepub fn set_pipeline_arn(self, input: Option<String>) -> Self
pub fn set_pipeline_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the pipeline.
sourcepub fn created(self, input: DateTime) -> Self
pub fn created(self, input: DateTime) -> Self
The date and time the pipeline was created, in timestamp format.
sourcepub fn set_created(self, input: Option<DateTime>) -> Self
pub fn set_created(self, input: Option<DateTime>) -> Self
The date and time the pipeline was created, in timestamp format.
sourcepub fn updated(self, input: DateTime) -> Self
pub fn updated(self, input: DateTime) -> Self
The date and time the pipeline was last updated, in timestamp format.
sourcepub fn set_updated(self, input: Option<DateTime>) -> Self
pub fn set_updated(self, input: Option<DateTime>) -> Self
The date and time the pipeline was last updated, in timestamp format.
sourcepub fn build(self) -> PipelineMetadata
pub fn build(self) -> PipelineMetadata
Consumes the builder and constructs a PipelineMetadata
.
Trait Implementations§
source§impl Clone for PipelineMetadataBuilder
impl Clone for PipelineMetadataBuilder
source§fn clone(&self) -> PipelineMetadataBuilder
fn clone(&self) -> PipelineMetadataBuilder
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 PipelineMetadataBuilder
impl Debug for PipelineMetadataBuilder
source§impl Default for PipelineMetadataBuilder
impl Default for PipelineMetadataBuilder
source§fn default() -> PipelineMetadataBuilder
fn default() -> PipelineMetadataBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<PipelineMetadataBuilder> for PipelineMetadataBuilder
impl PartialEq<PipelineMetadataBuilder> for PipelineMetadataBuilder
source§fn eq(&self, other: &PipelineMetadataBuilder) -> bool
fn eq(&self, other: &PipelineMetadataBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.