Struct aws_sdk_chimesdkidentity::types::AppInstanceUser
source · #[non_exhaustive]pub struct AppInstanceUser {
pub app_instance_user_arn: Option<String>,
pub name: Option<String>,
pub metadata: Option<String>,
pub created_timestamp: Option<DateTime>,
pub last_updated_timestamp: Option<DateTime>,
pub expiration_settings: Option<ExpirationSettings>,
}Expand description
The details of an AppInstanceUser.
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.app_instance_user_arn: Option<String>The ARN of the AppInstanceUser.
name: Option<String>The name of the AppInstanceUser.
metadata: Option<String>The metadata of the AppInstanceUser.
created_timestamp: Option<DateTime>The time at which the AppInstanceUser was created.
last_updated_timestamp: Option<DateTime>The time at which the AppInstanceUser was last updated.
expiration_settings: Option<ExpirationSettings>The interval after which an AppInstanceUser is automatically deleted.
Implementations§
source§impl AppInstanceUser
impl AppInstanceUser
sourcepub fn app_instance_user_arn(&self) -> Option<&str>
pub fn app_instance_user_arn(&self) -> Option<&str>
The ARN of the AppInstanceUser.
sourcepub fn created_timestamp(&self) -> Option<&DateTime>
pub fn created_timestamp(&self) -> Option<&DateTime>
The time at which the AppInstanceUser was created.
sourcepub fn last_updated_timestamp(&self) -> Option<&DateTime>
pub fn last_updated_timestamp(&self) -> Option<&DateTime>
The time at which the AppInstanceUser was last updated.
sourcepub fn expiration_settings(&self) -> Option<&ExpirationSettings>
pub fn expiration_settings(&self) -> Option<&ExpirationSettings>
The interval after which an AppInstanceUser is automatically deleted.
source§impl AppInstanceUser
impl AppInstanceUser
sourcepub fn builder() -> AppInstanceUserBuilder
pub fn builder() -> AppInstanceUserBuilder
Creates a new builder-style object to manufacture AppInstanceUser.
Trait Implementations§
source§impl Clone for AppInstanceUser
impl Clone for AppInstanceUser
source§fn clone(&self) -> AppInstanceUser
fn clone(&self) -> AppInstanceUser
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for AppInstanceUser
impl Debug for AppInstanceUser
source§impl PartialEq for AppInstanceUser
impl PartialEq for AppInstanceUser
source§fn eq(&self, other: &AppInstanceUser) -> bool
fn eq(&self, other: &AppInstanceUser) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AppInstanceUser
Auto Trait Implementations§
impl Freeze for AppInstanceUser
impl RefUnwindSafe for AppInstanceUser
impl Send for AppInstanceUser
impl Sync for AppInstanceUser
impl Unpin for AppInstanceUser
impl UnwindSafe for AppInstanceUser
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.