Struct aws_sdk_iot::types::RoleAliasDescription
source · #[non_exhaustive]pub struct RoleAliasDescription {
pub role_alias: Option<String>,
pub role_alias_arn: Option<String>,
pub role_arn: Option<String>,
pub owner: Option<String>,
pub credential_duration_seconds: Option<i32>,
pub creation_date: Option<DateTime>,
pub last_modified_date: Option<DateTime>,
}
Expand description
Role alias description.
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.role_alias: Option<String>
The role alias.
role_alias_arn: Option<String>
The ARN of the role alias.
role_arn: Option<String>
The role ARN.
owner: Option<String>
The role alias owner.
credential_duration_seconds: Option<i32>
The number of seconds for which the credential is valid.
creation_date: Option<DateTime>
The UNIX timestamp of when the role alias was created.
last_modified_date: Option<DateTime>
The UNIX timestamp of when the role alias was last modified.
Implementations§
source§impl RoleAliasDescription
impl RoleAliasDescription
sourcepub fn role_alias(&self) -> Option<&str>
pub fn role_alias(&self) -> Option<&str>
The role alias.
sourcepub fn role_alias_arn(&self) -> Option<&str>
pub fn role_alias_arn(&self) -> Option<&str>
The ARN of the role alias.
sourcepub fn credential_duration_seconds(&self) -> Option<i32>
pub fn credential_duration_seconds(&self) -> Option<i32>
The number of seconds for which the credential is valid.
sourcepub fn creation_date(&self) -> Option<&DateTime>
pub fn creation_date(&self) -> Option<&DateTime>
The UNIX timestamp of when the role alias was created.
sourcepub fn last_modified_date(&self) -> Option<&DateTime>
pub fn last_modified_date(&self) -> Option<&DateTime>
The UNIX timestamp of when the role alias was last modified.
source§impl RoleAliasDescription
impl RoleAliasDescription
sourcepub fn builder() -> RoleAliasDescriptionBuilder
pub fn builder() -> RoleAliasDescriptionBuilder
Creates a new builder-style object to manufacture RoleAliasDescription
.
Trait Implementations§
source§impl Clone for RoleAliasDescription
impl Clone for RoleAliasDescription
source§fn clone(&self) -> RoleAliasDescription
fn clone(&self) -> RoleAliasDescription
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 RoleAliasDescription
impl Debug for RoleAliasDescription
source§impl PartialEq<RoleAliasDescription> for RoleAliasDescription
impl PartialEq<RoleAliasDescription> for RoleAliasDescription
source§fn eq(&self, other: &RoleAliasDescription) -> bool
fn eq(&self, other: &RoleAliasDescription) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RoleAliasDescription
Auto Trait Implementations§
impl RefUnwindSafe for RoleAliasDescription
impl Send for RoleAliasDescription
impl Sync for RoleAliasDescription
impl Unpin for RoleAliasDescription
impl UnwindSafe for RoleAliasDescription
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