pub struct CapacityBlockExtensionView {Show 16 fields
pub capacity_block_extension_id: String,
pub capacity_reservation_id: String,
pub instance_type: String,
pub availability_zone: String,
pub instance_count: i32,
pub availability_zone_id: Option<String>,
pub start_date: String,
pub end_date: String,
pub capacity_block_extension_offering_id: String,
pub capacity_block_extension_status: String,
pub capacity_block_extension_purchase_date: String,
pub capacity_block_extension_duration_hours: i32,
pub currency_code: String,
pub upfront_fee: String,
pub capacity_reservation_arn: Option<String>,
pub capacity_block_extension_arn: Option<String>,
}Fields§
§capacity_block_extension_id: String§capacity_reservation_id: String§instance_type: String§availability_zone: String§instance_count: i32§availability_zone_id: Option<String>§start_date: String§end_date: String§capacity_block_extension_offering_id: String§capacity_block_extension_status: String§capacity_block_extension_purchase_date: String§capacity_block_extension_duration_hours: i32§currency_code: String§upfront_fee: String§capacity_reservation_arn: Option<String>§capacity_block_extension_arn: Option<String>Trait Implementations§
Source§impl Clone for CapacityBlockExtensionView
impl Clone for CapacityBlockExtensionView
Source§fn clone(&self) -> CapacityBlockExtensionView
fn clone(&self) -> CapacityBlockExtensionView
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 CapacityBlockExtensionView
impl Debug for CapacityBlockExtensionView
Source§impl<'de> Deserialize<'de> for CapacityBlockExtensionView
impl<'de> Deserialize<'de> for CapacityBlockExtensionView
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<&CapacityBlockExtension> for CapacityBlockExtensionView
impl From<&CapacityBlockExtension> for CapacityBlockExtensionView
Source§fn from(e: &CapacityBlockExtension) -> Self
fn from(e: &CapacityBlockExtension) -> Self
Converts to this type from the input type.
Source§impl From<CapacityBlockExtensionView> for CapacityBlockExtension
impl From<CapacityBlockExtensionView> for CapacityBlockExtension
Source§fn from(e: CapacityBlockExtensionView) -> Self
fn from(e: CapacityBlockExtensionView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CapacityBlockExtensionView
impl RefUnwindSafe for CapacityBlockExtensionView
impl Send for CapacityBlockExtensionView
impl Sync for CapacityBlockExtensionView
impl Unpin for CapacityBlockExtensionView
impl UnsafeUnpin for CapacityBlockExtensionView
impl UnwindSafe for CapacityBlockExtensionView
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.