Struct aws_sdk_proton::types::CountsSummary
source · #[non_exhaustive]pub struct CountsSummary {
pub components: Option<ResourceCountsSummary>,
pub environments: Option<ResourceCountsSummary>,
pub environment_templates: Option<ResourceCountsSummary>,
pub service_instances: Option<ResourceCountsSummary>,
pub services: Option<ResourceCountsSummary>,
pub service_templates: Option<ResourceCountsSummary>,
pub pipelines: Option<ResourceCountsSummary>,
}
Expand description
Summary counts of each Proton resource 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.components: Option<ResourceCountsSummary>
The total number of components in the Amazon Web Services account.
The semantics of the components
field are different from the semantics of results for other infrastructure-provisioning resources. That's because at this time components don't have associated templates, therefore they don't have the concept of staleness. The components
object will only contain total
and failed
members.
environments: Option<ResourceCountsSummary>
The staleness counts for Proton environments in the Amazon Web Services account. The environments
object will only contain total
members.
environment_templates: Option<ResourceCountsSummary>
The total number of environment templates in the Amazon Web Services account. The environmentTemplates
object will only contain total
members.
service_instances: Option<ResourceCountsSummary>
The staleness counts for Proton service instances in the Amazon Web Services account.
services: Option<ResourceCountsSummary>
The staleness counts for Proton services in the Amazon Web Services account.
service_templates: Option<ResourceCountsSummary>
The total number of service templates in the Amazon Web Services account. The serviceTemplates
object will only contain total
members.
pipelines: Option<ResourceCountsSummary>
The staleness counts for Proton pipelines in the Amazon Web Services account.
Implementations§
source§impl CountsSummary
impl CountsSummary
sourcepub fn components(&self) -> Option<&ResourceCountsSummary>
pub fn components(&self) -> Option<&ResourceCountsSummary>
The total number of components in the Amazon Web Services account.
The semantics of the components
field are different from the semantics of results for other infrastructure-provisioning resources. That's because at this time components don't have associated templates, therefore they don't have the concept of staleness. The components
object will only contain total
and failed
members.
sourcepub fn environments(&self) -> Option<&ResourceCountsSummary>
pub fn environments(&self) -> Option<&ResourceCountsSummary>
The staleness counts for Proton environments in the Amazon Web Services account. The environments
object will only contain total
members.
sourcepub fn environment_templates(&self) -> Option<&ResourceCountsSummary>
pub fn environment_templates(&self) -> Option<&ResourceCountsSummary>
The total number of environment templates in the Amazon Web Services account. The environmentTemplates
object will only contain total
members.
sourcepub fn service_instances(&self) -> Option<&ResourceCountsSummary>
pub fn service_instances(&self) -> Option<&ResourceCountsSummary>
The staleness counts for Proton service instances in the Amazon Web Services account.
sourcepub fn services(&self) -> Option<&ResourceCountsSummary>
pub fn services(&self) -> Option<&ResourceCountsSummary>
The staleness counts for Proton services in the Amazon Web Services account.
sourcepub fn service_templates(&self) -> Option<&ResourceCountsSummary>
pub fn service_templates(&self) -> Option<&ResourceCountsSummary>
The total number of service templates in the Amazon Web Services account. The serviceTemplates
object will only contain total
members.
sourcepub fn pipelines(&self) -> Option<&ResourceCountsSummary>
pub fn pipelines(&self) -> Option<&ResourceCountsSummary>
The staleness counts for Proton pipelines in the Amazon Web Services account.
source§impl CountsSummary
impl CountsSummary
sourcepub fn builder() -> CountsSummaryBuilder
pub fn builder() -> CountsSummaryBuilder
Creates a new builder-style object to manufacture CountsSummary
.
Trait Implementations§
source§impl Clone for CountsSummary
impl Clone for CountsSummary
source§fn clone(&self) -> CountsSummary
fn clone(&self) -> CountsSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CountsSummary
impl Debug for CountsSummary
source§impl PartialEq for CountsSummary
impl PartialEq for CountsSummary
source§fn eq(&self, other: &CountsSummary) -> bool
fn eq(&self, other: &CountsSummary) -> bool
self
and other
values to be equal, and is used
by ==
.