pub struct AnalyzerSummary {
pub arn: String,
pub created_at: f64,
pub last_resource_analyzed: Option<String>,
pub last_resource_analyzed_at: Option<f64>,
pub name: String,
pub status: String,
pub status_reason: Option<StatusReason>,
pub tags: Option<HashMap<String, String>>,
pub type_: String,
}
Expand description
Contains information about the analyzer.
Fields§
§arn: String
The ARN of the analyzer.
created_at: f64
A timestamp for the time at which the analyzer was created.
last_resource_analyzed: Option<String>
The resource that was most recently analyzed by the analyzer.
last_resource_analyzed_at: Option<f64>
The time at which the most recently analyzed resource was analyzed.
name: String
The name of the analyzer.
status: String
The status of the analyzer. An Active
analyzer successfully monitors supported resources and generates new findings. The analyzer is Disabled
when a user action, such as removing trusted access for IAM Access Analyzer from AWS Organizations, causes the analyzer to stop generating new findings. The status is Creating
when the analyzer creation is in progress and Failed
when the analyzer creation has failed.
status_reason: Option<StatusReason>
The statusReason
provides more details about the current status of the analyzer. For example, if the creation for the analyzer fails, a Failed
status is displayed. For an analyzer with organization as the type, this failure can be due to an issue with creating the service-linked roles required in the member accounts of the AWS organization.
The tags added to the analyzer.
type_: String
The type of analyzer, which corresponds to the zone of trust chosen for the analyzer.
Trait Implementations§
Source§impl Clone for AnalyzerSummary
impl Clone for AnalyzerSummary
Source§fn clone(&self) -> AnalyzerSummary
fn clone(&self) -> AnalyzerSummary
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more