Struct aws_sdk_pi::types::AnalysisReport
source · #[non_exhaustive]pub struct AnalysisReport {
pub analysis_report_id: Option<String>,
pub identifier: Option<String>,
pub service_type: Option<ServiceType>,
pub create_time: Option<DateTime>,
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub status: Option<AnalysisStatus>,
pub insights: Option<Vec<Insight>>,
}
Expand description
Retrieves the summary of the performance analysis report created for a time period.
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.analysis_report_id: Option<String>
The name of the analysis report.
identifier: Option<String>
The unique identifier of the analysis report.
service_type: Option<ServiceType>
List the tags for the Amazon Web Services service for which Performance Insights returns metrics. Valid values are as follows:
-
RDS
-
DOCDB
create_time: Option<DateTime>
The time you created the analysis report.
start_time: Option<DateTime>
The analysis start time in the report.
end_time: Option<DateTime>
The analysis end time in the report.
status: Option<AnalysisStatus>
The status of the created analysis report.
insights: Option<Vec<Insight>>
The list of identified insights in the analysis report.
Implementations§
source§impl AnalysisReport
impl AnalysisReport
sourcepub fn analysis_report_id(&self) -> Option<&str>
pub fn analysis_report_id(&self) -> Option<&str>
The name of the analysis report.
sourcepub fn identifier(&self) -> Option<&str>
pub fn identifier(&self) -> Option<&str>
The unique identifier of the analysis report.
sourcepub fn service_type(&self) -> Option<&ServiceType>
pub fn service_type(&self) -> Option<&ServiceType>
List the tags for the Amazon Web Services service for which Performance Insights returns metrics. Valid values are as follows:
-
RDS
-
DOCDB
sourcepub fn create_time(&self) -> Option<&DateTime>
pub fn create_time(&self) -> Option<&DateTime>
The time you created the analysis report.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The analysis start time in the report.
sourcepub fn status(&self) -> Option<&AnalysisStatus>
pub fn status(&self) -> Option<&AnalysisStatus>
The status of the created analysis report.
source§impl AnalysisReport
impl AnalysisReport
sourcepub fn builder() -> AnalysisReportBuilder
pub fn builder() -> AnalysisReportBuilder
Creates a new builder-style object to manufacture AnalysisReport
.
Trait Implementations§
source§impl Clone for AnalysisReport
impl Clone for AnalysisReport
source§fn clone(&self) -> AnalysisReport
fn clone(&self) -> AnalysisReport
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AnalysisReport
impl Debug for AnalysisReport
source§impl PartialEq for AnalysisReport
impl PartialEq for AnalysisReport
source§fn eq(&self, other: &AnalysisReport) -> bool
fn eq(&self, other: &AnalysisReport) -> bool
self
and other
values to be equal, and is used
by ==
.