#[non_exhaustive]pub struct SecurityConfigSummaryBuilder { /* private fields */ }
Expand description
A builder for SecurityConfigSummary
.
Implementations§
source§impl SecurityConfigSummaryBuilder
impl SecurityConfigSummaryBuilder
sourcepub fn id(self, input: impl Into<String>) -> Self
pub fn id(self, input: impl Into<String>) -> Self
The unique identifier of the security configuration.
sourcepub fn set_id(self, input: Option<String>) -> Self
pub fn set_id(self, input: Option<String>) -> Self
The unique identifier of the security configuration.
sourcepub fn type(self, input: SecurityConfigType) -> Self
pub fn type(self, input: SecurityConfigType) -> Self
The type of security configuration.
sourcepub fn set_type(self, input: Option<SecurityConfigType>) -> Self
pub fn set_type(self, input: Option<SecurityConfigType>) -> Self
The type of security configuration.
sourcepub fn get_type(&self) -> &Option<SecurityConfigType>
pub fn get_type(&self) -> &Option<SecurityConfigType>
The type of security configuration.
sourcepub fn config_version(self, input: impl Into<String>) -> Self
pub fn config_version(self, input: impl Into<String>) -> Self
The version of the security configuration.
sourcepub fn set_config_version(self, input: Option<String>) -> Self
pub fn set_config_version(self, input: Option<String>) -> Self
The version of the security configuration.
sourcepub fn get_config_version(&self) -> &Option<String>
pub fn get_config_version(&self) -> &Option<String>
The version of the security configuration.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the security configuration.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the security configuration.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of the security configuration.
sourcepub fn created_date(self, input: i64) -> Self
pub fn created_date(self, input: i64) -> Self
The Epoch time when the security configuration was created.
sourcepub fn set_created_date(self, input: Option<i64>) -> Self
pub fn set_created_date(self, input: Option<i64>) -> Self
The Epoch time when the security configuration was created.
sourcepub fn get_created_date(&self) -> &Option<i64>
pub fn get_created_date(&self) -> &Option<i64>
The Epoch time when the security configuration was created.
sourcepub fn last_modified_date(self, input: i64) -> Self
pub fn last_modified_date(self, input: i64) -> Self
The timestamp of when the configuration was last modified.
sourcepub fn set_last_modified_date(self, input: Option<i64>) -> Self
pub fn set_last_modified_date(self, input: Option<i64>) -> Self
The timestamp of when the configuration was last modified.
sourcepub fn get_last_modified_date(&self) -> &Option<i64>
pub fn get_last_modified_date(&self) -> &Option<i64>
The timestamp of when the configuration was last modified.
sourcepub fn build(self) -> SecurityConfigSummary
pub fn build(self) -> SecurityConfigSummary
Consumes the builder and constructs a SecurityConfigSummary
.
Trait Implementations§
source§impl Clone for SecurityConfigSummaryBuilder
impl Clone for SecurityConfigSummaryBuilder
source§fn clone(&self) -> SecurityConfigSummaryBuilder
fn clone(&self) -> SecurityConfigSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SecurityConfigSummaryBuilder
impl Debug for SecurityConfigSummaryBuilder
source§impl Default for SecurityConfigSummaryBuilder
impl Default for SecurityConfigSummaryBuilder
source§fn default() -> SecurityConfigSummaryBuilder
fn default() -> SecurityConfigSummaryBuilder
source§impl PartialEq for SecurityConfigSummaryBuilder
impl PartialEq for SecurityConfigSummaryBuilder
source§fn eq(&self, other: &SecurityConfigSummaryBuilder) -> bool
fn eq(&self, other: &SecurityConfigSummaryBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SecurityConfigSummaryBuilder
Auto Trait Implementations§
impl Freeze for SecurityConfigSummaryBuilder
impl RefUnwindSafe for SecurityConfigSummaryBuilder
impl Send for SecurityConfigSummaryBuilder
impl Sync for SecurityConfigSummaryBuilder
impl Unpin for SecurityConfigSummaryBuilder
impl UnwindSafe for SecurityConfigSummaryBuilder
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> 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