#[non_exhaustive]pub struct SecurityConfigDetailBuilder { /* private fields */ }
Expand description
A builder for SecurityConfigDetail
.
Implementations§
source§impl SecurityConfigDetailBuilder
impl SecurityConfigDetailBuilder
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 saml_options(self, input: SamlConfigOptions) -> Self
pub fn saml_options(self, input: SamlConfigOptions) -> Self
SAML options for the security configuration in the form of a key-value map.
sourcepub fn set_saml_options(self, input: Option<SamlConfigOptions>) -> Self
pub fn set_saml_options(self, input: Option<SamlConfigOptions>) -> Self
SAML options for the security configuration in the form of a key-value map.
sourcepub fn get_saml_options(&self) -> &Option<SamlConfigOptions>
pub fn get_saml_options(&self) -> &Option<SamlConfigOptions>
SAML options for the security configuration in the form of a key-value map.
sourcepub fn created_date(self, input: i64) -> Self
pub fn created_date(self, input: i64) -> Self
The date the configuration was created.
sourcepub fn set_created_date(self, input: Option<i64>) -> Self
pub fn set_created_date(self, input: Option<i64>) -> Self
The date the configuration was created.
sourcepub fn get_created_date(&self) -> &Option<i64>
pub fn get_created_date(&self) -> &Option<i64>
The date the 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) -> SecurityConfigDetail
pub fn build(self) -> SecurityConfigDetail
Consumes the builder and constructs a SecurityConfigDetail
.
Trait Implementations§
source§impl Clone for SecurityConfigDetailBuilder
impl Clone for SecurityConfigDetailBuilder
source§fn clone(&self) -> SecurityConfigDetailBuilder
fn clone(&self) -> SecurityConfigDetailBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SecurityConfigDetailBuilder
impl Debug for SecurityConfigDetailBuilder
source§impl Default for SecurityConfigDetailBuilder
impl Default for SecurityConfigDetailBuilder
source§fn default() -> SecurityConfigDetailBuilder
fn default() -> SecurityConfigDetailBuilder
source§impl PartialEq for SecurityConfigDetailBuilder
impl PartialEq for SecurityConfigDetailBuilder
source§fn eq(&self, other: &SecurityConfigDetailBuilder) -> bool
fn eq(&self, other: &SecurityConfigDetailBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SecurityConfigDetailBuilder
Auto Trait Implementations§
impl Freeze for SecurityConfigDetailBuilder
impl RefUnwindSafe for SecurityConfigDetailBuilder
impl Send for SecurityConfigDetailBuilder
impl Sync for SecurityConfigDetailBuilder
impl Unpin for SecurityConfigDetailBuilder
impl UnwindSafe for SecurityConfigDetailBuilder
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