#[non_exhaustive]pub struct MonitoredResourceIdentifier { /* private fields */ }
Expand description
Information about the resource that is being monitored, including the name of the resource, the type of resource, and whether or not permission is given to DevOps Guru to access that resource.
Implementations§
source§impl MonitoredResourceIdentifier
impl MonitoredResourceIdentifier
sourcepub fn monitored_resource_name(&self) -> Option<&str>
pub fn monitored_resource_name(&self) -> Option<&str>
The name of the resource being monitored.
sourcepub fn resource_permission(&self) -> Option<&ResourcePermission>
pub fn resource_permission(&self) -> Option<&ResourcePermission>
The permission status of a resource.
sourcepub fn last_updated(&self) -> Option<&DateTime>
pub fn last_updated(&self) -> Option<&DateTime>
The time at which DevOps Guru last updated this resource.
sourcepub fn resource_collection(&self) -> Option<&ResourceCollection>
pub fn resource_collection(&self) -> Option<&ResourceCollection>
A collection of Amazon Web Services resources supported by DevOps Guru. The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag key. You can specify up to 500 Amazon Web Services CloudFormation stacks.
source§impl MonitoredResourceIdentifier
impl MonitoredResourceIdentifier
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture MonitoredResourceIdentifier
.
Trait Implementations§
source§impl Clone for MonitoredResourceIdentifier
impl Clone for MonitoredResourceIdentifier
source§fn clone(&self) -> MonitoredResourceIdentifier
fn clone(&self) -> MonitoredResourceIdentifier
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for MonitoredResourceIdentifier
impl Debug for MonitoredResourceIdentifier
source§impl PartialEq<MonitoredResourceIdentifier> for MonitoredResourceIdentifier
impl PartialEq<MonitoredResourceIdentifier> for MonitoredResourceIdentifier
source§fn eq(&self, other: &MonitoredResourceIdentifier) -> bool
fn eq(&self, other: &MonitoredResourceIdentifier) -> bool
self
and other
values to be equal, and is used
by ==
.