#[non_exhaustive]pub struct RecommendationRelatedAnomalyResource {
pub name: Option<String>,
pub type: Option<String>,
}
Expand description
Information about a resource in which DevOps Guru detected anomalous behavior.
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.name: Option<String>
The name of the resource.
type: Option<String>
The type of the resource. Resource types take the same form that is used by Amazon Web Services CloudFormation resource type identifiers, service-provider::service-name::data-type-name
. For example, AWS::RDS::DBCluster
. For more information, see Amazon Web Services resource and property types reference in the Amazon Web Services CloudFormation User Guide.
Implementations§
source§impl RecommendationRelatedAnomalyResource
impl RecommendationRelatedAnomalyResource
sourcepub fn type(&self) -> Option<&str>
pub fn type(&self) -> Option<&str>
The type of the resource. Resource types take the same form that is used by Amazon Web Services CloudFormation resource type identifiers, service-provider::service-name::data-type-name
. For example, AWS::RDS::DBCluster
. For more information, see Amazon Web Services resource and property types reference in the Amazon Web Services CloudFormation User Guide.
source§impl RecommendationRelatedAnomalyResource
impl RecommendationRelatedAnomalyResource
sourcepub fn builder() -> RecommendationRelatedAnomalyResourceBuilder
pub fn builder() -> RecommendationRelatedAnomalyResourceBuilder
Creates a new builder-style object to manufacture RecommendationRelatedAnomalyResource
.
Trait Implementations§
source§impl Clone for RecommendationRelatedAnomalyResource
impl Clone for RecommendationRelatedAnomalyResource
source§fn clone(&self) -> RecommendationRelatedAnomalyResource
fn clone(&self) -> RecommendationRelatedAnomalyResource
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for RecommendationRelatedAnomalyResource
impl PartialEq for RecommendationRelatedAnomalyResource
source§fn eq(&self, other: &RecommendationRelatedAnomalyResource) -> bool
fn eq(&self, other: &RecommendationRelatedAnomalyResource) -> bool
self
and other
values to be equal, and is used
by ==
.