Struct aws_sdk_elasticsearch::types::builders::SamlIdpBuilder
source · #[non_exhaustive]pub struct SamlIdpBuilder { /* private fields */ }
Expand description
A builder for SamlIdp
.
Implementations§
source§impl SamlIdpBuilder
impl SamlIdpBuilder
sourcepub fn metadata_content(self, input: impl Into<String>) -> Self
pub fn metadata_content(self, input: impl Into<String>) -> Self
The Metadata of the SAML application in xml format.
This field is required.sourcepub fn set_metadata_content(self, input: Option<String>) -> Self
pub fn set_metadata_content(self, input: Option<String>) -> Self
The Metadata of the SAML application in xml format.
sourcepub fn get_metadata_content(&self) -> &Option<String>
pub fn get_metadata_content(&self) -> &Option<String>
The Metadata of the SAML application in xml format.
sourcepub fn entity_id(self, input: impl Into<String>) -> Self
pub fn entity_id(self, input: impl Into<String>) -> Self
The unique Entity ID of the application in SAML Identity Provider.
This field is required.sourcepub fn set_entity_id(self, input: Option<String>) -> Self
pub fn set_entity_id(self, input: Option<String>) -> Self
The unique Entity ID of the application in SAML Identity Provider.
sourcepub fn get_entity_id(&self) -> &Option<String>
pub fn get_entity_id(&self) -> &Option<String>
The unique Entity ID of the application in SAML Identity Provider.
Trait Implementations§
source§impl Clone for SamlIdpBuilder
impl Clone for SamlIdpBuilder
source§fn clone(&self) -> SamlIdpBuilder
fn clone(&self) -> SamlIdpBuilder
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 SamlIdpBuilder
impl Debug for SamlIdpBuilder
source§impl Default for SamlIdpBuilder
impl Default for SamlIdpBuilder
source§fn default() -> SamlIdpBuilder
fn default() -> SamlIdpBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for SamlIdpBuilder
impl PartialEq for SamlIdpBuilder
source§fn eq(&self, other: &SamlIdpBuilder) -> bool
fn eq(&self, other: &SamlIdpBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SamlIdpBuilder
Auto Trait Implementations§
impl Freeze for SamlIdpBuilder
impl RefUnwindSafe for SamlIdpBuilder
impl Send for SamlIdpBuilder
impl Sync for SamlIdpBuilder
impl Unpin for SamlIdpBuilder
impl UnwindSafe for SamlIdpBuilder
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>
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.