pub struct AsymmetricAutoscalingOption {
pub overrides: Option<AutoscalingConfigOverrides>,
pub replica_selection: Option<InstanceReplicaSelection>,
}Expand description
AsymmetricAutoscalingOption specifies the scaling of replicas identified by the given selection.
This type is not used in any activity, and only used as part of another schema.
Fields§
§overrides: Option<AutoscalingConfigOverrides>Optional. Overrides applied to the top-level autoscaling configuration for the selected replicas.
replica_selection: Option<InstanceReplicaSelection>Required. Selects the replicas to which this AsymmetricAutoscalingOption applies. Only read-only replicas are supported.
Trait Implementations§
Source§impl Clone for AsymmetricAutoscalingOption
impl Clone for AsymmetricAutoscalingOption
Source§fn clone(&self) -> AsymmetricAutoscalingOption
fn clone(&self) -> AsymmetricAutoscalingOption
Returns a duplicate of the value. Read more
1.0.0 · 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 AsymmetricAutoscalingOption
impl Debug for AsymmetricAutoscalingOption
Source§impl Default for AsymmetricAutoscalingOption
impl Default for AsymmetricAutoscalingOption
Source§fn default() -> AsymmetricAutoscalingOption
fn default() -> AsymmetricAutoscalingOption
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AsymmetricAutoscalingOption
impl<'de> Deserialize<'de> for AsymmetricAutoscalingOption
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
impl Part for AsymmetricAutoscalingOption
Auto Trait Implementations§
impl Freeze for AsymmetricAutoscalingOption
impl RefUnwindSafe for AsymmetricAutoscalingOption
impl Send for AsymmetricAutoscalingOption
impl Sync for AsymmetricAutoscalingOption
impl Unpin for AsymmetricAutoscalingOption
impl UnwindSafe for AsymmetricAutoscalingOption
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