pub struct Reservation {
pub groups: Option<Vec<GroupIdentifier>>,
pub instances: Option<Vec<Instance>>,
pub owner_id: Option<String>,
pub requester_id: Option<String>,
pub reservation_id: Option<String>,
}Expand description
Describes a reservation.
Fields§
§groups: Option<Vec<GroupIdentifier>>[EC2-Classic only] The security groups.
instances: Option<Vec<Instance>>The instances.
owner_id: Option<String>The ID of the AWS account that owns the reservation.
requester_id: Option<String>The ID of the requester that launched the instances on your behalf (for example, AWS Management Console or Auto Scaling).
reservation_id: Option<String>The ID of the reservation.
Trait Implementations§
Source§impl Clone for Reservation
impl Clone for Reservation
Source§fn clone(&self) -> Reservation
fn clone(&self) -> Reservation
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 Debug for Reservation
impl Debug for Reservation
Source§impl Default for Reservation
impl Default for Reservation
Source§fn default() -> Reservation
fn default() -> Reservation
Returns the “default value” for a type. Read more
Source§impl PartialEq for Reservation
impl PartialEq for Reservation
impl StructuralPartialEq for Reservation
Auto Trait Implementations§
impl Freeze for Reservation
impl RefUnwindSafe for Reservation
impl Send for Reservation
impl Sync for Reservation
impl Unpin for Reservation
impl UnwindSafe for Reservation
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