pub struct Ec2 {
pub instance_id: Option<String>,
pub availability_zone: Option<String>,
}
Expand description
Information about an EC2 instance.
Fields§
§instance_id: Option<String>
The instance ID of the EC2 instance.
availability_zone: Option<String>
The Availability Zone in which the instance is running.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Ec2
impl Send for Ec2
impl Sync for Ec2
impl Unpin for Ec2
impl UnwindSafe for Ec2
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