#[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 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 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 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 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 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
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 SecurityConfigSummaryBuilder
impl Debug for SecurityConfigSummaryBuilder
source§impl Default for SecurityConfigSummaryBuilder
impl Default for SecurityConfigSummaryBuilder
source§fn default() -> SecurityConfigSummaryBuilder
fn default() -> SecurityConfigSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<SecurityConfigSummaryBuilder> for SecurityConfigSummaryBuilder
impl PartialEq<SecurityConfigSummaryBuilder> for SecurityConfigSummaryBuilder
source§fn eq(&self, other: &SecurityConfigSummaryBuilder) -> bool
fn eq(&self, other: &SecurityConfigSummaryBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SecurityConfigSummaryBuilder
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more