pub struct AssumeRoleResponseCredentials {
pub security_token: String,
pub access_key_id: String,
pub access_key_secret: String,
pub expiration: String,
}Expand description
AssumeRole 响应中的 Credentials
Fields§
§security_token: String§access_key_id: String§access_key_secret: String§expiration: StringISO 8601 格式的到期时间,格式为 yyyy-MM-ddTHH:mm:ssZ,例如 2018-01-01T12:00:00Z
Trait Implementations§
Source§impl Clone for AssumeRoleResponseCredentials
impl Clone for AssumeRoleResponseCredentials
Source§fn clone(&self) -> AssumeRoleResponseCredentials
fn clone(&self) -> AssumeRoleResponseCredentials
Returns a duplicate 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<'de> Deserialize<'de> for AssumeRoleResponseCredentials
impl<'de> Deserialize<'de> for AssumeRoleResponseCredentials
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AssumeRoleResponseCredentials
impl RefUnwindSafe for AssumeRoleResponseCredentials
impl Send for AssumeRoleResponseCredentials
impl Sync for AssumeRoleResponseCredentials
impl Unpin for AssumeRoleResponseCredentials
impl UnwindSafe for AssumeRoleResponseCredentials
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