Table of Contents
A low-level client representing AWS Compute Optimizer:
import boto3
client = boto3.client('compute-optimizer')
These are the available methods:
Check if an operation can be paginated.
Generate a presigned url given a client, its method, and arguments
The presigned url
Returns Auto Scaling group recommendations.
AWS Compute Optimizer currently generates recommendations for Auto Scaling groups that are configured to run instances of the M, C, R, T, and X instance families. The service does not generate recommendations for Auto Scaling groups that have a scaling policy attached to them, or that do not have the same values for desired, minimum, and maximum capacity. In order for Compute Optimizer to analyze your Auto Scaling groups, they must be of a fixed size. For more information, see the AWS Compute Optimizer User Guide .
See also: AWS API Documentation
Request Syntax
response = client.get_auto_scaling_group_recommendations(
accountIds=[
'string',
],
autoScalingGroupArns=[
'string',
],
nextToken='string',
maxResults=123,
filters=[
{
'name': 'Finding'|'RecommendationSourceType',
'values': [
'string',
]
},
]
)
The AWS account IDs for which to return Auto Scaling group recommendations.
Only one account ID can be specified per request.
The Amazon Resource Name (ARN) of the Auto Scaling groups for which to return recommendations.
The maximum number of Auto Scaling group recommendations to return with a single call.
To retrieve the remaining results, make another call with the returned NextToken value.
An array of objects that describe a filter that returns a more specific list of Auto Scaling group recommendations.
Describes a filter that returns a more specific list of recommendations.
The name of the filter.
Specify Finding to filter the results to a specific findings classification.
Specify RecommendationSourceType to filter the results to a specific resource type.
The value of the filter.
If you specify the name parameter as Finding , and you're recommendations for an instance , then the valid values are Underprovisioned , Overprovisioned , NotOptimized , or Optimized .
If you specify the name parameter as Finding , and you're recommendations for an Auto Scaling group , then the valid values are Optimized , or NotOptimized .
If you specify the name parameter as RecommendationSourceType , then the valid values are EC2Instance , or AutoScalingGroup .
dict
Response Syntax
{
'nextToken': 'string',
'autoScalingGroupRecommendations': [
{
'accountId': 'string',
'autoScalingGroupArn': 'string',
'autoScalingGroupName': 'string',
'finding': 'Underprovisioned'|'Overprovisioned'|'Optimized'|'NotOptimized',
'utilizationMetrics': [
{
'name': 'Cpu'|'Memory',
'statistic': 'Maximum'|'Average',
'value': 123.0
},
],
'lookBackPeriodInDays': 123.0,
'currentConfiguration': {
'desiredCapacity': 123,
'minSize': 123,
'maxSize': 123,
'instanceType': 'string'
},
'recommendationOptions': [
{
'configuration': {
'desiredCapacity': 123,
'minSize': 123,
'maxSize': 123,
'instanceType': 'string'
},
'projectedUtilizationMetrics': [
{
'name': 'Cpu'|'Memory',
'statistic': 'Maximum'|'Average',
'value': 123.0
},
],
'performanceRisk': 123.0,
'rank': 123
},
],
'lastRefreshTimestamp': datetime(2015, 1, 1)
},
],
'errors': [
{
'identifier': 'string',
'code': 'string',
'message': 'string'
},
]
}
Response Structure
(dict) --
nextToken (string) --
The token to use to advance to the next page of Auto Scaling group recommendations.
This value is null when there are no more pages of Auto Scaling group recommendations to return.
autoScalingGroupRecommendations (list) --
An array of objects that describe Auto Scaling group recommendations.
(dict) --
Describes an Auto Scaling group recommendation.
accountId (string) --
The AWS account ID of the Auto Scaling group.
autoScalingGroupArn (string) --
The Amazon Resource Name (ARN) of the Auto Scaling group.
autoScalingGroupName (string) --
The name of the Auto Scaling group.
finding (string) --
The finding classification for the Auto Scaling group.
Findings for Auto Scaling groups include:
Note
The values that are returned might be NOT_OPTIMIZED or OPTIMIZED .
utilizationMetrics (list) --
An array of objects that describe the utilization metrics of the Auto Scaling group.
(dict) --
Describes a utilization metric of a resource, such as an Amazon EC2 instance.
name (string) --
The name of the utilization metric.
Note
Memory metrics are only returned for resources that have the unified CloudWatch agent installed on them. For more information, see Enabling Memory Utilization with the CloudWatch Agent .
statistic (string) --
The statistic of the utilization metric.
value (float) --
The value of the utilization metric.
lookBackPeriodInDays (float) --
The number of days for which utilization metrics were analyzed for the Auto Scaling group.
currentConfiguration (dict) --
An array of objects that describe the current configuration of the Auto Scaling group.
desiredCapacity (integer) --
The desired capacity, or number of instances, for the Auto Scaling group.
minSize (integer) --
The minimum size, or minimum number of instances, for the Auto Scaling group.
maxSize (integer) --
The maximum size, or maximum number of instances, for the Auto Scaling group.
instanceType (string) --
The instance type for the Auto Scaling group.
recommendationOptions (list) --
An array of objects that describe the recommendation options for the Auto Scaling group.
(dict) --
Describes a recommendation option for an Auto Scaling group.
configuration (dict) --
An array of objects that describe an Auto Scaling group configuration.
desiredCapacity (integer) --
The desired capacity, or number of instances, for the Auto Scaling group.
minSize (integer) --
The minimum size, or minimum number of instances, for the Auto Scaling group.
maxSize (integer) --
The maximum size, or maximum number of instances, for the Auto Scaling group.
instanceType (string) --
The instance type for the Auto Scaling group.
projectedUtilizationMetrics (list) --
An array of objects that describe the projected utilization metrics of the Auto Scaling group recommendation option.
(dict) --
Describes a utilization metric of a resource, such as an Amazon EC2 instance.
name (string) --
The name of the utilization metric.
Note
Memory metrics are only returned for resources that have the unified CloudWatch agent installed on them. For more information, see Enabling Memory Utilization with the CloudWatch Agent .
statistic (string) --
The statistic of the utilization metric.
value (float) --
The value of the utilization metric.
performanceRisk (float) --
The performance risk of the Auto Scaling group configuration recommendation.
Performance risk is the likelihood of the recommended instance type not meeting the performance requirement of your workload.
The lowest performance risk is categorized as 0 , and the highest as 5 .
rank (integer) --
The rank of the Auto Scaling group recommendation option.
The top recommendation option is ranked as 1 .
lastRefreshTimestamp (datetime) --
The time stamp of when the Auto Scaling group recommendation was last refreshed.
errors (list) --
An array of objects that describe errors of the request.
For example, an error is returned if you request recommendations for an unsupported Auto Scaling group.
(dict) --
Describes an error experienced when getting recommendations.
For example, an error is returned if you request recommendations for an unsupported Auto Scaling group, or if you request recommendations for an instance of an unsupported instance family.
identifier (string) --
The ID of the error.
code (string) --
The error code.
message (string) --
The message, or reason, for the error.
Exceptions
Returns Amazon EC2 instance recommendations.
AWS Compute Optimizer currently generates recommendations for Amazon Elastic Compute Cloud (Amazon EC2) and Amazon EC2 Auto Scaling. It generates recommendations for M, C, R, T, and X instance families. For more information, see the AWS Compute Optimizer User Guide .
See also: AWS API Documentation
Request Syntax
response = client.get_ec2_instance_recommendations(
instanceArns=[
'string',
],
nextToken='string',
maxResults=123,
filters=[
{
'name': 'Finding'|'RecommendationSourceType',
'values': [
'string',
]
},
],
accountIds=[
'string',
]
)
The Amazon Resource Name (ARN) of the instances for which to return recommendations.
The maximum number of instance recommendations to return with a single call.
To retrieve the remaining results, make another call with the returned NextToken value.
An array of objects that describe a filter that returns a more specific list of instance recommendations.
Describes a filter that returns a more specific list of recommendations.
The name of the filter.
Specify Finding to filter the results to a specific findings classification.
Specify RecommendationSourceType to filter the results to a specific resource type.
The value of the filter.
If you specify the name parameter as Finding , and you're recommendations for an instance , then the valid values are Underprovisioned , Overprovisioned , NotOptimized , or Optimized .
If you specify the name parameter as Finding , and you're recommendations for an Auto Scaling group , then the valid values are Optimized , or NotOptimized .
If you specify the name parameter as RecommendationSourceType , then the valid values are EC2Instance , or AutoScalingGroup .
The AWS account IDs for which to return instance recommendations.
Only one account ID can be specified per request.
dict
Response Syntax
{
'nextToken': 'string',
'instanceRecommendations': [
{
'instanceArn': 'string',
'accountId': 'string',
'instanceName': 'string',
'currentInstanceType': 'string',
'finding': 'Underprovisioned'|'Overprovisioned'|'Optimized'|'NotOptimized',
'utilizationMetrics': [
{
'name': 'Cpu'|'Memory',
'statistic': 'Maximum'|'Average',
'value': 123.0
},
],
'lookBackPeriodInDays': 123.0,
'recommendationOptions': [
{
'instanceType': 'string',
'projectedUtilizationMetrics': [
{
'name': 'Cpu'|'Memory',
'statistic': 'Maximum'|'Average',
'value': 123.0
},
],
'performanceRisk': 123.0,
'rank': 123
},
],
'recommendationSources': [
{
'recommendationSourceArn': 'string',
'recommendationSourceType': 'Ec2Instance'|'AutoScalingGroup'
},
],
'lastRefreshTimestamp': datetime(2015, 1, 1)
},
],
'errors': [
{
'identifier': 'string',
'code': 'string',
'message': 'string'
},
]
}
Response Structure
(dict) --
nextToken (string) --
The token to use to advance to the next page of instance recommendations.
This value is null when there are no more pages of instance recommendations to return.
instanceRecommendations (list) --
An array of objects that describe instance recommendations.
(dict) --
Describes an Amazon EC2 instance recommendation.
instanceArn (string) --
The Amazon Resource Name (ARN) of the current instance.
accountId (string) --
The AWS account ID of the instance recommendation.
instanceName (string) --
The name of the current instance.
currentInstanceType (string) --
The instance type of the current instance.
finding (string) --
The finding classification for the instance.
Findings for instances include:
Note
The values that are returned might be UNDER_PROVISIONED , OVER_PROVISIONED , or OPTIMIZED .
utilizationMetrics (list) --
An array of objects that describe the utilization metrics of the instance.
(dict) --
Describes a utilization metric of a resource, such as an Amazon EC2 instance.
name (string) --
The name of the utilization metric.
Note
Memory metrics are only returned for resources that have the unified CloudWatch agent installed on them. For more information, see Enabling Memory Utilization with the CloudWatch Agent .
statistic (string) --
The statistic of the utilization metric.
value (float) --
The value of the utilization metric.
lookBackPeriodInDays (float) --
The number of days for which utilization metrics were analyzed for the instance.
recommendationOptions (list) --
An array of objects that describe the recommendation options for the instance.
(dict) --
Describes a recommendation option for an Amazon EC2 instance.
instanceType (string) --
The instance type of the instance recommendation.
projectedUtilizationMetrics (list) --
An array of objects that describe the projected utilization metrics of the instance recommendation option.
(dict) --
Describes a utilization metric of a resource, such as an Amazon EC2 instance.
name (string) --
The name of the utilization metric.
Note
Memory metrics are only returned for resources that have the unified CloudWatch agent installed on them. For more information, see Enabling Memory Utilization with the CloudWatch Agent .
statistic (string) --
The statistic of the utilization metric.
value (float) --
The value of the utilization metric.
performanceRisk (float) --
The performance risk of the instance recommendation option.
Performance risk is the likelihood of the recommended instance type not meeting the performance requirement of your workload.
The lowest performance risk is categorized as 0 , and the highest as 5 .
rank (integer) --
The rank of the instance recommendation option.
The top recommendation option is ranked as 1 .
recommendationSources (list) --
An array of objects that describe the source resource of the recommendation.
(dict) --
Describes the source of a recommendation, such as an Amazon EC2 instance or Auto Scaling group.
recommendationSourceArn (string) --
The Amazon Resource Name (ARN) of the recommendation source.
recommendationSourceType (string) --
The resource type of the recommendation source.
lastRefreshTimestamp (datetime) --
The time stamp of when the instance recommendation was last refreshed.
errors (list) --
An array of objects that describe errors of the request.
For example, an error is returned if you request recommendations for an instance of an unsupported instance family.
(dict) --
Describes an error experienced when getting recommendations.
For example, an error is returned if you request recommendations for an unsupported Auto Scaling group, or if you request recommendations for an instance of an unsupported instance family.
identifier (string) --
The ID of the error.
code (string) --
The error code.
message (string) --
The message, or reason, for the error.
Exceptions
Returns the projected utilization metrics of Amazon EC2 instance recommendations.
See also: AWS API Documentation
Request Syntax
response = client.get_ec2_recommendation_projected_metrics(
instanceArn='string',
stat='Maximum'|'Average',
period=123,
startTime=datetime(2015, 1, 1),
endTime=datetime(2015, 1, 1)
)
[REQUIRED]
The Amazon Resource Name (ARN) of the instances for which to return recommendation projected metrics.
[REQUIRED]
The statistic of the projected metrics.
[REQUIRED]
The granularity, in seconds, of the projected metrics data points.
[REQUIRED]
The time stamp of the first projected metrics data point to return.
[REQUIRED]
The time stamp of the last projected metrics data point to return.
dict
Response Syntax
{
'recommendedOptionProjectedMetrics': [
{
'recommendedInstanceType': 'string',
'rank': 123,
'projectedMetrics': [
{
'name': 'Cpu'|'Memory',
'timestamps': [
datetime(2015, 1, 1),
],
'values': [
123.0,
]
},
]
},
]
}
Response Structure
(dict) --
recommendedOptionProjectedMetrics (list) --
An array of objects that describe a projected metrics.
(dict) --
Describes a projected utilization metric of a recommendation option.
recommendedInstanceType (string) --
The recommended instance type.
rank (integer) --
The rank of the recommendation option projected metric.
The top recommendation option is ranked as 1 .
The projected metric rank correlates to the recommendation option rank. For example, the projected metric ranked as 1 is related to the recommendation option that is also ranked as 1 in the same response.
projectedMetrics (list) --
An array of objects that describe a projected utilization metric.
(dict) --
Describes a projected utilization metric of a recommendation option, such as an Amazon EC2 instance.
name (string) --
The name of the projected utilization metric.
Note
Memory metrics are only returned for resources that have the unified CloudWatch agent installed on them. For more information, see Enabling Memory Utilization with the CloudWatch Agent .
timestamps (list) --
The time stamps of the projected utilization metric.
values (list) --
The values of the projected utilization metrics.
Exceptions
Returns the enrollment (opt in) status of an account to the AWS Compute Optimizer service.
If the account is a master account of an organization, this operation also confirms the enrollment status of member accounts within the organization.
See also: AWS API Documentation
Request Syntax
response = client.get_enrollment_status()
{
'status': 'Active'|'Inactive'|'Pending'|'Failed',
'statusReason': 'string',
'memberAccountsEnrolled': True|False
}
Response Structure
The enrollment status of the account.
The reason for the enrollment status of the account.
For example, an account might show a status of Pending because member accounts of an organization require more time to be enrolled in the service.
Confirms the enrollment status of member accounts within the organization, if the account is a master account of an organization.
Exceptions
Create a paginator for an operation.
Returns the optimization findings for an account.
For example, it returns the number of Amazon EC2 instances in an account that are under-provisioned, over-provisioned, or optimized. It also returns the number of Auto Scaling groups in an account that are not optimized, or optimized.
See also: AWS API Documentation
Request Syntax
response = client.get_recommendation_summaries(
accountIds=[
'string',
],
nextToken='string',
maxResults=123
)
The AWS account IDs for which to return recommendation summaries.
Only one account ID can be specified per request.
The maximum number of recommendation summaries to return with a single call.
To retrieve the remaining results, make another call with the returned NextToken value.
dict
Response Syntax
{
'nextToken': 'string',
'recommendationSummaries': [
{
'summaries': [
{
'name': 'Underprovisioned'|'Overprovisioned'|'Optimized'|'NotOptimized',
'value': 123.0
},
],
'recommendationResourceType': 'Ec2Instance'|'AutoScalingGroup',
'accountId': 'string'
},
]
}
Response Structure
(dict) --
nextToken (string) --
The token to use to advance to the next page of recommendation summaries.
This value is null when there are no more pages of recommendation summaries to return.
recommendationSummaries (list) --
An array of objects that summarize a recommendation.
(dict) --
A summary of a recommendation.
summaries (list) --
An array of objects that describe a recommendation summary.
(dict) --
The summary of a recommendation.
name (string) --
The finding classification of the recommendation.
value (float) --
The value of the recommendation summary.
recommendationResourceType (string) --
The resource type of the recommendation.
accountId (string) --
The AWS account ID of the recommendation summary.
Exceptions
Returns an object that can wait for some condition.
Updates the enrollment (opt in) status of an account to the AWS Compute Optimizer service.
If the account is a master account of an organization, this operation can also enroll member accounts within the organization.
See also: AWS API Documentation
Request Syntax
response = client.update_enrollment_status(
status='Active'|'Inactive'|'Pending'|'Failed',
includeMemberAccounts=True|False
)
[REQUIRED]
The new enrollment status of the account.
Accepted options are Active or Inactive . You will get an error if Pending or Failed are specified.
dict
Response Syntax
{
'status': 'Active'|'Inactive'|'Pending'|'Failed',
'statusReason': 'string'
}
Response Structure
(dict) --
status (string) --
The enrollment status of the account.
statusReason (string) --
The reason for the enrollment status of the account. For example, an account might show a status of Pending because member accounts of an organization require more time to be enrolled in the service.
Exceptions
The available paginators are: