pub struct IamInstanceProfile {
pub instance_profile_name: String,
pub instance_profile_id: String,
pub arn: String,
pub path: String,
pub created_at: DateTime<Utc>,
pub roles: Vec<String>,
pub tags: Vec<Tag>,
}Fields§
§instance_profile_name: String§instance_profile_id: String§arn: String§path: String§created_at: DateTime<Utc>§roles: Vec<String>Trait Implementations§
Source§impl Clone for IamInstanceProfile
impl Clone for IamInstanceProfile
Source§fn clone(&self) -> IamInstanceProfile
fn clone(&self) -> IamInstanceProfile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IamInstanceProfile
impl Debug for IamInstanceProfile
Source§impl<'de> Deserialize<'de> for IamInstanceProfile
impl<'de> Deserialize<'de> for IamInstanceProfile
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 IamInstanceProfile
impl RefUnwindSafe for IamInstanceProfile
impl Send for IamInstanceProfile
impl Sync for IamInstanceProfile
impl Unpin for IamInstanceProfile
impl UnsafeUnpin for IamInstanceProfile
impl UnwindSafe for IamInstanceProfile
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