#[non_exhaustive]pub struct UpdateGroupOutputBuilder { /* private fields */ }
Expand description
A builder for UpdateGroupOutput
.
Implementations§
source§impl UpdateGroupOutputBuilder
impl UpdateGroupOutputBuilder
sourcepub fn group(self, input: Group) -> Self
pub fn group(self, input: Group) -> Self
The group that was updated. Contains the name of the group that was updated, the ARN of the group that was updated, the updated filter expression, and the updated insight configuration assigned to the group.
sourcepub fn set_group(self, input: Option<Group>) -> Self
pub fn set_group(self, input: Option<Group>) -> Self
The group that was updated. Contains the name of the group that was updated, the ARN of the group that was updated, the updated filter expression, and the updated insight configuration assigned to the group.
sourcepub fn get_group(&self) -> &Option<Group>
pub fn get_group(&self) -> &Option<Group>
The group that was updated. Contains the name of the group that was updated, the ARN of the group that was updated, the updated filter expression, and the updated insight configuration assigned to the group.
sourcepub fn build(self) -> UpdateGroupOutput
pub fn build(self) -> UpdateGroupOutput
Consumes the builder and constructs a UpdateGroupOutput
.
Trait Implementations§
source§impl Clone for UpdateGroupOutputBuilder
impl Clone for UpdateGroupOutputBuilder
source§fn clone(&self) -> UpdateGroupOutputBuilder
fn clone(&self) -> UpdateGroupOutputBuilder
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 UpdateGroupOutputBuilder
impl Debug for UpdateGroupOutputBuilder
source§impl Default for UpdateGroupOutputBuilder
impl Default for UpdateGroupOutputBuilder
source§fn default() -> UpdateGroupOutputBuilder
fn default() -> UpdateGroupOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UpdateGroupOutputBuilder
impl PartialEq for UpdateGroupOutputBuilder
impl StructuralPartialEq for UpdateGroupOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdateGroupOutputBuilder
impl RefUnwindSafe for UpdateGroupOutputBuilder
impl Send for UpdateGroupOutputBuilder
impl Sync for UpdateGroupOutputBuilder
impl Unpin for UpdateGroupOutputBuilder
impl UnwindSafe for UpdateGroupOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
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.