#[non_exhaustive]pub struct GetSamlProviderInput {
pub saml_provider_arn: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.saml_provider_arn: Option<String>
The Amazon Resource Name (ARN) of the SAML provider resource object in IAM to get information about.
For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
Implementations§
source§impl GetSamlProviderInput
impl GetSamlProviderInput
sourcepub fn saml_provider_arn(&self) -> Option<&str>
pub fn saml_provider_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the SAML provider resource object in IAM to get information about.
For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
source§impl GetSamlProviderInput
impl GetSamlProviderInput
sourcepub fn builder() -> GetSamlProviderInputBuilder
pub fn builder() -> GetSamlProviderInputBuilder
Creates a new builder-style object to manufacture GetSamlProviderInput
.
Trait Implementations§
source§impl Clone for GetSamlProviderInput
impl Clone for GetSamlProviderInput
source§fn clone(&self) -> GetSamlProviderInput
fn clone(&self) -> GetSamlProviderInput
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 GetSamlProviderInput
impl Debug for GetSamlProviderInput
source§impl PartialEq for GetSamlProviderInput
impl PartialEq for GetSamlProviderInput
source§fn eq(&self, other: &GetSamlProviderInput) -> bool
fn eq(&self, other: &GetSamlProviderInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetSamlProviderInput
Auto Trait Implementations§
impl RefUnwindSafe for GetSamlProviderInput
impl Send for GetSamlProviderInput
impl Sync for GetSamlProviderInput
impl Unpin for GetSamlProviderInput
impl UnwindSafe for GetSamlProviderInput
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.