pub struct Ami {
pub description: Option<String>,
pub image: Option<String>,
pub name: Option<String>,
pub region: Option<String>,
pub state: Option<ImageState>,
}
Expand description
Details of an EC2 AMI.
Fields§
§description: Option<String>
The description of the EC2 AMI.
image: Option<String>
The AMI ID of the EC2 AMI.
name: Option<String>
The name of the EC2 AMI.
region: Option<String>
The AWS Region of the EC2 AMI.
state: Option<ImageState>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Ami
impl<'de> Deserialize<'de> for Ami
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
impl StructuralPartialEq for Ami
Auto Trait Implementations§
impl Freeze for Ami
impl RefUnwindSafe for Ami
impl Send for Ami
impl Sync for Ami
impl Unpin for Ami
impl UnwindSafe for Ami
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