Skip to main content

portfolio_summaries

Creates, updates, deletes, gets or lists a portfolio_summaries resource.

Overview

Nameportfolio_summaries
TypeResource
Idaws.migrationhubstrategy.portfolio_summaries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
antipattern_report_s3_objectobjectContains the S3 bucket name and the Amazon S3 key name.
antipattern_report_statusstringThe status of the anti-pattern report. (FAILED, IN_PROGRESS, SUCCESS)
antipattern_report_status_messagestringThe status message of the anti-pattern report. (pattern: <code>.\S.</code>)
last_analyzed_timestampstring (date-time)The time the assessment was performed.
list_antipattern_severity_summaryarrayList of AntipatternSeveritySummary.
list_application_component_status_summaryarrayList of status summaries of the analyzed application components.
list_application_component_strategy_summaryarrayList of ApplicationComponentStrategySummary.
list_application_component_summaryarrayList of ApplicationComponentSummary.
list_server_status_summaryarrayList of status summaries of the analyzed servers.
list_server_strategy_summaryarrayList of ServerStrategySummary.
list_server_summaryarrayList of ServerSummary.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_portfolio_summaryselectregionRetrieves overall summary including the number of servers to rehost and the overall number of anti-patterns.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves overall summary including the number of servers to rehost and the overall number of anti-patterns.

SELECT
antipattern_report_s3_object,
antipattern_report_status,
antipattern_report_status_message,
last_analyzed_timestamp,
list_antipattern_severity_summary,
list_application_component_status_summary,
list_application_component_strategy_summary,
list_application_component_summary,
list_server_status_summary,
list_server_strategy_summary,
list_server_summary
FROM aws.migrationhubstrategy.portfolio_summaries
WHERE region = '{{ region }}' -- required
;