#[non_exhaustive]pub struct ModifySamlPropertiesInput {
pub resource_id: Option<String>,
pub saml_properties: Option<SamlProperties>,
pub properties_to_delete: Option<Vec<DeletableSamlProperty>>,
}
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.resource_id: Option<String>
The directory identifier for which you want to configure SAML properties.
saml_properties: Option<SamlProperties>
The properties for configuring SAML 2.0 authentication.
properties_to_delete: Option<Vec<DeletableSamlProperty>>
The SAML properties to delete as part of your request.
Specify one of the following options:
-
SAML_PROPERTIES_USER_ACCESS_URL
to delete the user access URL. -
SAML_PROPERTIES_RELAY_STATE_PARAMETER_NAME
to delete the relay state parameter name.
Implementations§
source§impl ModifySamlPropertiesInput
impl ModifySamlPropertiesInput
sourcepub fn resource_id(&self) -> Option<&str>
pub fn resource_id(&self) -> Option<&str>
The directory identifier for which you want to configure SAML properties.
sourcepub fn saml_properties(&self) -> Option<&SamlProperties>
pub fn saml_properties(&self) -> Option<&SamlProperties>
The properties for configuring SAML 2.0 authentication.
sourcepub fn properties_to_delete(&self) -> &[DeletableSamlProperty]
pub fn properties_to_delete(&self) -> &[DeletableSamlProperty]
The SAML properties to delete as part of your request.
Specify one of the following options:
-
SAML_PROPERTIES_USER_ACCESS_URL
to delete the user access URL. -
SAML_PROPERTIES_RELAY_STATE_PARAMETER_NAME
to delete the relay state parameter name.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .properties_to_delete.is_none()
.
source§impl ModifySamlPropertiesInput
impl ModifySamlPropertiesInput
sourcepub fn builder() -> ModifySamlPropertiesInputBuilder
pub fn builder() -> ModifySamlPropertiesInputBuilder
Creates a new builder-style object to manufacture ModifySamlPropertiesInput
.
Trait Implementations§
source§impl Clone for ModifySamlPropertiesInput
impl Clone for ModifySamlPropertiesInput
source§fn clone(&self) -> ModifySamlPropertiesInput
fn clone(&self) -> ModifySamlPropertiesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ModifySamlPropertiesInput
impl Debug for ModifySamlPropertiesInput
source§impl PartialEq for ModifySamlPropertiesInput
impl PartialEq for ModifySamlPropertiesInput
source§fn eq(&self, other: &ModifySamlPropertiesInput) -> bool
fn eq(&self, other: &ModifySamlPropertiesInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ModifySamlPropertiesInput
Auto Trait Implementations§
impl Freeze for ModifySamlPropertiesInput
impl RefUnwindSafe for ModifySamlPropertiesInput
impl Send for ModifySamlPropertiesInput
impl Sync for ModifySamlPropertiesInput
impl Unpin for ModifySamlPropertiesInput
impl UnwindSafe for ModifySamlPropertiesInput
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
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>
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>
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 more