pub struct GetSpotPriceResult {
pub availability_zone: Output<Option<String>>,
pub filters: Output<Option<Vec<GetSpotPriceFilter>>>,
pub id: Output<String>,
pub instance_type: Output<Option<String>>,
pub spot_price: Output<String>,
pub spot_price_timestamp: Output<String>,
}
Fields§
§availability_zone: Output<Option<String>>
§filters: Output<Option<Vec<GetSpotPriceFilter>>>
§id: Output<String>
The provider-assigned unique ID for this managed resource.
instance_type: Output<Option<String>>
§spot_price: Output<String>
Most recent Spot Price value for the given instance type and AZ.
spot_price_timestamp: Output<String>
The timestamp at which the Spot Price value was published.
Auto Trait Implementations§
impl Freeze for GetSpotPriceResult
impl RefUnwindSafe for GetSpotPriceResult
impl Send for GetSpotPriceResult
impl Sync for GetSpotPriceResult
impl Unpin for GetSpotPriceResult
impl UnwindSafe for GetSpotPriceResult
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