Struct aws_sdk_iot::types::RoleAliasDescription
source · #[non_exhaustive]pub struct RoleAliasDescription { /* private fields */ }
Expand description
Role alias description.
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 ==
.