#[non_exhaustive]pub struct ApplicationComponentDetail {Show 19 fields
pub id: Option<String>,
pub name: Option<String>,
pub recommendation_set: Option<RecommendationSet>,
pub analysis_status: Option<SrcCodeOrDbAnalysisStatus>,
pub status_message: Option<String>,
pub list_antipattern_severity_summary: Option<Vec<AntipatternSeveritySummary>>,
pub database_config_detail: Option<DatabaseConfigDetail>,
pub source_code_repositories: Option<Vec<SourceCodeRepository>>,
pub app_type: Option<AppType>,
pub resource_sub_type: Option<ResourceSubType>,
pub inclusion_status: Option<InclusionStatus>,
pub antipattern_report_s3_object: Option<S3Object>,
pub antipattern_report_status: Option<AntipatternReportStatus>,
pub antipattern_report_status_message: Option<String>,
pub os_version: Option<String>,
pub os_driver: Option<String>,
pub last_analyzed_timestamp: Option<DateTime>,
pub associated_server_id: Option<String>,
pub more_server_association_exists: Option<bool>,
}Expand description
Contains detailed information about an application component.
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.id: Option<String>The ID of the application component.
name: Option<String>The name of application component.
recommendation_set: Option<RecommendationSet>The top recommendation set for the application component.
analysis_status: Option<SrcCodeOrDbAnalysisStatus>The status of analysis, if the application component has source code or an associated database.
status_message: Option<String>A detailed description of the analysis status and any failure message.
list_antipattern_severity_summary: Option<Vec<AntipatternSeveritySummary>>A list of anti-pattern severity summaries.
database_config_detail: Option<DatabaseConfigDetail>Configuration details for the database associated with the application component.
source_code_repositories: Option<Vec<SourceCodeRepository>>Details about the source code repository associated with the application component.
app_type: Option<AppType>The type of application component.
resource_sub_type: Option<ResourceSubType>The application component subtype.
inclusion_status: Option<InclusionStatus>Indicates whether the application component has been included for server recommendation or not.
antipattern_report_s3_object: Option<S3Object>The S3 bucket name and the Amazon S3 key name for the anti-pattern report.
antipattern_report_status: Option<AntipatternReportStatus>The status of the anti-pattern report generation.
antipattern_report_status_message: Option<String>The status message for the anti-pattern.
os_version: Option<String>OS version.
os_driver: Option<String>OS driver.
last_analyzed_timestamp: Option<DateTime>The timestamp of when the application component was assessed.
associated_server_id: Option<String>The ID of the server that the application component is running on.
more_server_association_exists: Option<bool>Set to true if the application component is running on multiple servers.
Implementations
sourceimpl ApplicationComponentDetail
impl ApplicationComponentDetail
sourcepub fn recommendation_set(&self) -> Option<&RecommendationSet>
pub fn recommendation_set(&self) -> Option<&RecommendationSet>
The top recommendation set for the application component.
sourcepub fn analysis_status(&self) -> Option<&SrcCodeOrDbAnalysisStatus>
pub fn analysis_status(&self) -> Option<&SrcCodeOrDbAnalysisStatus>
The status of analysis, if the application component has source code or an associated database.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
A detailed description of the analysis status and any failure message.
sourcepub fn list_antipattern_severity_summary(
&self
) -> Option<&[AntipatternSeveritySummary]>
pub fn list_antipattern_severity_summary(
&self
) -> Option<&[AntipatternSeveritySummary]>
A list of anti-pattern severity summaries.
sourcepub fn database_config_detail(&self) -> Option<&DatabaseConfigDetail>
pub fn database_config_detail(&self) -> Option<&DatabaseConfigDetail>
Configuration details for the database associated with the application component.
sourcepub fn source_code_repositories(&self) -> Option<&[SourceCodeRepository]>
pub fn source_code_repositories(&self) -> Option<&[SourceCodeRepository]>
Details about the source code repository associated with the application component.
sourcepub fn resource_sub_type(&self) -> Option<&ResourceSubType>
pub fn resource_sub_type(&self) -> Option<&ResourceSubType>
The application component subtype.
sourcepub fn inclusion_status(&self) -> Option<&InclusionStatus>
pub fn inclusion_status(&self) -> Option<&InclusionStatus>
Indicates whether the application component has been included for server recommendation or not.
sourcepub fn antipattern_report_s3_object(&self) -> Option<&S3Object>
pub fn antipattern_report_s3_object(&self) -> Option<&S3Object>
The S3 bucket name and the Amazon S3 key name for the anti-pattern report.
sourcepub fn antipattern_report_status(&self) -> Option<&AntipatternReportStatus>
pub fn antipattern_report_status(&self) -> Option<&AntipatternReportStatus>
The status of the anti-pattern report generation.
sourcepub fn antipattern_report_status_message(&self) -> Option<&str>
pub fn antipattern_report_status_message(&self) -> Option<&str>
The status message for the anti-pattern.
sourcepub fn os_version(&self) -> Option<&str>
pub fn os_version(&self) -> Option<&str>
OS version.
sourcepub fn last_analyzed_timestamp(&self) -> Option<&DateTime>
pub fn last_analyzed_timestamp(&self) -> Option<&DateTime>
The timestamp of when the application component was assessed.
sourcepub fn associated_server_id(&self) -> Option<&str>
pub fn associated_server_id(&self) -> Option<&str>
The ID of the server that the application component is running on.
sourcepub fn more_server_association_exists(&self) -> Option<bool>
pub fn more_server_association_exists(&self) -> Option<bool>
Set to true if the application component is running on multiple servers.
sourceimpl ApplicationComponentDetail
impl ApplicationComponentDetail
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ApplicationComponentDetail
Trait Implementations
sourceimpl Clone for ApplicationComponentDetail
impl Clone for ApplicationComponentDetail
sourcefn clone(&self) -> ApplicationComponentDetail
fn clone(&self) -> ApplicationComponentDetail
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ApplicationComponentDetail
impl Debug for ApplicationComponentDetail
sourceimpl PartialEq<ApplicationComponentDetail> for ApplicationComponentDetail
impl PartialEq<ApplicationComponentDetail> for ApplicationComponentDetail
sourcefn eq(&self, other: &ApplicationComponentDetail) -> bool
fn eq(&self, other: &ApplicationComponentDetail) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ApplicationComponentDetail) -> bool
fn ne(&self, other: &ApplicationComponentDetail) -> bool
This method tests for !=.
impl StructuralPartialEq for ApplicationComponentDetail
Auto Trait Implementations
impl RefUnwindSafe for ApplicationComponentDetail
impl Send for ApplicationComponentDetail
impl Sync for ApplicationComponentDetail
impl Unpin for ApplicationComponentDetail
impl UnwindSafe for ApplicationComponentDetail
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more