pub struct AwsIamAccessKeySessionContextSessionIssuer {
pub account_id: Option<String>,
pub arn: Option<String>,
pub principal_id: Option<String>,
pub type_: Option<String>,
pub user_name: Option<String>,
}Expand description
Information about the entity that created the session.
Fields§
§account_id: Option<String>The identifier of the AWS account that created the session.
arn: Option<String>The ARN of the session.
principal_id: Option<String>The principal ID of the principal (user, role, or group) that created the session.
type_: Option<String>The type of principal (user, role, or group) that created the session.
user_name: Option<String>The name of the principal that created the session.
Trait Implementations§
Source§impl Clone for AwsIamAccessKeySessionContextSessionIssuer
impl Clone for AwsIamAccessKeySessionContextSessionIssuer
Source§fn clone(&self) -> AwsIamAccessKeySessionContextSessionIssuer
fn clone(&self) -> AwsIamAccessKeySessionContextSessionIssuer
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 Default for AwsIamAccessKeySessionContextSessionIssuer
impl Default for AwsIamAccessKeySessionContextSessionIssuer
Source§fn default() -> AwsIamAccessKeySessionContextSessionIssuer
fn default() -> AwsIamAccessKeySessionContextSessionIssuer
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsIamAccessKeySessionContextSessionIssuer
impl<'de> Deserialize<'de> for AwsIamAccessKeySessionContextSessionIssuer
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
Source§impl PartialEq for AwsIamAccessKeySessionContextSessionIssuer
impl PartialEq for AwsIamAccessKeySessionContextSessionIssuer
Source§fn eq(&self, other: &AwsIamAccessKeySessionContextSessionIssuer) -> bool
fn eq(&self, other: &AwsIamAccessKeySessionContextSessionIssuer) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AwsIamAccessKeySessionContextSessionIssuer
Auto Trait Implementations§
impl Freeze for AwsIamAccessKeySessionContextSessionIssuer
impl RefUnwindSafe for AwsIamAccessKeySessionContextSessionIssuer
impl Send for AwsIamAccessKeySessionContextSessionIssuer
impl Sync for AwsIamAccessKeySessionContextSessionIssuer
impl Unpin for AwsIamAccessKeySessionContextSessionIssuer
impl UnwindSafe for AwsIamAccessKeySessionContextSessionIssuer
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