#[non_exhaustive]pub struct LineageGroupSummaryBuilder { /* private fields */ }
Expand description
A builder for LineageGroupSummary
.
Implementations§
source§impl LineageGroupSummaryBuilder
impl LineageGroupSummaryBuilder
sourcepub fn lineage_group_arn(self, input: impl Into<String>) -> Self
pub fn lineage_group_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the lineage group resource.
sourcepub fn set_lineage_group_arn(self, input: Option<String>) -> Self
pub fn set_lineage_group_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the lineage group resource.
sourcepub fn get_lineage_group_arn(&self) -> &Option<String>
pub fn get_lineage_group_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the lineage group resource.
sourcepub fn lineage_group_name(self, input: impl Into<String>) -> Self
pub fn lineage_group_name(self, input: impl Into<String>) -> Self
The name or Amazon Resource Name (ARN) of the lineage group.
sourcepub fn set_lineage_group_name(self, input: Option<String>) -> Self
pub fn set_lineage_group_name(self, input: Option<String>) -> Self
The name or Amazon Resource Name (ARN) of the lineage group.
sourcepub fn get_lineage_group_name(&self) -> &Option<String>
pub fn get_lineage_group_name(&self) -> &Option<String>
The name or Amazon Resource Name (ARN) of the lineage group.
sourcepub fn display_name(self, input: impl Into<String>) -> Self
pub fn display_name(self, input: impl Into<String>) -> Self
The display name of the lineage group summary.
sourcepub fn set_display_name(self, input: Option<String>) -> Self
pub fn set_display_name(self, input: Option<String>) -> Self
The display name of the lineage group summary.
sourcepub fn get_display_name(&self) -> &Option<String>
pub fn get_display_name(&self) -> &Option<String>
The display name of the lineage group summary.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The creation time of the lineage group summary.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The creation time of the lineage group summary.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
The creation time of the lineage group summary.
sourcepub fn last_modified_time(self, input: DateTime) -> Self
pub fn last_modified_time(self, input: DateTime) -> Self
The last modified time of the lineage group summary.
sourcepub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
The last modified time of the lineage group summary.
sourcepub fn get_last_modified_time(&self) -> &Option<DateTime>
pub fn get_last_modified_time(&self) -> &Option<DateTime>
The last modified time of the lineage group summary.
sourcepub fn build(self) -> LineageGroupSummary
pub fn build(self) -> LineageGroupSummary
Consumes the builder and constructs a LineageGroupSummary
.
Trait Implementations§
source§impl Clone for LineageGroupSummaryBuilder
impl Clone for LineageGroupSummaryBuilder
source§fn clone(&self) -> LineageGroupSummaryBuilder
fn clone(&self) -> LineageGroupSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for LineageGroupSummaryBuilder
impl Debug for LineageGroupSummaryBuilder
source§impl Default for LineageGroupSummaryBuilder
impl Default for LineageGroupSummaryBuilder
source§fn default() -> LineageGroupSummaryBuilder
fn default() -> LineageGroupSummaryBuilder
source§impl PartialEq for LineageGroupSummaryBuilder
impl PartialEq for LineageGroupSummaryBuilder
source§fn eq(&self, other: &LineageGroupSummaryBuilder) -> bool
fn eq(&self, other: &LineageGroupSummaryBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LineageGroupSummaryBuilder
Auto Trait Implementations§
impl Freeze for LineageGroupSummaryBuilder
impl RefUnwindSafe for LineageGroupSummaryBuilder
impl Send for LineageGroupSummaryBuilder
impl Sync for LineageGroupSummaryBuilder
impl Unpin for LineageGroupSummaryBuilder
impl UnwindSafe for LineageGroupSummaryBuilder
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