AWS Cost Explorer Service

2018/07/11 - AWS Cost Explorer Service - 1 updated api methods

Changes  Starting today, you can access custom Reserved Instance (RI) purchase recommendations for your Amazon Redshift, Amazon ElastiCache, and Amazon Elasticsearch reservations via AWS Cost Explorer API, in addition to accessing RI purchase recommendations for your Amazon EC2 and Amazon RDS reservations.

GetReservationPurchaseRecommendation (updated) Link ΒΆ
Changes (request, response)
Request
{'PaymentOption': {'HEAVY_UTILIZATION',
                   'LIGHT_UTILIZATION',
                   'MEDIUM_UTILIZATION'}}
Response
{'Recommendations': {'PaymentOption': {'HEAVY_UTILIZATION',
                                       'LIGHT_UTILIZATION',
                                       'MEDIUM_UTILIZATION'},
                     'RecommendationDetails': {'InstanceDetails': {'ESInstanceDetails': {'CurrentGeneration': 'boolean',
                                                                                         'InstanceClass': 'string',
                                                                                         'InstanceSize': 'string',
                                                                                         'Region': 'string',
                                                                                         'SizeFlexEligible': 'boolean'},
                                                                   'ElastiCacheInstanceDetails': {'CurrentGeneration': 'boolean',
                                                                                                  'Family': 'string',
                                                                                                  'NodeType': 'string',
                                                                                                  'ProductDescription': 'string',
                                                                                                  'Region': 'string',
                                                                                                  'SizeFlexEligible': 'boolean'},
                                                                   'RedshiftInstanceDetails': {'CurrentGeneration': 'boolean',
                                                                                               'Family': 'string',
                                                                                               'NodeType': 'string',
                                                                                               'Region': 'string',
                                                                                               'SizeFlexEligible': 'boolean'}}}}}

Gets recommendations for which reservations to purchase. These recommendations could help you reduce your costs. Reservations provide a discounted hourly rate (up to 75%) compared to On-Demand pricing.

AWS generates your recommendations by identifying your On-Demand usage during a specific time period and collecting your usage into categories that are eligible for a reservation. After AWS has these categories, it simulates every combination of reservations in each category of usage to identify the best number of each type of RI to purchase to maximize your estimated savings.

For example, AWS automatically aggregates your EC2 Linux, shared tenancy, and c4 family usage in the US West (Oregon) Region and recommends that you buy size-flexible regional reservations to apply to the c4 family usage. AWS recommends the smallest size instance in an instance family. This makes it easier to purchase a size-flexible RI. AWS also shows the equal number of normalized units so that you can purchase any instance size that you want. For this example, your RI recommendation would be for c4.large , because that is the smallest size instance in the c4 instance family.

See also: AWS API Documentation

Request Syntax

client.get_reservation_purchase_recommendation(
    AccountId='string',
    Service='string',
    AccountScope='PAYER'|'LINKED',
    LookbackPeriodInDays='SEVEN_DAYS'|'THIRTY_DAYS'|'SIXTY_DAYS',
    TermInYears='ONE_YEAR'|'THREE_YEARS',
    PaymentOption='NO_UPFRONT'|'PARTIAL_UPFRONT'|'ALL_UPFRONT'|'LIGHT_UTILIZATION'|'MEDIUM_UTILIZATION'|'HEAVY_UTILIZATION',
    ServiceSpecification={
        'EC2Specification': {
            'OfferingClass': 'STANDARD'|'CONVERTIBLE'
        }
    },
    PageSize=123,
    NextPageToken='string'
)
type AccountId

string

param AccountId

The account ID that is associated with the recommendation.

type Service

string

param Service

[REQUIRED]

The specific service that you want recommendations for.

type AccountScope

string

param AccountScope

The account scope that you want recommendations for. PAYER means that AWS includes the master account and any member accounts when it calculates its recommendations. LINKED means that AWS includes only member accounts when it calculates its recommendations.

Valid values are PAYER and LINKED .

type LookbackPeriodInDays

string

param LookbackPeriodInDays

The number of previous days that you want AWS to consider when it calculates your recommendations.

type TermInYears

string

param TermInYears

The reservation term that you want recommendations for.

type PaymentOption

string

param PaymentOption

The reservation purchase option that you want recommendations for.

type ServiceSpecification

dict

param ServiceSpecification

The hardware specifications for the service instances that you want recommendations for, such as standard or convertible EC2 instances.

  • EC2Specification (dict) --

    The EC2 hardware specifications that you want AWS to provide recommendations for.

    • OfferingClass (string) --

      Whether you want a recommendation for standard or convertible reservations.

type PageSize

integer

param PageSize

The number of recommendations that you want returned in a single response object.

type NextPageToken

string

param NextPageToken

The pagination token that indicates the next set of results that you want to retrieve.

rtype

dict

returns

Response Syntax

{
    'Metadata': {
        'RecommendationId': 'string',
        'GenerationTimestamp': 'string'
    },
    'Recommendations': [
        {
            'AccountScope': 'PAYER'|'LINKED',
            'LookbackPeriodInDays': 'SEVEN_DAYS'|'THIRTY_DAYS'|'SIXTY_DAYS',
            'TermInYears': 'ONE_YEAR'|'THREE_YEARS',
            'PaymentOption': 'NO_UPFRONT'|'PARTIAL_UPFRONT'|'ALL_UPFRONT'|'LIGHT_UTILIZATION'|'MEDIUM_UTILIZATION'|'HEAVY_UTILIZATION',
            'ServiceSpecification': {
                'EC2Specification': {
                    'OfferingClass': 'STANDARD'|'CONVERTIBLE'
                }
            },
            'RecommendationDetails': [
                {
                    'InstanceDetails': {
                        'EC2InstanceDetails': {
                            'Family': 'string',
                            'InstanceType': 'string',
                            'Region': 'string',
                            'AvailabilityZone': 'string',
                            'Platform': 'string',
                            'Tenancy': 'string',
                            'CurrentGeneration': True|False,
                            'SizeFlexEligible': True|False
                        },
                        'RDSInstanceDetails': {
                            'Family': 'string',
                            'InstanceType': 'string',
                            'Region': 'string',
                            'DatabaseEngine': 'string',
                            'DatabaseEdition': 'string',
                            'DeploymentOption': 'string',
                            'LicenseModel': 'string',
                            'CurrentGeneration': True|False,
                            'SizeFlexEligible': True|False
                        },
                        'RedshiftInstanceDetails': {
                            'Family': 'string',
                            'NodeType': 'string',
                            'Region': 'string',
                            'CurrentGeneration': True|False,
                            'SizeFlexEligible': True|False
                        },
                        'ElastiCacheInstanceDetails': {
                            'Family': 'string',
                            'NodeType': 'string',
                            'Region': 'string',
                            'ProductDescription': 'string',
                            'CurrentGeneration': True|False,
                            'SizeFlexEligible': True|False
                        },
                        'ESInstanceDetails': {
                            'InstanceClass': 'string',
                            'InstanceSize': 'string',
                            'Region': 'string',
                            'CurrentGeneration': True|False,
                            'SizeFlexEligible': True|False
                        }
                    },
                    'RecommendedNumberOfInstancesToPurchase': 'string',
                    'RecommendedNormalizedUnitsToPurchase': 'string',
                    'MinimumNumberOfInstancesUsedPerHour': 'string',
                    'MinimumNormalizedUnitsUsedPerHour': 'string',
                    'MaximumNumberOfInstancesUsedPerHour': 'string',
                    'MaximumNormalizedUnitsUsedPerHour': 'string',
                    'AverageNumberOfInstancesUsedPerHour': 'string',
                    'AverageNormalizedUnitsUsedPerHour': 'string',
                    'AverageUtilization': 'string',
                    'EstimatedBreakEvenInMonths': 'string',
                    'CurrencyCode': 'string',
                    'EstimatedMonthlySavingsAmount': 'string',
                    'EstimatedMonthlySavingsPercentage': 'string',
                    'EstimatedMonthlyOnDemandCost': 'string',
                    'EstimatedReservationCostForLookbackPeriod': 'string',
                    'UpfrontCost': 'string',
                    'RecurringStandardMonthlyCost': 'string'
                },
            ],
            'RecommendationSummary': {
                'TotalEstimatedMonthlySavingsAmount': 'string',
                'TotalEstimatedMonthlySavingsPercentage': 'string',
                'CurrencyCode': 'string'
            }
        },
    ],
    'NextPageToken': 'string'
}

Response Structure

  • (dict) --

    • Metadata (dict) --

      Information about this specific recommendation call, such as the time stamp for when Cost Explorer generated this recommendation.

      • RecommendationId (string) --

        The ID for this specific recommendation.

      • GenerationTimestamp (string) --

        The time stamp for when AWS made this recommendation.

    • Recommendations (list) --

      Recommendations for reservations to purchase.

      • (dict) --

        A specific reservation that AWS recommends for purchase.

        • AccountScope (string) --

          The account scope that AWS recommends that you purchase this instance for. For example, you can purchase this reservation for an entire organization in AWS Organizations.

        • LookbackPeriodInDays (string) --

          How many days of previous usage that AWS considers when making this recommendation.

        • TermInYears (string) --

          The term of the reservation that you want recommendations for, in years.

        • PaymentOption (string) --

          The payment option for the reservation. For example, AllUpfront or NoUpfront .

        • ServiceSpecification (dict) --

          Hardware specifications for the service that you want recommendations for.

          • EC2Specification (dict) --

            The EC2 hardware specifications that you want AWS to provide recommendations for.

            • OfferingClass (string) --

              Whether you want a recommendation for standard or convertible reservations.

        • RecommendationDetails (list) --

          Details about the recommended purchases.

          • (dict) --

            Details about your recommended reservation purchase.

            • InstanceDetails (dict) --

              Details about the instances that AWS recommends that you purchase.

              • EC2InstanceDetails (dict) --

                The EC2 instances that AWS recommends that you purchase.

                • Family (string) --

                  The instance family of the recommended reservation.

                • InstanceType (string) --

                  The type of instance that AWS recommends.

                • Region (string) --

                  The AWS Region of the recommended reservation.

                • AvailabilityZone (string) --

                  The Availability Zone of the recommended reservation.

                • Platform (string) --

                  The platform of the recommended reservation. The platform is the specific combination of operating system, license model, and software on an instance.

                • Tenancy (string) --

                  Whether the recommended reservation is dedicated or shared.

                • CurrentGeneration (boolean) --

                  Whether the recommendation is for a current generation instance.

                • SizeFlexEligible (boolean) --

                  Whether the recommended reservation is size flexible.

              • RDSInstanceDetails (dict) --

                The RDS instances that AWS recommends that you purchase.

                • Family (string) --

                  The instance family of the recommended reservation.

                • InstanceType (string) --

                  The type of instance that AWS recommends.

                • Region (string) --

                  The AWS Region of the recommended reservation.

                • DatabaseEngine (string) --

                  The database engine that the recommended reservation supports.

                • DatabaseEdition (string) --

                  The database edition that the recommended reservation supports.

                • DeploymentOption (string) --

                  Whether the recommendation is for a reservation in a single Availability Zone or a reservation with a backup in a second Availability Zone.

                • LicenseModel (string) --

                  The license model that the recommended reservation supports.

                • CurrentGeneration (boolean) --

                  Whether the recommendation is for a current generation instance.

                • SizeFlexEligible (boolean) --

                  Whether the recommended reservation is size flexible.

              • RedshiftInstanceDetails (dict) --

                The Amazon Redshift instances that AWS recommends that you purchase.

                • Family (string) --

                  The instance family of the recommended reservation.

                • NodeType (string) --

                  The type of node that AWS recommends.

                • Region (string) --

                  The AWS Region of the recommended reservation.

                • CurrentGeneration (boolean) --

                  Whether the recommendation is for a current generation instance.

                • SizeFlexEligible (boolean) --

                  Whether the recommended reservation is size flexible.

              • ElastiCacheInstanceDetails (dict) --

                The ElastiCache instances that AWS recommends that you purchase.

                • Family (string) --

                  The instance family of the recommended reservation.

                • NodeType (string) --

                  The type of node that AWS recommends.

                • Region (string) --

                  The AWS Region of the recommended reservation.

                • ProductDescription (string) --

                  The description of the recommended reservation.

                • CurrentGeneration (boolean) --

                  Whether the recommendation is for a current generation instance.

                • SizeFlexEligible (boolean) --

                  Whether the recommended reservation is size flexible.

              • ESInstanceDetails (dict) --

                The Amazon ES instances that AWS recommends that you purchase.

                • InstanceClass (string) --

                  The class of instance that AWS recommends.

                • InstanceSize (string) --

                  The size of instance that AWS recommends.

                • Region (string) --

                  The AWS Region of the recommended reservation.

                • CurrentGeneration (boolean) --

                  Whether the recommendation is for a current generation instance.

                • SizeFlexEligible (boolean) --

                  Whether the recommended reservation is size flexible.

            • RecommendedNumberOfInstancesToPurchase (string) --

              The number of instances that AWS recommends that you purchase.

            • RecommendedNormalizedUnitsToPurchase (string) --

              The number of normalized units that AWS recommends that you purchase.

            • MinimumNumberOfInstancesUsedPerHour (string) --

              The minimum number of instances that you used in an hour during the historical period. AWS uses this to calculate your recommended reservation purchases.

            • MinimumNormalizedUnitsUsedPerHour (string) --

              The minimum number of hours that you used in an hour during the historical period. AWS uses this to calculate your recommended reservation purchases.

            • MaximumNumberOfInstancesUsedPerHour (string) --

              The maximum number of instances that you used in an hour during the historical period. AWS uses this to calculate your recommended reservation purchases.

            • MaximumNormalizedUnitsUsedPerHour (string) --

              The maximum number of normalized units that you used in an hour during the historical period. AWS uses this to calculate your recommended reservation purchases.

            • AverageNumberOfInstancesUsedPerHour (string) --

              The average number of instances that you used in an hour during the historical period. AWS uses this to calculate your recommended reservation purchases.

            • AverageNormalizedUnitsUsedPerHour (string) --

              The average number of normalized units that you used in an hour during the historical period. AWS uses this to calculate your recommended reservation purchases.

            • AverageUtilization (string) --

              The average utilization of your instances. AWS uses this to calculate your recommended reservation purchases.

            • EstimatedBreakEvenInMonths (string) --

              How long AWS estimates that it takes for this instance to start saving you money, in months.

            • CurrencyCode (string) --

              The currency code that AWS used to calculate the costs for this instance.

            • EstimatedMonthlySavingsAmount (string) --

              How much AWS estimates that this specific recommendation could save you in a month.

            • EstimatedMonthlySavingsPercentage (string) --

              How much AWS estimates that this specific recommendation could save you in a month, as a percentage of your overall costs.

            • EstimatedMonthlyOnDemandCost (string) --

              How much AWS estimates that you spend on On-Demand Instances in a month.

            • EstimatedReservationCostForLookbackPeriod (string) --

              How much AWS estimates that you would have spent for all usage during the specified historical period if you had had a reservation.

            • UpfrontCost (string) --

              How much purchasing this instance costs you upfront.

            • RecurringStandardMonthlyCost (string) --

              How much purchasing this instance costs you on a monthly basis.

        • RecommendationSummary (dict) --

          A summary about the recommended purchase.

          • TotalEstimatedMonthlySavingsAmount (string) --

            The total amount that AWS estimates that this recommendation could save you in a month.

          • TotalEstimatedMonthlySavingsPercentage (string) --

            The total amount that AWS estimates that this recommendation could save you in a month, as a percentage of your costs.

          • CurrencyCode (string) --

            The currency code used for this recommendation.

    • NextPageToken (string) --

      The pagination token for the next set of retrievable results.