Struct aws_sdk_finspace::model::FederationParameters
source · [−]#[non_exhaustive]pub struct FederationParameters {
pub saml_metadata_document: Option<String>,
pub saml_metadata_url: Option<String>,
pub application_call_back_url: Option<String>,
pub federation_urn: Option<String>,
pub federation_provider_name: Option<String>,
pub attribute_map: Option<HashMap<String, String>>,
}Expand description
Configuration information when authentication mode is FEDERATED.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.saml_metadata_document: Option<String>SAML 2.0 Metadata document from identity provider (IdP).
saml_metadata_url: Option<String>Provide the metadata URL from your SAML 2.0 compliant identity provider (IdP).
application_call_back_url: Option<String>The redirect or sign-in URL that should be entered into the SAML 2.0 compliant identity provider configuration (IdP).
federation_urn: Option<String>The Uniform Resource Name (URN). Also referred as Service Provider URN or Audience URI or Service Provider Entity ID.
federation_provider_name: Option<String>Name of the identity provider (IdP).
attribute_map: Option<HashMap<String, String>>SAML attribute name and value. The name must always be Email and the value should be set to the attribute definition in which user email is set. For example, name would be Email and value http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress. Please check your SAML 2.0 compliant identity provider (IdP) documentation for details.
Implementations
sourceimpl FederationParameters
impl FederationParameters
sourcepub fn saml_metadata_document(&self) -> Option<&str>
pub fn saml_metadata_document(&self) -> Option<&str>
SAML 2.0 Metadata document from identity provider (IdP).
sourcepub fn saml_metadata_url(&self) -> Option<&str>
pub fn saml_metadata_url(&self) -> Option<&str>
Provide the metadata URL from your SAML 2.0 compliant identity provider (IdP).
sourcepub fn application_call_back_url(&self) -> Option<&str>
pub fn application_call_back_url(&self) -> Option<&str>
The redirect or sign-in URL that should be entered into the SAML 2.0 compliant identity provider configuration (IdP).
sourcepub fn federation_urn(&self) -> Option<&str>
pub fn federation_urn(&self) -> Option<&str>
The Uniform Resource Name (URN). Also referred as Service Provider URN or Audience URI or Service Provider Entity ID.
sourcepub fn federation_provider_name(&self) -> Option<&str>
pub fn federation_provider_name(&self) -> Option<&str>
Name of the identity provider (IdP).
sourcepub fn attribute_map(&self) -> Option<&HashMap<String, String>>
pub fn attribute_map(&self) -> Option<&HashMap<String, String>>
SAML attribute name and value. The name must always be Email and the value should be set to the attribute definition in which user email is set. For example, name would be Email and value http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress. Please check your SAML 2.0 compliant identity provider (IdP) documentation for details.
sourceimpl FederationParameters
impl FederationParameters
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FederationParameters
Trait Implementations
sourceimpl Clone for FederationParameters
impl Clone for FederationParameters
sourcefn clone(&self) -> FederationParameters
fn clone(&self) -> FederationParameters
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for FederationParameters
impl Debug for FederationParameters
sourceimpl PartialEq<FederationParameters> for FederationParameters
impl PartialEq<FederationParameters> for FederationParameters
sourcefn eq(&self, other: &FederationParameters) -> bool
fn eq(&self, other: &FederationParameters) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &FederationParameters) -> bool
fn ne(&self, other: &FederationParameters) -> bool
This method tests for !=.
impl StructuralPartialEq for FederationParameters
Auto Trait Implementations
impl RefUnwindSafe for FederationParameters
impl Send for FederationParameters
impl Sync for FederationParameters
impl Unpin for FederationParameters
impl UnwindSafe for FederationParameters
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more