#[non_exhaustive]pub struct AuthenticationProfileBuilder { /* private fields */ }
Expand description
A builder for AuthenticationProfile
.
Implementations§
source§impl AuthenticationProfileBuilder
impl AuthenticationProfileBuilder
sourcepub fn authentication_profile_name(self, input: impl Into<String>) -> Self
pub fn authentication_profile_name(self, input: impl Into<String>) -> Self
The name of the authentication profile.
sourcepub fn set_authentication_profile_name(self, input: Option<String>) -> Self
pub fn set_authentication_profile_name(self, input: Option<String>) -> Self
The name of the authentication profile.
sourcepub fn get_authentication_profile_name(&self) -> &Option<String>
pub fn get_authentication_profile_name(&self) -> &Option<String>
The name of the authentication profile.
sourcepub fn authentication_profile_content(self, input: impl Into<String>) -> Self
pub fn authentication_profile_content(self, input: impl Into<String>) -> Self
The content of the authentication profile in JSON format. The maximum length of the JSON string is determined by a quota for your account.
sourcepub fn set_authentication_profile_content(self, input: Option<String>) -> Self
pub fn set_authentication_profile_content(self, input: Option<String>) -> Self
The content of the authentication profile in JSON format. The maximum length of the JSON string is determined by a quota for your account.
sourcepub fn get_authentication_profile_content(&self) -> &Option<String>
pub fn get_authentication_profile_content(&self) -> &Option<String>
The content of the authentication profile in JSON format. The maximum length of the JSON string is determined by a quota for your account.
sourcepub fn build(self) -> AuthenticationProfile
pub fn build(self) -> AuthenticationProfile
Consumes the builder and constructs a AuthenticationProfile
.
Trait Implementations§
source§impl Clone for AuthenticationProfileBuilder
impl Clone for AuthenticationProfileBuilder
source§fn clone(&self) -> AuthenticationProfileBuilder
fn clone(&self) -> AuthenticationProfileBuilder
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 AuthenticationProfileBuilder
impl Debug for AuthenticationProfileBuilder
source§impl Default for AuthenticationProfileBuilder
impl Default for AuthenticationProfileBuilder
source§fn default() -> AuthenticationProfileBuilder
fn default() -> AuthenticationProfileBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AuthenticationProfileBuilder
impl PartialEq for AuthenticationProfileBuilder
source§fn eq(&self, other: &AuthenticationProfileBuilder) -> bool
fn eq(&self, other: &AuthenticationProfileBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AuthenticationProfileBuilder
Auto Trait Implementations§
impl Freeze for AuthenticationProfileBuilder
impl RefUnwindSafe for AuthenticationProfileBuilder
impl Send for AuthenticationProfileBuilder
impl Sync for AuthenticationProfileBuilder
impl Unpin for AuthenticationProfileBuilder
impl UnwindSafe for AuthenticationProfileBuilder
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
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>
Creates a shared type from an unshared type.