#[non_exhaustive]pub struct AutoScalingConfigurationSummary {
pub auto_scaling_configuration_arn: Option<String>,
pub auto_scaling_configuration_name: Option<String>,
pub auto_scaling_configuration_revision: i32,
}
Expand description
Provides summary information about an App Runner automatic scaling configuration resource.
This type contains limited information about an auto scaling configuration. It includes only identification information, without configuration details. It's returned by the ListAutoScalingConfigurations
action. Complete configuration information is returned by the CreateAutoScalingConfiguration
, DescribeAutoScalingConfiguration
, and DeleteAutoScalingConfiguration
actions using the AutoScalingConfiguration
type.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.auto_scaling_configuration_arn: Option<String>
The Amazon Resource Name (ARN) of this auto scaling configuration.
auto_scaling_configuration_name: Option<String>
The customer-provided auto scaling configuration name. It can be used in multiple revisions of a configuration.
auto_scaling_configuration_revision: i32
The revision of this auto scaling configuration. It's unique among all the active configurations ("Status": "ACTIVE"
) with the same AutoScalingConfigurationName
.
Implementations
sourceimpl AutoScalingConfigurationSummary
impl AutoScalingConfigurationSummary
sourcepub fn auto_scaling_configuration_arn(&self) -> Option<&str>
pub fn auto_scaling_configuration_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of this auto scaling configuration.
sourcepub fn auto_scaling_configuration_name(&self) -> Option<&str>
pub fn auto_scaling_configuration_name(&self) -> Option<&str>
The customer-provided auto scaling configuration name. It can be used in multiple revisions of a configuration.
sourcepub fn auto_scaling_configuration_revision(&self) -> i32
pub fn auto_scaling_configuration_revision(&self) -> i32
The revision of this auto scaling configuration. It's unique among all the active configurations ("Status": "ACTIVE"
) with the same AutoScalingConfigurationName
.
sourceimpl AutoScalingConfigurationSummary
impl AutoScalingConfigurationSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AutoScalingConfigurationSummary
Trait Implementations
sourceimpl Clone for AutoScalingConfigurationSummary
impl Clone for AutoScalingConfigurationSummary
sourcefn clone(&self) -> AutoScalingConfigurationSummary
fn clone(&self) -> AutoScalingConfigurationSummary
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<AutoScalingConfigurationSummary> for AutoScalingConfigurationSummary
impl PartialEq<AutoScalingConfigurationSummary> for AutoScalingConfigurationSummary
sourcefn eq(&self, other: &AutoScalingConfigurationSummary) -> bool
fn eq(&self, other: &AutoScalingConfigurationSummary) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AutoScalingConfigurationSummary) -> bool
fn ne(&self, other: &AutoScalingConfigurationSummary) -> bool
This method tests for !=
.
impl StructuralPartialEq for AutoScalingConfigurationSummary
Auto Trait Implementations
impl RefUnwindSafe for AutoScalingConfigurationSummary
impl Send for AutoScalingConfigurationSummary
impl Sync for AutoScalingConfigurationSummary
impl Unpin for AutoScalingConfigurationSummary
impl UnwindSafe for AutoScalingConfigurationSummary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more