pub struct InstanceUsage {
pub account_id: Option<String>,
pub used_instance_count: Option<i64>,
}Expand description
Information about the Capacity Reservation usage.
Fields§
§account_id: Option<String>The ID of the AWS account that is making use of the Capacity Reservation.
used_instance_count: Option<i64>The number of instances the AWS account currently has in the Capacity Reservation.
Trait Implementations§
Source§impl Clone for InstanceUsage
impl Clone for InstanceUsage
Source§fn clone(&self) -> InstanceUsage
fn clone(&self) -> InstanceUsage
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 InstanceUsage
impl Debug for InstanceUsage
Source§impl Default for InstanceUsage
impl Default for InstanceUsage
Source§fn default() -> InstanceUsage
fn default() -> InstanceUsage
Returns the “default value” for a type. Read more
Source§impl PartialEq for InstanceUsage
impl PartialEq for InstanceUsage
impl StructuralPartialEq for InstanceUsage
Auto Trait Implementations§
impl Freeze for InstanceUsage
impl RefUnwindSafe for InstanceUsage
impl Send for InstanceUsage
impl Sync for InstanceUsage
impl Unpin for InstanceUsage
impl UnwindSafe for InstanceUsage
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