#[non_exhaustive]pub struct ObservabilityConfigurationSummary {
pub observability_configuration_arn: Option<String>,
pub observability_configuration_name: Option<String>,
pub observability_configuration_revision: i32,
}
Expand description
Provides summary information about an App Runner observability configuration resource.
This type contains limited information about an observability configuration. It includes only identification information, without configuration details. It's returned by the ListObservabilityConfigurations
action. Complete configuration information is returned by the CreateObservabilityConfiguration
, DescribeObservabilityConfiguration
, and DeleteObservabilityConfiguration
actions using the ObservabilityConfiguration
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.observability_configuration_arn: Option<String>
The Amazon Resource Name (ARN) of this observability configuration.
observability_configuration_name: Option<String>
The customer-provided observability configuration name. It can be used in multiple revisions of a configuration.
observability_configuration_revision: i32
The revision of this observability configuration. It's unique among all the active configurations ("Status": "ACTIVE"
) that share the same ObservabilityConfigurationName
.
Implementations
sourceimpl ObservabilityConfigurationSummary
impl ObservabilityConfigurationSummary
sourcepub fn observability_configuration_arn(&self) -> Option<&str>
pub fn observability_configuration_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of this observability configuration.
sourcepub fn observability_configuration_name(&self) -> Option<&str>
pub fn observability_configuration_name(&self) -> Option<&str>
The customer-provided observability configuration name. It can be used in multiple revisions of a configuration.
sourcepub fn observability_configuration_revision(&self) -> i32
pub fn observability_configuration_revision(&self) -> i32
The revision of this observability configuration. It's unique among all the active configurations ("Status": "ACTIVE"
) that share the same ObservabilityConfigurationName
.
sourceimpl ObservabilityConfigurationSummary
impl ObservabilityConfigurationSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ObservabilityConfigurationSummary
Trait Implementations
sourceimpl Clone for ObservabilityConfigurationSummary
impl Clone for ObservabilityConfigurationSummary
sourcefn clone(&self) -> ObservabilityConfigurationSummary
fn clone(&self) -> ObservabilityConfigurationSummary
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<ObservabilityConfigurationSummary> for ObservabilityConfigurationSummary
impl PartialEq<ObservabilityConfigurationSummary> for ObservabilityConfigurationSummary
sourcefn eq(&self, other: &ObservabilityConfigurationSummary) -> bool
fn eq(&self, other: &ObservabilityConfigurationSummary) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ObservabilityConfigurationSummary) -> bool
fn ne(&self, other: &ObservabilityConfigurationSummary) -> bool
This method tests for !=
.
impl StructuralPartialEq for ObservabilityConfigurationSummary
Auto Trait Implementations
impl RefUnwindSafe for ObservabilityConfigurationSummary
impl Send for ObservabilityConfigurationSummary
impl Sync for ObservabilityConfigurationSummary
impl Unpin for ObservabilityConfigurationSummary
impl UnwindSafe for ObservabilityConfigurationSummary
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