pub struct CapacityReservationView {Show 25 fields
pub capacity_reservation_id: String,
pub capacity_reservation_arn: String,
pub owner_id: String,
pub instance_type: String,
pub instance_platform: String,
pub availability_zone: String,
pub tenancy: String,
pub total_instance_count: i32,
pub available_instance_count: i32,
pub ebs_optimized: bool,
pub ephemeral_storage: bool,
pub state: String,
pub start_date: String,
pub end_date: Option<String>,
pub end_date_type: String,
pub instance_match_criteria: String,
pub create_date: String,
pub outpost_arn: Option<String>,
pub placement_group_arn: Option<String>,
pub tags: HashMap<String, String>,
pub pending_billing_owner_account_id: Option<String>,
pub billing_owner_account_id: Option<String>,
pub target_capacity_reservation_id: Option<String>,
pub reservation_type: Option<String>,
pub commitment_info: Option<CapacityReservationCommitmentInfoView>,
}Fields§
§capacity_reservation_id: String§capacity_reservation_arn: String§owner_id: String§instance_type: String§instance_platform: String§availability_zone: String§tenancy: String§total_instance_count: i32§available_instance_count: i32§ebs_optimized: bool§ephemeral_storage: bool§state: String§start_date: String§end_date: Option<String>§end_date_type: String§instance_match_criteria: String§create_date: String§outpost_arn: Option<String>§placement_group_arn: Option<String>§pending_billing_owner_account_id: Option<String>§billing_owner_account_id: Option<String>§target_capacity_reservation_id: Option<String>§reservation_type: Option<String>§commitment_info: Option<CapacityReservationCommitmentInfoView>Trait Implementations§
Source§impl Clone for CapacityReservationView
impl Clone for CapacityReservationView
Source§fn clone(&self) -> CapacityReservationView
fn clone(&self) -> CapacityReservationView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CapacityReservationView
impl Debug for CapacityReservationView
Source§impl<'de> Deserialize<'de> for CapacityReservationView
impl<'de> Deserialize<'de> for CapacityReservationView
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
Source§impl From<&CapacityReservation> for CapacityReservationView
impl From<&CapacityReservation> for CapacityReservationView
Source§fn from(c: &CapacityReservation) -> Self
fn from(c: &CapacityReservation) -> Self
Converts to this type from the input type.
Source§impl From<CapacityReservationView> for CapacityReservation
impl From<CapacityReservationView> for CapacityReservation
Source§fn from(c: CapacityReservationView) -> Self
fn from(c: CapacityReservationView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CapacityReservationView
impl RefUnwindSafe for CapacityReservationView
impl Send for CapacityReservationView
impl Sync for CapacityReservationView
impl Unpin for CapacityReservationView
impl UnsafeUnpin for CapacityReservationView
impl UnwindSafe for CapacityReservationView
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.