#[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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 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

The ID of the application component.

The name of application component.

The top recommendation set for the application component.

The status of analysis, if the application component has source code or an associated database.

A detailed description of the analysis status and any failure message.

A list of anti-pattern severity summaries.

Configuration details for the database associated with the application component.

Details about the source code repository associated with the application component.

The type of application component.

The application component subtype.

Indicates whether the application component has been included for server recommendation or not.

The S3 bucket name and the Amazon S3 key name for the anti-pattern report.

The status of the anti-pattern report generation.

The status message for the anti-pattern.

OS version.

OS driver.

The timestamp of when the application component was assessed.

The ID of the server that the application component is running on.

Set to true if the application component is running on multiple servers.

Creates a new builder-style object to manufacture ApplicationComponentDetail

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more