pub struct LaunchTemplateIamInstanceProfileSpecification {
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 LaunchTemplateIamInstanceProfileSpecification
impl Clone for LaunchTemplateIamInstanceProfileSpecification
Source§fn clone(&self) -> LaunchTemplateIamInstanceProfileSpecification
fn clone(&self) -> LaunchTemplateIamInstanceProfileSpecification
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 LaunchTemplateIamInstanceProfileSpecification
impl Default for LaunchTemplateIamInstanceProfileSpecification
Source§fn default() -> LaunchTemplateIamInstanceProfileSpecification
fn default() -> LaunchTemplateIamInstanceProfileSpecification
Returns the “default value” for a type. Read more
Source§impl PartialEq for LaunchTemplateIamInstanceProfileSpecification
impl PartialEq for LaunchTemplateIamInstanceProfileSpecification
Source§fn eq(&self, other: &LaunchTemplateIamInstanceProfileSpecification) -> bool
fn eq(&self, other: &LaunchTemplateIamInstanceProfileSpecification) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LaunchTemplateIamInstanceProfileSpecification
Auto Trait Implementations§
impl Freeze for LaunchTemplateIamInstanceProfileSpecification
impl RefUnwindSafe for LaunchTemplateIamInstanceProfileSpecification
impl Send for LaunchTemplateIamInstanceProfileSpecification
impl Sync for LaunchTemplateIamInstanceProfileSpecification
impl Unpin for LaunchTemplateIamInstanceProfileSpecification
impl UnwindSafe for LaunchTemplateIamInstanceProfileSpecification
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