Struct aws_sdk_iam::input::CreateSamlProviderInput
source · [−]#[non_exhaustive]pub struct CreateSamlProviderInput {
pub saml_metadata_document: Option<String>,
pub name: Option<String>,
pub tags: Option<Vec<Tag>>,
}
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>
An XML document generated by an identity provider (IdP) that supports SAML 2.0. The document includes the issuer's name, expiration information, and keys that can be used to validate the SAML authentication response (assertions) that are received from the IdP. You must generate the metadata document using the identity management software that is used as your organization's IdP.
For more information, see About SAML 2.0-based federation in the IAM User Guide
name: Option<String>
The name of the provider to create.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
A list of tags that you want to attach to the new IAM SAML provider. Each tag consists of a key name and an associated value. For more information about tagging, see Tagging IAM resources in the IAM User Guide.
If any one of the tags is invalid or if you exceed the allowed maximum number of tags, then the entire request fails and the resource is not created.
Implementations
sourceimpl CreateSamlProviderInput
impl CreateSamlProviderInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSAMLProvider, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSAMLProvider, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateSAMLProvider
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateSamlProviderInput
sourceimpl CreateSamlProviderInput
impl CreateSamlProviderInput
sourcepub fn saml_metadata_document(&self) -> Option<&str>
pub fn saml_metadata_document(&self) -> Option<&str>
An XML document generated by an identity provider (IdP) that supports SAML 2.0. The document includes the issuer's name, expiration information, and keys that can be used to validate the SAML authentication response (assertions) that are received from the IdP. You must generate the metadata document using the identity management software that is used as your organization's IdP.
For more information, see About SAML 2.0-based federation in the IAM User Guide
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the provider to create.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
A list of tags that you want to attach to the new IAM SAML provider. Each tag consists of a key name and an associated value. For more information about tagging, see Tagging IAM resources in the IAM User Guide.
If any one of the tags is invalid or if you exceed the allowed maximum number of tags, then the entire request fails and the resource is not created.
Trait Implementations
sourceimpl Clone for CreateSamlProviderInput
impl Clone for CreateSamlProviderInput
sourcefn clone(&self) -> CreateSamlProviderInput
fn clone(&self) -> CreateSamlProviderInput
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 CreateSamlProviderInput
impl Debug for CreateSamlProviderInput
sourceimpl PartialEq<CreateSamlProviderInput> for CreateSamlProviderInput
impl PartialEq<CreateSamlProviderInput> for CreateSamlProviderInput
sourcefn eq(&self, other: &CreateSamlProviderInput) -> bool
fn eq(&self, other: &CreateSamlProviderInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateSamlProviderInput) -> bool
fn ne(&self, other: &CreateSamlProviderInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for CreateSamlProviderInput
Auto Trait Implementations
impl RefUnwindSafe for CreateSamlProviderInput
impl Send for CreateSamlProviderInput
impl Sync for CreateSamlProviderInput
impl Unpin for CreateSamlProviderInput
impl UnwindSafe for CreateSamlProviderInput
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