#[non_exhaustive]pub struct GroupProfileSummaryBuilder { /* private fields */ }Expand description
A builder for GroupProfileSummary.
Implementations§
source§impl GroupProfileSummaryBuilder
 
impl GroupProfileSummaryBuilder
sourcepub fn domain_id(self, input: impl Into<String>) -> Self
 
pub fn domain_id(self, input: impl Into<String>) -> Self
The ID of the Amazon DataZone domain of a group profile.
sourcepub fn set_domain_id(self, input: Option<String>) -> Self
 
pub fn set_domain_id(self, input: Option<String>) -> Self
The ID of the Amazon DataZone domain of a group profile.
sourcepub fn get_domain_id(&self) -> &Option<String>
 
pub fn get_domain_id(&self) -> &Option<String>
The ID of the Amazon DataZone domain of a group profile.
sourcepub fn status(self, input: GroupProfileStatus) -> Self
 
pub fn status(self, input: GroupProfileStatus) -> Self
The status of a group profile.
sourcepub fn set_status(self, input: Option<GroupProfileStatus>) -> Self
 
pub fn set_status(self, input: Option<GroupProfileStatus>) -> Self
The status of a group profile.
sourcepub fn get_status(&self) -> &Option<GroupProfileStatus>
 
pub fn get_status(&self) -> &Option<GroupProfileStatus>
The status of a group profile.
sourcepub fn group_name(self, input: impl Into<String>) -> Self
 
pub fn group_name(self, input: impl Into<String>) -> Self
The group name of a group profile.
sourcepub fn set_group_name(self, input: Option<String>) -> Self
 
pub fn set_group_name(self, input: Option<String>) -> Self
The group name of a group profile.
sourcepub fn get_group_name(&self) -> &Option<String>
 
pub fn get_group_name(&self) -> &Option<String>
The group name of a group profile.
sourcepub fn build(self) -> GroupProfileSummary
 
pub fn build(self) -> GroupProfileSummary
Consumes the builder and constructs a GroupProfileSummary.
Trait Implementations§
source§impl Clone for GroupProfileSummaryBuilder
 
impl Clone for GroupProfileSummaryBuilder
source§fn clone(&self) -> GroupProfileSummaryBuilder
 
fn clone(&self) -> GroupProfileSummaryBuilder
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 GroupProfileSummaryBuilder
 
impl Debug for GroupProfileSummaryBuilder
source§impl Default for GroupProfileSummaryBuilder
 
impl Default for GroupProfileSummaryBuilder
source§fn default() -> GroupProfileSummaryBuilder
 
fn default() -> GroupProfileSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GroupProfileSummaryBuilder
 
impl PartialEq for GroupProfileSummaryBuilder
source§fn eq(&self, other: &GroupProfileSummaryBuilder) -> bool
 
fn eq(&self, other: &GroupProfileSummaryBuilder) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GroupProfileSummaryBuilder
Auto Trait Implementations§
impl Freeze for GroupProfileSummaryBuilder
impl RefUnwindSafe for GroupProfileSummaryBuilder
impl Send for GroupProfileSummaryBuilder
impl Sync for GroupProfileSummaryBuilder
impl Unpin for GroupProfileSummaryBuilder
impl UnwindSafe for GroupProfileSummaryBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts 
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>
Converts 
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 moreCreates a shared type from an unshared type.