#[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 ==
.