pub struct CapacityReservation {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: Tags,
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<CapacityReservationCommitmentInfo>,
}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>Group 10: pending billing-ownership transfer target account ID.
billing_owner_account_id: Option<String>Group 10: account ID that currently owns the unused-reservation billing.
target_capacity_reservation_id: Option<String>Group 10: when this reservation was split off, the parent reservation ID.
reservation_type: Option<String>Group 10: reservation type (e.g. “default”, “capacity-block”).
commitment_info: Option<CapacityReservationCommitmentInfo>Group 10: optional commitment details.
Trait Implementations§
Source§impl Clone for CapacityReservation
impl Clone for CapacityReservation
Source§fn clone(&self) -> CapacityReservation
fn clone(&self) -> CapacityReservation
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 CapacityReservation
impl Debug for CapacityReservation
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 CapacityReservation
impl RefUnwindSafe for CapacityReservation
impl Send for CapacityReservation
impl Sync for CapacityReservation
impl Unpin for CapacityReservation
impl UnsafeUnpin for CapacityReservation
impl UnwindSafe for CapacityReservation
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.