pub struct IamInstanceProfileSpecification {
pub arn: Option<String>,
pub name: Option<String>,
}Expand description
Describes an IAM instance profile.
Fields§
§arn: Option<String>The Amazon Resource Name (ARN) of the instance profile.
name: Option<String>The name of the instance profile.
Trait Implementations§
Source§impl Clone for IamInstanceProfileSpecification
impl Clone for IamInstanceProfileSpecification
Source§fn clone(&self) -> IamInstanceProfileSpecification
fn clone(&self) -> IamInstanceProfileSpecification
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 IamInstanceProfileSpecification
impl Default for IamInstanceProfileSpecification
Source§fn default() -> IamInstanceProfileSpecification
fn default() -> IamInstanceProfileSpecification
Returns the “default value” for a type. Read more
Source§impl PartialEq for IamInstanceProfileSpecification
impl PartialEq for IamInstanceProfileSpecification
Source§fn eq(&self, other: &IamInstanceProfileSpecification) -> bool
fn eq(&self, other: &IamInstanceProfileSpecification) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IamInstanceProfileSpecification
Auto Trait Implementations§
impl Freeze for IamInstanceProfileSpecification
impl RefUnwindSafe for IamInstanceProfileSpecification
impl Send for IamInstanceProfileSpecification
impl Sync for IamInstanceProfileSpecification
impl Unpin for IamInstanceProfileSpecification
impl UnwindSafe for IamInstanceProfileSpecification
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