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