User

Struct User 

Source
#[non_exhaustive]
pub struct User {
Show 21 fields pub account: Option<Box<Account>>, pub credential_uid: Option<String>, pub display_name: Option<String>, pub domain: Option<String>, pub email_addr: Option<String>, pub forward_addr: Option<String>, pub full_name: Option<String>, pub groups: Option<Vec<Group>>, pub has_mfa: Option<bool>, pub ldap_person: Option<Box<LdapPerson>>, pub name: Option<String>, pub org: Option<Box<Organization>>, pub phone_number: Option<String>, pub programmatic_credentials: Option<Vec<ProgrammaticCredential>>, pub risk_level: Option<String>, pub risk_level_id: Option<i64>, pub risk_score: Option<i64>, pub type: Option<String>, pub type_id: Option<i64>, pub uid: Option<String>, pub uid_alt: Option<String>,
}
Expand description

User

The User object describes the characteristics of a user/person or a security principal.

[] Category: | Name: user

Constraints:

  • at_least_one: [name,uid]

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.
§account: Option<Box<Account>>

Account

The user’s account or the account associated with the user.

optional

§credential_uid: Option<String>

User Credential ID

The unique identifier of the user’s credential. For example, AWS Access Key ID.

optional

§display_name: Option<String>

Display Name

The display name of the user, as reported by the product.

optional

§domain: Option<String>

Domain

The domain where the user is defined. For example: the LDAP or Active Directory domain.

optional

§email_addr: Option<String>

Email Address

The user’s primary email address.

optional

§forward_addr: Option<String>

Forwarding Address

The user’s forwarding email address.

optional

§full_name: Option<String>

Full Name

The full name of the user, as reported by the product.

optional

§groups: Option<Vec<Group>>

Groups

The administrative groups to which the user belongs.

optional

§has_mfa: Option<bool>

MFA Assigned

The user has a multi-factor or secondary-factor device assigned.

recommended

§ldap_person: Option<Box<LdapPerson>>

LDAP Person

The additional LDAP attributes that describe a person.

optional

§name: Option<String>

Name

The username. For example, janedoe1.

recommended

§org: Option<Box<Organization>>

Organization

Organization and org unit related to the user.

optional

§phone_number: Option<String>

Telephone Number

The telephone number of the user.

optional

§programmatic_credentials: Option<Vec<ProgrammaticCredential>>

Programmatic Credentials

Details about the programmatic credential (API keys, access tokens, certificates, etc) associated to the user.

optional

§risk_level: Option<String>

Risk Level

The risk level, normalized to the caption of the risk_level_id value.

optional

§risk_level_id: Option<i64>

Risk Level ID

The normalized risk level id.

optional

§risk_score: Option<i64>

Risk Score

The risk score as reported by the event source.

optional

§type: Option<String>

Type

The type of the user. For example, System, AWS IAM User, etc.

optional

§type_id: Option<i64>

Type ID

The account type identifier.

recommended

§uid: Option<String>

Unique ID

The unique user identifier. For example, the Windows user SID, ActiveDirectory DN or AWS user ARN.

recommended

§uid_alt: Option<String>

Alternate ID

The alternate user identifier. For example, the Active Directory user GUID or AWS user Principal ID.

optional

Trait Implementations§

Source§

impl Clone for User

Source§

fn clone(&self) -> User

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for User

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for User

Source§

fn default() -> User

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for User
where User: Default,

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for User

Source§

fn eq(&self, other: &User) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for User

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for User

Auto Trait Implementations§

§

impl Freeze for User

§

impl RefUnwindSafe for User

§

impl Send for User

§

impl Sync for User

§

impl Unpin for User

§

impl UnwindSafe for User

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,