aws-sdk-accountaccess 1.2.0

AWS SDK for Account Access
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// <p>Specifies the entitlement configuration for an account access manager application, defining which principal can assume which IAM role.</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub enum Entitlement {
    /// <p>The principal-to-role mapping for the entitlement.</p>
    PrincipalRole(crate::types::PrincipalRoleEntitlement),
    /// The `Unknown` variant represents cases where new union variant was received. Consider upgrading the SDK to the latest available version.
    /// An unknown enum variant
    ///
    /// _Note: If you encounter this error, consider upgrading your SDK to the latest version._
    /// The `Unknown` variant represents cases where the server sent a value that wasn't recognized
    /// by the client. This can happen when the server adds new functionality, but the client has not been updated.
    /// To investigate this, consider turning on debug logging to print the raw HTTP response.
    #[non_exhaustive]
    Unknown,
}
impl Entitlement {
    #[allow(irrefutable_let_patterns)]
    /// Tries to convert the enum instance into [`PrincipalRole`](crate::types::Entitlement::PrincipalRole), extracting the inner [`PrincipalRoleEntitlement`](crate::types::PrincipalRoleEntitlement).
    /// Returns `Err(&Self)` if it can't be converted.
    pub fn as_principal_role(&self) -> ::std::result::Result<&crate::types::PrincipalRoleEntitlement, &Self> {
        if let Entitlement::PrincipalRole(val) = &self {
            ::std::result::Result::Ok(val)
        } else {
            ::std::result::Result::Err(self)
        }
    }
    /// Returns true if this is a [`PrincipalRole`](crate::types::Entitlement::PrincipalRole).
    pub fn is_principal_role(&self) -> bool {
        self.as_principal_role().is_ok()
    }
    /// Returns true if the enum instance is the `Unknown` variant.
    pub fn is_unknown(&self) -> bool {
        matches!(self, Self::Unknown)
    }
}