pub struct AuroraPostgresHeartbeatData {
pub status: PostgresHeartbeatStatus,
pub cluster_identifier: String,
pub engine_version: Option<String>,
pub endpoint: Option<String>,
pub serverless_capacity: Option<f64>,
pub never_pauses: bool,
}Fields§
§status: PostgresHeartbeatStatus§cluster_identifier: String§engine_version: Option<String>§endpoint: Option<String>§serverless_capacity: Option<f64>Latest sampled ServerlessDatabaseCapacity (ACU).
never_pauses: boolTrue when a minCapacity: 0 instance has not reached 0 ACU over the observation
window — it is silently paying always-on prices (auto-pause verification).
Trait Implementations§
Source§impl Clone for AuroraPostgresHeartbeatData
impl Clone for AuroraPostgresHeartbeatData
Source§fn clone(&self) -> AuroraPostgresHeartbeatData
fn clone(&self) -> AuroraPostgresHeartbeatData
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 AuroraPostgresHeartbeatData
impl Debug for AuroraPostgresHeartbeatData
Source§impl<'de> Deserialize<'de> for AuroraPostgresHeartbeatData
impl<'de> Deserialize<'de> for AuroraPostgresHeartbeatData
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 PartialEq for AuroraPostgresHeartbeatData
impl PartialEq for AuroraPostgresHeartbeatData
Source§fn eq(&self, other: &AuroraPostgresHeartbeatData) -> bool
fn eq(&self, other: &AuroraPostgresHeartbeatData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AuroraPostgresHeartbeatData
Auto Trait Implementations§
impl Freeze for AuroraPostgresHeartbeatData
impl RefUnwindSafe for AuroraPostgresHeartbeatData
impl Send for AuroraPostgresHeartbeatData
impl Sync for AuroraPostgresHeartbeatData
impl Unpin for AuroraPostgresHeartbeatData
impl UnsafeUnpin for AuroraPostgresHeartbeatData
impl UnwindSafe for AuroraPostgresHeartbeatData
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