pub struct AccountState {
pub scalable_targets: BTreeMap<TargetKey, ScalableTarget>,
pub scaling_policies: BTreeMap<PolicyKey, ScalingPolicy>,
pub scheduled_actions: BTreeMap<ScheduledKey, ScheduledAction>,
pub scaling_activities: Vec<ScalingActivity>,
pub tags: BTreeMap<String, BTreeMap<String, String>>,
}Fields§
§scalable_targets: BTreeMap<TargetKey, ScalableTarget>Keyed by (ServiceNamespace, ResourceId, ScalableDimension).
scaling_policies: BTreeMap<PolicyKey, ScalingPolicy>Keyed by (ServiceNamespace, ResourceId, ScalableDimension, PolicyName).
scheduled_actions: BTreeMap<ScheduledKey, ScheduledAction>Keyed by (ServiceNamespace, ResourceId, ScalableDimension, ScheduledActionName).
scaling_activities: Vec<ScalingActivity>Scaling activities, newest first.
Tags keyed by ARN.
Trait Implementations§
Source§impl Debug for AccountState
impl Debug for AccountState
Source§impl Default for AccountState
impl Default for AccountState
Source§fn default() -> AccountState
fn default() -> AccountState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountState
impl<'de> Deserialize<'de> for AccountState
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
Auto Trait Implementations§
impl Freeze for AccountState
impl RefUnwindSafe for AccountState
impl Send for AccountState
impl Sync for AccountState
impl Unpin for AccountState
impl UnsafeUnpin for AccountState
impl UnwindSafe for AccountState
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