#[non_exhaustive]pub struct SecurityGroupMembershipBuilder { /* private fields */ }
Expand description
A builder for SecurityGroupMembership
.
Implementations§
source§impl SecurityGroupMembershipBuilder
impl SecurityGroupMembershipBuilder
sourcepub fn security_group_id(self, input: impl Into<String>) -> Self
pub fn security_group_id(self, input: impl Into<String>) -> Self
The identifier of the cache security group.
sourcepub fn set_security_group_id(self, input: Option<String>) -> Self
pub fn set_security_group_id(self, input: Option<String>) -> Self
The identifier of the cache security group.
sourcepub fn get_security_group_id(&self) -> &Option<String>
pub fn get_security_group_id(&self) -> &Option<String>
The identifier of the cache security group.
sourcepub fn status(self, input: impl Into<String>) -> Self
pub fn status(self, input: impl Into<String>) -> Self
The status of the cache security group membership. The status changes whenever a cache security group is modified, or when the cache security groups assigned to a cluster are modified.
sourcepub fn set_status(self, input: Option<String>) -> Self
pub fn set_status(self, input: Option<String>) -> Self
The status of the cache security group membership. The status changes whenever a cache security group is modified, or when the cache security groups assigned to a cluster are modified.
sourcepub fn get_status(&self) -> &Option<String>
pub fn get_status(&self) -> &Option<String>
The status of the cache security group membership. The status changes whenever a cache security group is modified, or when the cache security groups assigned to a cluster are modified.
sourcepub fn build(self) -> SecurityGroupMembership
pub fn build(self) -> SecurityGroupMembership
Consumes the builder and constructs a SecurityGroupMembership
.
Trait Implementations§
source§impl Clone for SecurityGroupMembershipBuilder
impl Clone for SecurityGroupMembershipBuilder
source§fn clone(&self) -> SecurityGroupMembershipBuilder
fn clone(&self) -> SecurityGroupMembershipBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for SecurityGroupMembershipBuilder
impl Default for SecurityGroupMembershipBuilder
source§fn default() -> SecurityGroupMembershipBuilder
fn default() -> SecurityGroupMembershipBuilder
source§impl PartialEq for SecurityGroupMembershipBuilder
impl PartialEq for SecurityGroupMembershipBuilder
source§fn eq(&self, other: &SecurityGroupMembershipBuilder) -> bool
fn eq(&self, other: &SecurityGroupMembershipBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SecurityGroupMembershipBuilder
Auto Trait Implementations§
impl Freeze for SecurityGroupMembershipBuilder
impl RefUnwindSafe for SecurityGroupMembershipBuilder
impl Send for SecurityGroupMembershipBuilder
impl Sync for SecurityGroupMembershipBuilder
impl Unpin for SecurityGroupMembershipBuilder
impl UnwindSafe for SecurityGroupMembershipBuilder
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