AWS Cost Explorer Service

2020/04/20 - AWS Cost Explorer Service - 16 updated api methods

Changes  Cost Categories API is now General Available with new dimensions and operations support. You can map costs by account name, service, and charge type dimensions as well as use contains, starts with, and ends with operations. Cost Categories can also be used in RI and SP coverage reports.

CreateCostCategoryDefinition (updated) Link ¶
Changes (request)
{'Rules': {'Rule': {'Dimensions': {'Key': {'LINKED_ACCOUNT_NAME',
                                           'SERVICE_CODE'},
                                   'MatchOptions': ['EQUALS | STARTS_WITH | '
                                                    'ENDS_WITH | CONTAINS | '
                                                    'CASE_SENSITIVE | '
                                                    'CASE_INSENSITIVE']},
                    'Tags': {'MatchOptions': ['EQUALS | STARTS_WITH | '
                                              'ENDS_WITH | CONTAINS | '
                                              'CASE_SENSITIVE | '
                                              'CASE_INSENSITIVE']}}}}

Creates a new Cost Category with the requested name and rules.

See also: AWS API Documentation

Request Syntax

client.create_cost_category_definition(
    Name='string',
    RuleVersion='CostCategoryExpression.v1',
    Rules=[
        {
            'Value': 'string',
            'Rule': {
                'Or': [
                    {'... recursive ...'},
                ],
                'And': [
                    {'... recursive ...'},
                ],
                'Not': {'... recursive ...'},
                'Dimensions': {
                    'Key': 'AZ'|'INSTANCE_TYPE'|'LINKED_ACCOUNT'|'LINKED_ACCOUNT_NAME'|'OPERATION'|'PURCHASE_TYPE'|'REGION'|'SERVICE'|'SERVICE_CODE'|'USAGE_TYPE'|'USAGE_TYPE_GROUP'|'RECORD_TYPE'|'OPERATING_SYSTEM'|'TENANCY'|'SCOPE'|'PLATFORM'|'SUBSCRIPTION_ID'|'LEGAL_ENTITY_NAME'|'DEPLOYMENT_OPTION'|'DATABASE_ENGINE'|'CACHE_ENGINE'|'INSTANCE_TYPE_FAMILY'|'BILLING_ENTITY'|'RESERVATION_ID'|'RESOURCE_ID'|'RIGHTSIZING_TYPE'|'SAVINGS_PLANS_TYPE'|'SAVINGS_PLAN_ARN'|'PAYMENT_OPTION',
                    'Values': [
                        'string',
                    ],
                    'MatchOptions': [
                        'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
                    ]
                },
                'Tags': {
                    'Key': 'string',
                    'Values': [
                        'string',
                    ],
                    'MatchOptions': [
                        'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
                    ]
                },
                'CostCategories': {
                    'Key': 'string',
                    'Values': [
                        'string',
                    ]
                }
            }
        },
    ]
)
type Name

string

param Name

[REQUIRED]

The unique name of the Cost Category.

type RuleVersion

string

param RuleVersion

[REQUIRED]

The rule schema version in this particular Cost Category.

type Rules

list

param Rules

[REQUIRED]

The Cost Category rules used to categorize costs. For more information, see CostCategoryRule.

  • (dict) --

    Rules are processed in order. If there are multiple rules that match the line item, then the first rule to match is used to determine that Cost Category value.

    • Value (string) -- [REQUIRED]

      The value a line item will be categorized as, if it matches the rule.

    • Rule (dict) -- [REQUIRED]

      An Expression object used to categorize costs. This supports dimensions, Tags, and nested expressions. Currently the only dimensions supported are LINKED_ACCOUNT , SERVICE_CODE , RECORD_TYPE , and LINKED_ACCOUNT_NAME .

      Root level OR is not supported. We recommend that you create a separate rule instead.

      RECORD_TYPE is a dimension used for Cost Explorer APIs, and is also supported for Cost Category expressions. This dimension uses different terms, depending on whether you're using the console or API/JSON editor. For a detailed comparison, see Term Comparisons in the AWS Billing and Cost Management User Guide .

      • Or (list) --

        Return results that match either Dimension object.

        • (dict) --

          Use Expression to filter by cost or by usage. There are two patterns:

          • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

          • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

          Note

          Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

          { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

          Note

          For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

      • And (list) --

        Return results that match both Dimension objects.

        • (dict) --

          Use Expression to filter by cost or by usage. There are two patterns:

          • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

          • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

          Note

          Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

          { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

          Note

          For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

      • Not (dict) --

        Return results that don't match a Dimension object.

      • Dimensions (dict) --

        The specific Dimension to use for Expression .

        • Key (string) --

          The names of the metadata types that you can use to filter and group your results. For example, AZ returns a list of Availability Zones.

        • Values (list) --

          The metadata values that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

          • (string) --

        • MatchOptions (list) --

          The match options that you can use to filter your results. MatchOptions is only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

          • (string) --

      • Tags (dict) --

        The specific Tag to use for Expression .

        • Key (string) --

          The key for the tag.

        • Values (list) --

          The specific value of the tag.

          • (string) --

        • MatchOptions (list) --

          The match options that you can use to filter your results. MatchOptions is only applicable for only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

          • (string) --

      • CostCategories (dict) --

        The filter based on CostCategory values.

        • Key (string) --

          The unique name of the Cost Category.

        • Values (list) --

          The specific value of the Cost Category.

          • (string) --

rtype

dict

returns

Response Syntax

{
    'CostCategoryArn': 'string',
    'EffectiveStart': 'string'
}

Response Structure

  • (dict) --

    • CostCategoryArn (string) --

      The unique identifier for your newly created Cost Category.

    • EffectiveStart (string) --

      The Cost Category's effective start date.

DescribeCostCategoryDefinition (updated) Link ¶
Changes (response)
{'CostCategory': {'Rules': {'Rule': {'Dimensions': {'Key': {'LINKED_ACCOUNT_NAME',
                                                            'SERVICE_CODE'},
                                                    'MatchOptions': ['EQUALS | '
                                                                     'STARTS_WITH '
                                                                     '| '
                                                                     'ENDS_WITH '
                                                                     '| '
                                                                     'CONTAINS '
                                                                     '| '
                                                                     'CASE_SENSITIVE '
                                                                     '| '
                                                                     'CASE_INSENSITIVE']},
                                     'Tags': {'MatchOptions': ['EQUALS | '
                                                               'STARTS_WITH | '
                                                               'ENDS_WITH | '
                                                               'CONTAINS | '
                                                               'CASE_SENSITIVE '
                                                               '| '
                                                               'CASE_INSENSITIVE']}}}}}

Returns the name, ARN, rules, definition, and effective dates of a Cost Category that's defined in the account.

You have the option to use EffectiveOn to return a Cost Category that is active on a specific date. If there is no EffectiveOn specified, you’ll see a Cost Category that is effective on the current date. If Cost Category is still effective, EffectiveEnd is omitted in the response.

See also: AWS API Documentation

Request Syntax

client.describe_cost_category_definition(
    CostCategoryArn='string',
    EffectiveOn='string'
)
type CostCategoryArn

string

param CostCategoryArn

[REQUIRED]

The unique identifier for your Cost Category.

type EffectiveOn

string

param EffectiveOn

The date when the Cost Category was effective.

rtype

dict

returns

Response Syntax

{
    'CostCategory': {
        'CostCategoryArn': 'string',
        'EffectiveStart': 'string',
        'EffectiveEnd': 'string',
        'Name': 'string',
        'RuleVersion': 'CostCategoryExpression.v1',
        'Rules': [
            {
                'Value': 'string',
                'Rule': {
                    'Or': [
                        {'... recursive ...'},
                    ],
                    'And': [
                        {'... recursive ...'},
                    ],
                    'Not': {'... recursive ...'},
                    'Dimensions': {
                        'Key': 'AZ'|'INSTANCE_TYPE'|'LINKED_ACCOUNT'|'LINKED_ACCOUNT_NAME'|'OPERATION'|'PURCHASE_TYPE'|'REGION'|'SERVICE'|'SERVICE_CODE'|'USAGE_TYPE'|'USAGE_TYPE_GROUP'|'RECORD_TYPE'|'OPERATING_SYSTEM'|'TENANCY'|'SCOPE'|'PLATFORM'|'SUBSCRIPTION_ID'|'LEGAL_ENTITY_NAME'|'DEPLOYMENT_OPTION'|'DATABASE_ENGINE'|'CACHE_ENGINE'|'INSTANCE_TYPE_FAMILY'|'BILLING_ENTITY'|'RESERVATION_ID'|'RESOURCE_ID'|'RIGHTSIZING_TYPE'|'SAVINGS_PLANS_TYPE'|'SAVINGS_PLAN_ARN'|'PAYMENT_OPTION',
                        'Values': [
                            'string',
                        ],
                        'MatchOptions': [
                            'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
                        ]
                    },
                    'Tags': {
                        'Key': 'string',
                        'Values': [
                            'string',
                        ],
                        'MatchOptions': [
                            'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
                        ]
                    },
                    'CostCategories': {
                        'Key': 'string',
                        'Values': [
                            'string',
                        ]
                    }
                }
            },
        ]
    }
}

Response Structure

  • (dict) --

    • CostCategory (dict) --

      The structure of Cost Categories. This includes detailed metadata and the set of rules for the CostCategory object.

      • CostCategoryArn (string) --

        The unique identifier for your Cost Category.

      • EffectiveStart (string) --

        The Cost Category's effective start date.

      • EffectiveEnd (string) --

        The Cost Category's effective end date.

      • Name (string) --

        The unique name of the Cost Category.

      • RuleVersion (string) --

        The rule schema version in this particular Cost Category.

      • Rules (list) --

        Rules are processed in order. If there are multiple rules that match the line item, then the first rule to match is used to determine that Cost Category value.

        • (dict) --

          Rules are processed in order. If there are multiple rules that match the line item, then the first rule to match is used to determine that Cost Category value.

          • Value (string) --

            The value a line item will be categorized as, if it matches the rule.

          • Rule (dict) --

            An Expression object used to categorize costs. This supports dimensions, Tags, and nested expressions. Currently the only dimensions supported are LINKED_ACCOUNT , SERVICE_CODE , RECORD_TYPE , and LINKED_ACCOUNT_NAME .

            Root level OR is not supported. We recommend that you create a separate rule instead.

            RECORD_TYPE is a dimension used for Cost Explorer APIs, and is also supported for Cost Category expressions. This dimension uses different terms, depending on whether you're using the console or API/JSON editor. For a detailed comparison, see Term Comparisons in the AWS Billing and Cost Management User Guide .

            • Or (list) --

              Return results that match either Dimension object.

              • (dict) --

                Use Expression to filter by cost or by usage. There are two patterns:

                • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

                • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

                Note

                Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

                { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

                Note

                For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

            • And (list) --

              Return results that match both Dimension objects.

              • (dict) --

                Use Expression to filter by cost or by usage. There are two patterns:

                • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

                • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

                Note

                Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

                { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

                Note

                For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

            • Not (dict) --

              Return results that don't match a Dimension object.

            • Dimensions (dict) --

              The specific Dimension to use for Expression .

              • Key (string) --

                The names of the metadata types that you can use to filter and group your results. For example, AZ returns a list of Availability Zones.

              • Values (list) --

                The metadata values that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

                • (string) --

              • MatchOptions (list) --

                The match options that you can use to filter your results. MatchOptions is only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

                • (string) --

            • Tags (dict) --

              The specific Tag to use for Expression .

              • Key (string) --

                The key for the tag.

              • Values (list) --

                The specific value of the tag.

                • (string) --

              • MatchOptions (list) --

                The match options that you can use to filter your results. MatchOptions is only applicable for only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

                • (string) --

            • CostCategories (dict) --

              The filter based on CostCategory values.

              • Key (string) --

                The unique name of the Cost Category.

              • Values (list) --

                The specific value of the Cost Category.

                • (string) --

GetCostAndUsage (updated) Link ¶
Changes (request)
{'Filter': {'Dimensions': {'Key': {'LINKED_ACCOUNT_NAME', 'SERVICE_CODE'},
                           'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH '
                                            '| CONTAINS | CASE_SENSITIVE | '
                                            'CASE_INSENSITIVE']},
            'Tags': {'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH | '
                                      'CONTAINS | CASE_SENSITIVE | '
                                      'CASE_INSENSITIVE']}}}

Retrieves cost and usage metrics for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity , that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ , in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Master accounts in an organization in AWS Organizations have access to all member accounts.

See also: AWS API Documentation

Request Syntax

client.get_cost_and_usage(
    TimePeriod={
        'Start': 'string',
        'End': 'string'
    },
    Granularity='DAILY'|'MONTHLY'|'HOURLY',
    Filter={
        'Or': [
            {'... recursive ...'},
        ],
        'And': [
            {'... recursive ...'},
        ],
        'Not': {'... recursive ...'},
        'Dimensions': {
            'Key': 'AZ'|'INSTANCE_TYPE'|'LINKED_ACCOUNT'|'LINKED_ACCOUNT_NAME'|'OPERATION'|'PURCHASE_TYPE'|'REGION'|'SERVICE'|'SERVICE_CODE'|'USAGE_TYPE'|'USAGE_TYPE_GROUP'|'RECORD_TYPE'|'OPERATING_SYSTEM'|'TENANCY'|'SCOPE'|'PLATFORM'|'SUBSCRIPTION_ID'|'LEGAL_ENTITY_NAME'|'DEPLOYMENT_OPTION'|'DATABASE_ENGINE'|'CACHE_ENGINE'|'INSTANCE_TYPE_FAMILY'|'BILLING_ENTITY'|'RESERVATION_ID'|'RESOURCE_ID'|'RIGHTSIZING_TYPE'|'SAVINGS_PLANS_TYPE'|'SAVINGS_PLAN_ARN'|'PAYMENT_OPTION',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'Tags': {
            'Key': 'string',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'CostCategories': {
            'Key': 'string',
            'Values': [
                'string',
            ]
        }
    },
    Metrics=[
        'string',
    ],
    GroupBy=[
        {
            'Type': 'DIMENSION'|'TAG'|'COST_CATEGORY',
            'Key': 'string'
        },
    ],
    NextPageToken='string'
)
type TimePeriod

dict

param TimePeriod

[REQUIRED]

Sets the start and end dates for retrieving AWS costs. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01 , then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01 .

  • Start (string) -- [REQUIRED]

    The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

  • End (string) -- [REQUIRED]

    The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

type Granularity

string

param Granularity

Sets the AWS cost granularity to MONTHLY or DAILY , or HOURLY . If Granularity isn't set, the response object doesn't include the Granularity , either MONTHLY or DAILY , or HOURLY .

type Filter

dict

param Filter

Filters AWS costs by different dimensions. For example, you can specify SERVICE and LINKED_ACCOUNT and get the costs that are associated with that account's usage of that service. You can nest Expression objects to define any combination of dimension filters. For more information, see Expression.

  • Or (list) --

    Return results that match either Dimension object.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • And (list) --

    Return results that match both Dimension objects.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • Not (dict) --

    Return results that don't match a Dimension object.

  • Dimensions (dict) --

    The specific Dimension to use for Expression .

    • Key (string) --

      The names of the metadata types that you can use to filter and group your results. For example, AZ returns a list of Availability Zones.

    • Values (list) --

      The metadata values that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • Tags (dict) --

    The specific Tag to use for Expression .

    • Key (string) --

      The key for the tag.

    • Values (list) --

      The specific value of the tag.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • CostCategories (dict) --

    The filter based on CostCategory values.

    • Key (string) --

      The unique name of the Cost Category.

    • Values (list) --

      The specific value of the Cost Category.

      • (string) --

type Metrics

list

param Metrics

Which metrics are returned in the query. For more information about blended and unblended rates, see Why does the "blended" annotation appear on some line items in my bill?.

Valid values are AmortizedCost , BlendedCost , NetAmortizedCost , NetUnblendedCost , NormalizedUsageAmount , UnblendedCost , and UsageQuantity .

Note

If you return the UsageQuantity metric, the service aggregates all usage numbers without taking into account the units. For example, if you aggregate usageQuantity across all of Amazon EC2, the results aren't meaningful because Amazon EC2 compute hours and data transfer are measured in different units (for example, hours vs. GB). To get more meaningful UsageQuantity metrics, filter by UsageType or UsageTypeGroups .

Metrics is required for GetCostAndUsage requests.

  • (string) --

type GroupBy

list

param GroupBy

You can group AWS costs using up to two different groups, either dimensions, tag keys, or both.

When you group by tag key, you get all tag values, including empty strings.

Valid values are AZ , INSTANCE_TYPE , LEGAL_ENTITY_NAME , LINKED_ACCOUNT , OPERATION , PLATFORM , PURCHASE_TYPE , SERVICE , TAGS , TENANCY , RECORD_TYPE , and USAGE_TYPE .

  • (dict) --

    Represents a group when you specify a group by criteria or in the response to a query with a specific grouping.

    • Type (string) --

      The string that represents the type of group.

    • Key (string) --

      The string that represents a key for a specified group.

type NextPageToken

string

param NextPageToken

The token to retrieve the next set of results. AWS provides the token when the response from a previous call has more results than the maximum page size.

rtype

dict

returns

Response Syntax

{
    'NextPageToken': 'string',
    'GroupDefinitions': [
        {
            'Type': 'DIMENSION'|'TAG'|'COST_CATEGORY',
            'Key': 'string'
        },
    ],
    'ResultsByTime': [
        {
            'TimePeriod': {
                'Start': 'string',
                'End': 'string'
            },
            'Total': {
                'string': {
                    'Amount': 'string',
                    'Unit': 'string'
                }
            },
            'Groups': [
                {
                    'Keys': [
                        'string',
                    ],
                    'Metrics': {
                        'string': {
                            'Amount': 'string',
                            'Unit': 'string'
                        }
                    }
                },
            ],
            'Estimated': True|False
        },
    ]
}

Response Structure

  • (dict) --

    • NextPageToken (string) --

      The token for the next set of retrievable results. AWS provides the token when the response from a previous call has more results than the maximum page size.

    • GroupDefinitions (list) --

      The groups that are specified by the Filter or GroupBy parameters in the request.

      • (dict) --

        Represents a group when you specify a group by criteria or in the response to a query with a specific grouping.

        • Type (string) --

          The string that represents the type of group.

        • Key (string) --

          The string that represents a key for a specified group.

    • ResultsByTime (list) --

      The time period that is covered by the results in the response.

      • (dict) --

        The result that is associated with a time period.

        • TimePeriod (dict) --

          The time period that the result covers.

          • Start (string) --

            The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

          • End (string) --

            The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

        • Total (dict) --

          The total amount of cost or usage accrued during the time period.

          • (string) --

            • (dict) --

              The aggregated value for a metric.

              • Amount (string) --

                The actual number that represents the metric.

              • Unit (string) --

                The unit that the metric is given in.

        • Groups (list) --

          The groups that this time period includes.

          • (dict) --

            One level of grouped data in the results.

            • Keys (list) --

              The keys that are included in this group.

              • (string) --

            • Metrics (dict) --

              The metrics that are included in this group.

              • (string) --

                • (dict) --

                  The aggregated value for a metric.

                  • Amount (string) --

                    The actual number that represents the metric.

                  • Unit (string) --

                    The unit that the metric is given in.

        • Estimated (boolean) --

          Whether the result is estimated.

GetCostAndUsageWithResources (updated) Link ¶
Changes (request)
{'Filter': {'Dimensions': {'Key': {'LINKED_ACCOUNT_NAME', 'SERVICE_CODE'},
                           'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH '
                                            '| CONTAINS | CASE_SENSITIVE | '
                                            'CASE_INSENSITIVE']},
            'Tags': {'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH | '
                                      'CONTAINS | CASE_SENSITIVE | '
                                      'CASE_INSENSITIVE']}}}

Retrieves cost and usage metrics with resources for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity , that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ , in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Master accounts in an organization in AWS Organizations have access to all member accounts. This API is currently available for the Amazon Elastic Compute Cloud – Compute service only.

Note

This is an opt-in only feature. You can enable this feature from the Cost Explorer Settings page. For information on how to access the Settings page, see Controlling Access for Cost Explorer in the AWS Billing and Cost Management User Guide .

See also: AWS API Documentation

Request Syntax

client.get_cost_and_usage_with_resources(
    TimePeriod={
        'Start': 'string',
        'End': 'string'
    },
    Granularity='DAILY'|'MONTHLY'|'HOURLY',
    Filter={
        'Or': [
            {'... recursive ...'},
        ],
        'And': [
            {'... recursive ...'},
        ],
        'Not': {'... recursive ...'},
        'Dimensions': {
            'Key': 'AZ'|'INSTANCE_TYPE'|'LINKED_ACCOUNT'|'LINKED_ACCOUNT_NAME'|'OPERATION'|'PURCHASE_TYPE'|'REGION'|'SERVICE'|'SERVICE_CODE'|'USAGE_TYPE'|'USAGE_TYPE_GROUP'|'RECORD_TYPE'|'OPERATING_SYSTEM'|'TENANCY'|'SCOPE'|'PLATFORM'|'SUBSCRIPTION_ID'|'LEGAL_ENTITY_NAME'|'DEPLOYMENT_OPTION'|'DATABASE_ENGINE'|'CACHE_ENGINE'|'INSTANCE_TYPE_FAMILY'|'BILLING_ENTITY'|'RESERVATION_ID'|'RESOURCE_ID'|'RIGHTSIZING_TYPE'|'SAVINGS_PLANS_TYPE'|'SAVINGS_PLAN_ARN'|'PAYMENT_OPTION',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'Tags': {
            'Key': 'string',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'CostCategories': {
            'Key': 'string',
            'Values': [
                'string',
            ]
        }
    },
    Metrics=[
        'string',
    ],
    GroupBy=[
        {
            'Type': 'DIMENSION'|'TAG'|'COST_CATEGORY',
            'Key': 'string'
        },
    ],
    NextPageToken='string'
)
type TimePeriod

dict

param TimePeriod

[REQUIRED]

Sets the start and end dates for retrieving Amazon Web Services costs. The range must be within the last 14 days (the start date cannot be earlier than 14 days ago). The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01 , then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01 .

  • Start (string) -- [REQUIRED]

    The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

  • End (string) -- [REQUIRED]

    The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

type Granularity

string

param Granularity

Sets the AWS cost granularity to MONTHLY , DAILY , or HOURLY . If Granularity isn't set, the response object doesn't include the Granularity , MONTHLY , DAILY , or HOURLY .

type Filter

dict

param Filter

Filters Amazon Web Services costs by different dimensions. For example, you can specify SERVICE and LINKED_ACCOUNT and get the costs that are associated with that account's usage of that service. You can nest Expression objects to define any combination of dimension filters. For more information, see Expression.

The GetCostAndUsageWithResources operation requires that you either group by or filter by a ResourceId .

  • Or (list) --

    Return results that match either Dimension object.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • And (list) --

    Return results that match both Dimension objects.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • Not (dict) --

    Return results that don't match a Dimension object.

  • Dimensions (dict) --

    The specific Dimension to use for Expression .

    • Key (string) --

      The names of the metadata types that you can use to filter and group your results. For example, AZ returns a list of Availability Zones.

    • Values (list) --

      The metadata values that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • Tags (dict) --

    The specific Tag to use for Expression .

    • Key (string) --

      The key for the tag.

    • Values (list) --

      The specific value of the tag.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • CostCategories (dict) --

    The filter based on CostCategory values.

    • Key (string) --

      The unique name of the Cost Category.

    • Values (list) --

      The specific value of the Cost Category.

      • (string) --

type Metrics

list

param Metrics

Which metrics are returned in the query. For more information about blended and unblended rates, see Why does the "blended" annotation appear on some line items in my bill?.

Valid values are AmortizedCost , BlendedCost , NetAmortizedCost , NetUnblendedCost , NormalizedUsageAmount , UnblendedCost , and UsageQuantity .

Note

If you return the UsageQuantity metric, the service aggregates all usage numbers without taking the units into account. For example, if you aggregate usageQuantity across all of Amazon EC2, the results aren't meaningful because Amazon EC2 compute hours and data transfer are measured in different units (for example, hours vs. GB). To get more meaningful UsageQuantity metrics, filter by UsageType or UsageTypeGroups .

Metrics is required for GetCostAndUsageWithResources requests.

  • (string) --

type GroupBy

list

param GroupBy

You can group Amazon Web Services costs using up to two different groups: either dimensions, tag keys, or both.

  • (dict) --

    Represents a group when you specify a group by criteria or in the response to a query with a specific grouping.

    • Type (string) --

      The string that represents the type of group.

    • Key (string) --

      The string that represents a key for a specified group.

type NextPageToken

string

param NextPageToken

The token to retrieve the next set of results. AWS provides the token when the response from a previous call has more results than the maximum page size.

rtype

dict

returns

Response Syntax

{
    'NextPageToken': 'string',
    'GroupDefinitions': [
        {
            'Type': 'DIMENSION'|'TAG'|'COST_CATEGORY',
            'Key': 'string'
        },
    ],
    'ResultsByTime': [
        {
            'TimePeriod': {
                'Start': 'string',
                'End': 'string'
            },
            'Total': {
                'string': {
                    'Amount': 'string',
                    'Unit': 'string'
                }
            },
            'Groups': [
                {
                    'Keys': [
                        'string',
                    ],
                    'Metrics': {
                        'string': {
                            'Amount': 'string',
                            'Unit': 'string'
                        }
                    }
                },
            ],
            'Estimated': True|False
        },
    ]
}

Response Structure

  • (dict) --

    • NextPageToken (string) --

      The token for the next set of retrievable results. AWS provides the token when the response from a previous call has more results than the maximum page size.

    • GroupDefinitions (list) --

      The groups that are specified by the Filter or GroupBy parameters in the request.

      • (dict) --

        Represents a group when you specify a group by criteria or in the response to a query with a specific grouping.

        • Type (string) --

          The string that represents the type of group.

        • Key (string) --

          The string that represents a key for a specified group.

    • ResultsByTime (list) --

      The time period that is covered by the results in the response.

      • (dict) --

        The result that is associated with a time period.

        • TimePeriod (dict) --

          The time period that the result covers.

          • Start (string) --

            The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

          • End (string) --

            The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

        • Total (dict) --

          The total amount of cost or usage accrued during the time period.

          • (string) --

            • (dict) --

              The aggregated value for a metric.

              • Amount (string) --

                The actual number that represents the metric.

              • Unit (string) --

                The unit that the metric is given in.

        • Groups (list) --

          The groups that this time period includes.

          • (dict) --

            One level of grouped data in the results.

            • Keys (list) --

              The keys that are included in this group.

              • (string) --

            • Metrics (dict) --

              The metrics that are included in this group.

              • (string) --

                • (dict) --

                  The aggregated value for a metric.

                  • Amount (string) --

                    The actual number that represents the metric.

                  • Unit (string) --

                    The unit that the metric is given in.

        • Estimated (boolean) --

          Whether the result is estimated.

GetCostForecast (updated) Link ¶
Changes (request)
{'Filter': {'Dimensions': {'Key': {'LINKED_ACCOUNT_NAME', 'SERVICE_CODE'},
                           'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH '
                                            '| CONTAINS | CASE_SENSITIVE | '
                                            'CASE_INSENSITIVE']},
            'Tags': {'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH | '
                                      'CONTAINS | CASE_SENSITIVE | '
                                      'CASE_INSENSITIVE']}}}

Retrieves a forecast for how much Amazon Web Services predicts that you will spend over the forecast time period that you select, based on your past costs.

See also: AWS API Documentation

Request Syntax

client.get_cost_forecast(
    TimePeriod={
        'Start': 'string',
        'End': 'string'
    },
    Metric='BLENDED_COST'|'UNBLENDED_COST'|'AMORTIZED_COST'|'NET_UNBLENDED_COST'|'NET_AMORTIZED_COST'|'USAGE_QUANTITY'|'NORMALIZED_USAGE_AMOUNT',
    Granularity='DAILY'|'MONTHLY'|'HOURLY',
    Filter={
        'Or': [
            {'... recursive ...'},
        ],
        'And': [
            {'... recursive ...'},
        ],
        'Not': {'... recursive ...'},
        'Dimensions': {
            'Key': 'AZ'|'INSTANCE_TYPE'|'LINKED_ACCOUNT'|'LINKED_ACCOUNT_NAME'|'OPERATION'|'PURCHASE_TYPE'|'REGION'|'SERVICE'|'SERVICE_CODE'|'USAGE_TYPE'|'USAGE_TYPE_GROUP'|'RECORD_TYPE'|'OPERATING_SYSTEM'|'TENANCY'|'SCOPE'|'PLATFORM'|'SUBSCRIPTION_ID'|'LEGAL_ENTITY_NAME'|'DEPLOYMENT_OPTION'|'DATABASE_ENGINE'|'CACHE_ENGINE'|'INSTANCE_TYPE_FAMILY'|'BILLING_ENTITY'|'RESERVATION_ID'|'RESOURCE_ID'|'RIGHTSIZING_TYPE'|'SAVINGS_PLANS_TYPE'|'SAVINGS_PLAN_ARN'|'PAYMENT_OPTION',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'Tags': {
            'Key': 'string',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'CostCategories': {
            'Key': 'string',
            'Values': [
                'string',
            ]
        }
    },
    PredictionIntervalLevel=123
)
type TimePeriod

dict

param TimePeriod

[REQUIRED]

The period of time that you want the forecast to cover.

  • Start (string) -- [REQUIRED]

    The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

  • End (string) -- [REQUIRED]

    The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

type Metric

string

param Metric

[REQUIRED]

Which metric Cost Explorer uses to create your forecast. For more information about blended and unblended rates, see Why does the "blended" annotation appear on some line items in my bill?.

Valid values for a GetCostForecast call are the following:

  • AMORTIZED_COST

  • BLENDED_COST

  • NET_AMORTIZED_COST

  • NET_UNBLENDED_COST

  • UNBLENDED_COST

type Granularity

string

param Granularity

[REQUIRED]

How granular you want the forecast to be. You can get 3 months of DAILY forecasts or 12 months of MONTHLY forecasts.

The GetCostForecast operation supports only DAILY and MONTHLY granularities.

type Filter

dict

param Filter

The filters that you want to use to filter your forecast. Cost Explorer API supports all of the Cost Explorer filters.

  • Or (list) --

    Return results that match either Dimension object.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • And (list) --

    Return results that match both Dimension objects.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • Not (dict) --

    Return results that don't match a Dimension object.

  • Dimensions (dict) --

    The specific Dimension to use for Expression .

    • Key (string) --

      The names of the metadata types that you can use to filter and group your results. For example, AZ returns a list of Availability Zones.

    • Values (list) --

      The metadata values that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • Tags (dict) --

    The specific Tag to use for Expression .

    • Key (string) --

      The key for the tag.

    • Values (list) --

      The specific value of the tag.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • CostCategories (dict) --

    The filter based on CostCategory values.

    • Key (string) --

      The unique name of the Cost Category.

    • Values (list) --

      The specific value of the Cost Category.

      • (string) --

type PredictionIntervalLevel

integer

param PredictionIntervalLevel

Cost Explorer always returns the mean forecast as a single point. You can request a prediction interval around the mean by specifying a confidence level. The higher the confidence level, the more confident Cost Explorer is about the actual value falling in the prediction interval. Higher confidence levels result in wider prediction intervals.

rtype

dict

returns

Response Syntax

{
    'Total': {
        'Amount': 'string',
        'Unit': 'string'
    },
    'ForecastResultsByTime': [
        {
            'TimePeriod': {
                'Start': 'string',
                'End': 'string'
            },
            'MeanValue': 'string',
            'PredictionIntervalLowerBound': 'string',
            'PredictionIntervalUpperBound': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • Total (dict) --

      How much you are forecasted to spend over the forecast period, in USD .

      • Amount (string) --

        The actual number that represents the metric.

      • Unit (string) --

        The unit that the metric is given in.

    • ForecastResultsByTime (list) --

      The forecasts for your query, in order. For DAILY forecasts, this is a list of days. For MONTHLY forecasts, this is a list of months.

      • (dict) --

        The forecast created for your query.

        • TimePeriod (dict) --

          The period of time that the forecast covers.

          • Start (string) --

            The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

          • End (string) --

            The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

        • MeanValue (string) --

          The mean value of the forecast.

        • PredictionIntervalLowerBound (string) --

          The lower limit for the prediction interval.

        • PredictionIntervalUpperBound (string) --

          The upper limit for the prediction interval.

GetDimensionValues (updated) Link ¶
Changes (request)
{'Dimension': {'LINKED_ACCOUNT_NAME', 'SERVICE_CODE'}}

Retrieves all available filter values for a specified filter over a period of time. You can search the dimension values for an arbitrary string.

See also: AWS API Documentation

Request Syntax

client.get_dimension_values(
    SearchString='string',
    TimePeriod={
        'Start': 'string',
        'End': 'string'
    },
    Dimension='AZ'|'INSTANCE_TYPE'|'LINKED_ACCOUNT'|'LINKED_ACCOUNT_NAME'|'OPERATION'|'PURCHASE_TYPE'|'REGION'|'SERVICE'|'SERVICE_CODE'|'USAGE_TYPE'|'USAGE_TYPE_GROUP'|'RECORD_TYPE'|'OPERATING_SYSTEM'|'TENANCY'|'SCOPE'|'PLATFORM'|'SUBSCRIPTION_ID'|'LEGAL_ENTITY_NAME'|'DEPLOYMENT_OPTION'|'DATABASE_ENGINE'|'CACHE_ENGINE'|'INSTANCE_TYPE_FAMILY'|'BILLING_ENTITY'|'RESERVATION_ID'|'RESOURCE_ID'|'RIGHTSIZING_TYPE'|'SAVINGS_PLANS_TYPE'|'SAVINGS_PLAN_ARN'|'PAYMENT_OPTION',
    Context='COST_AND_USAGE'|'RESERVATIONS'|'SAVINGS_PLANS',
    NextPageToken='string'
)
type SearchString

string

param SearchString

The value that you want to search the filter values for.

type TimePeriod

dict

param TimePeriod

[REQUIRED]

The start and end dates for retrieving the dimension values. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01 , then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01 .

  • Start (string) -- [REQUIRED]

    The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

  • End (string) -- [REQUIRED]

    The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

type Dimension

string

param Dimension

[REQUIRED]

The name of the dimension. Each Dimension is available for a different Context . For more information, see Context .

type Context

string

param Context

The context for the call to GetDimensionValues . This can be RESERVATIONS or COST_AND_USAGE . The default value is COST_AND_USAGE . If the context is set to RESERVATIONS , the resulting dimension values can be used in the GetReservationUtilization operation. If the context is set to COST_AND_USAGE , the resulting dimension values can be used in the GetCostAndUsage operation.

If you set the context to COST_AND_USAGE , you can use the following dimensions for searching:

  • AZ - The Availability Zone. An example is us-east-1a .

  • DATABASE_ENGINE - The Amazon Relational Database Service database. Examples are Aurora or MySQL.

  • INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge .

  • LEGAL_ENTITY_NAME - The name of the organization that sells you AWS services, such as Amazon Web Services.

  • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the AWS ID of the member account.

  • OPERATING_SYSTEM - The operating system. Examples are Windows or Linux.

  • OPERATION - The action performed. Examples include RunInstance and CreateBucket .

  • PLATFORM - The Amazon EC2 operating system. Examples are Windows or Linux.

  • PURCHASE_TYPE - The reservation type of the purchase to which this usage is related. Examples include On-Demand Instances and Standard Reserved Instances.

  • SERVICE - The AWS service such as Amazon DynamoDB.

  • USAGE_TYPE - The type of usage. An example is DataTransfer-In-Bytes. The response for the GetDimensionValues operation includes a unit attribute. Examples include GB and Hrs.

  • USAGE_TYPE_GROUP - The grouping of common usage types. An example is Amazon EC2: CloudWatch – Alarms. The response for this operation includes a unit attribute.

  • RECORD_TYPE - The different types of charges such as RI fees, usage costs, tax refunds, and credits.

  • RESOURCE_ID - The unique identifier of the resource. ResourceId is an opt-in feature only available for last 14 days for EC2-Compute Service.

If you set the context to RESERVATIONS , you can use the following dimensions for searching:

  • AZ - The Availability Zone. An example is us-east-1a .

  • CACHE_ENGINE - The Amazon ElastiCache operating system. Examples are Windows or Linux.

  • DEPLOYMENT_OPTION - The scope of Amazon Relational Database Service deployments. Valid values are SingleAZ and MultiAZ .

  • INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge .

  • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the AWS ID of the member account.

  • PLATFORM - The Amazon EC2 operating system. Examples are Windows or Linux.

  • REGION - The AWS Region.

  • SCOPE (Utilization only) - The scope of a Reserved Instance (RI). Values are regional or a single Availability Zone.

  • TAG (Coverage only) - The tags that are associated with a Reserved Instance (RI).

  • TENANCY - The tenancy of a resource. Examples are shared or dedicated.

If you set the context to SAVINGS_PLANS , you can use the following dimensions for searching:

  • SAVINGS_PLANS_TYPE - Type of Savings Plans (EC2 Instance or Compute)

  • PAYMENT_OPTION - Payment option for the given Savings Plans (for example, All Upfront)

  • REGION - The AWS Region.

  • INSTANCE_TYPE_FAMILY - The family of instances (For example, m5 )

  • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the AWS ID of the member account.

  • SAVINGS_PLAN_ARN - The unique identifier for your Savings Plan

type NextPageToken

string

param NextPageToken

The token to retrieve the next set of results. AWS provides the token when the response from a previous call has more results than the maximum page size.

rtype

dict

returns

Response Syntax

{
    'DimensionValues': [
        {
            'Value': 'string',
            'Attributes': {
                'string': 'string'
            }
        },
    ],
    'ReturnSize': 123,
    'TotalSize': 123,
    'NextPageToken': 'string'
}

Response Structure

  • (dict) --

    • DimensionValues (list) --

      The filters that you used to filter your request. Some dimensions are available only for a specific context.

      If you set the context to COST_AND_USAGE , you can use the following dimensions for searching:

      • AZ - The Availability Zone. An example is us-east-1a .

      • DATABASE_ENGINE - The Amazon Relational Database Service database. Examples are Aurora or MySQL.

      • INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge .

      • LEGAL_ENTITY_NAME - The name of the organization that sells you AWS services, such as Amazon Web Services.

      • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the AWS ID of the member account.

      • OPERATING_SYSTEM - The operating system. Examples are Windows or Linux.

      • OPERATION - The action performed. Examples include RunInstance and CreateBucket .

      • PLATFORM - The Amazon EC2 operating system. Examples are Windows or Linux.

      • PURCHASE_TYPE - The reservation type of the purchase to which this usage is related. Examples include On-Demand Instances and Standard Reserved Instances.

      • SERVICE - The AWS service such as Amazon DynamoDB.

      • USAGE_TYPE - The type of usage. An example is DataTransfer-In-Bytes. The response for the GetDimensionValues operation includes a unit attribute. Examples include GB and Hrs.

      • USAGE_TYPE_GROUP - The grouping of common usage types. An example is Amazon EC2: CloudWatch – Alarms. The response for this operation includes a unit attribute.

      • RECORD_TYPE - The different types of charges such as RI fees, usage costs, tax refunds, and credits.

      • RESOURCE_ID - The unique identifier of the resource. ResourceId is an opt-in feature only available for last 14 days for EC2-Compute Service.

      If you set the context to RESERVATIONS , you can use the following dimensions for searching:

      • AZ - The Availability Zone. An example is us-east-1a .

      • CACHE_ENGINE - The Amazon ElastiCache operating system. Examples are Windows or Linux.

      • DEPLOYMENT_OPTION - The scope of Amazon Relational Database Service deployments. Valid values are SingleAZ and MultiAZ .

      • INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge .

      • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the AWS ID of the member account.

      • PLATFORM - The Amazon EC2 operating system. Examples are Windows or Linux.

      • REGION - The AWS Region.

      • SCOPE (Utilization only) - The scope of a Reserved Instance (RI). Values are regional or a single Availability Zone.

      • TAG (Coverage only) - The tags that are associated with a Reserved Instance (RI).

      • TENANCY - The tenancy of a resource. Examples are shared or dedicated.

      If you set the context to SAVINGS_PLANS , you can use the following dimensions for searching:

      • SAVINGS_PLANS_TYPE - Type of Savings Plans (EC2 Instance or Compute)

      • PAYMENT_OPTION - Payment option for the given Savings Plans (for example, All Upfront)

      • REGION - The AWS Region.

      • INSTANCE_TYPE_FAMILY - The family of instances (For example, m5 )

      • LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The value field contains the AWS ID of the member account.

      • SAVINGS_PLAN_ARN - The unique identifier for your Savings Plan

      • (dict) --

        The metadata of a specific type that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

        • Value (string) --

          The value of a dimension with a specific attribute.

        • Attributes (dict) --

          The attribute that applies to a specific Dimension .

          • (string) --

            • (string) --

    • ReturnSize (integer) --

      The number of results that AWS returned at one time.

    • TotalSize (integer) --

      The total number of search results.

    • NextPageToken (string) --

      The token for the next set of retrievable results. AWS provides the token when the response from a previous call has more results than the maximum page size.

GetReservationCoverage (updated) Link ¶
Changes (request)
{'Filter': {'Dimensions': {'Key': {'LINKED_ACCOUNT_NAME', 'SERVICE_CODE'},
                           'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH '
                                            '| CONTAINS | CASE_SENSITIVE | '
                                            'CASE_INSENSITIVE']},
            'Tags': {'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH | '
                                      'CONTAINS | CASE_SENSITIVE | '
                                      'CASE_INSENSITIVE']}}}

Retrieves the reservation coverage for your account. This enables you to see how much of your Amazon Elastic Compute Cloud, Amazon ElastiCache, Amazon Relational Database Service, or Amazon Redshift usage is covered by a reservation. An organization's master account can see the coverage of the associated member accounts. This supports dimensions, Cost Categories, and nested expressions. For any time period, you can filter data about reservation usage by the following dimensions:

  • AZ

  • CACHE_ENGINE

  • DATABASE_ENGINE

  • DEPLOYMENT_OPTION

  • INSTANCE_TYPE

  • LINKED_ACCOUNT

  • OPERATING_SYSTEM

  • PLATFORM

  • REGION

  • SERVICE

  • TAG

  • TENANCY

To determine valid values for a dimension, use the GetDimensionValues operation.

See also: AWS API Documentation

Request Syntax

client.get_reservation_coverage(
    TimePeriod={
        'Start': 'string',
        'End': 'string'
    },
    GroupBy=[
        {
            'Type': 'DIMENSION'|'TAG'|'COST_CATEGORY',
            'Key': 'string'
        },
    ],
    Granularity='DAILY'|'MONTHLY'|'HOURLY',
    Filter={
        'Or': [
            {'... recursive ...'},
        ],
        'And': [
            {'... recursive ...'},
        ],
        'Not': {'... recursive ...'},
        'Dimensions': {
            'Key': 'AZ'|'INSTANCE_TYPE'|'LINKED_ACCOUNT'|'LINKED_ACCOUNT_NAME'|'OPERATION'|'PURCHASE_TYPE'|'REGION'|'SERVICE'|'SERVICE_CODE'|'USAGE_TYPE'|'USAGE_TYPE_GROUP'|'RECORD_TYPE'|'OPERATING_SYSTEM'|'TENANCY'|'SCOPE'|'PLATFORM'|'SUBSCRIPTION_ID'|'LEGAL_ENTITY_NAME'|'DEPLOYMENT_OPTION'|'DATABASE_ENGINE'|'CACHE_ENGINE'|'INSTANCE_TYPE_FAMILY'|'BILLING_ENTITY'|'RESERVATION_ID'|'RESOURCE_ID'|'RIGHTSIZING_TYPE'|'SAVINGS_PLANS_TYPE'|'SAVINGS_PLAN_ARN'|'PAYMENT_OPTION',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'Tags': {
            'Key': 'string',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'CostCategories': {
            'Key': 'string',
            'Values': [
                'string',
            ]
        }
    },
    Metrics=[
        'string',
    ],
    NextPageToken='string'
)
type TimePeriod

dict

param TimePeriod

[REQUIRED]

The start and end dates of the period that you want to retrieve data about reservation coverage for. You can retrieve data for a maximum of 13 months: the last 12 months and the current month. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01 , then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01 .

  • Start (string) -- [REQUIRED]

    The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

  • End (string) -- [REQUIRED]

    The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

type GroupBy

list

param GroupBy

You can group the data by the following attributes:

  • AZ

  • CACHE_ENGINE

  • DATABASE_ENGINE

  • DEPLOYMENT_OPTION

  • INSTANCE_TYPE

  • LINKED_ACCOUNT

  • OPERATING_SYSTEM

  • PLATFORM

  • REGION

  • TENANCY

  • (dict) --

    Represents a group when you specify a group by criteria or in the response to a query with a specific grouping.

    • Type (string) --

      The string that represents the type of group.

    • Key (string) --

      The string that represents a key for a specified group.

type Granularity

string

param Granularity

The granularity of the AWS cost data for the reservation. Valid values are MONTHLY and DAILY .

If GroupBy is set, Granularity can't be set. If Granularity isn't set, the response object doesn't include Granularity , either MONTHLY or DAILY .

The GetReservationCoverage operation supports only DAILY and MONTHLY granularities.

type Filter

dict

param Filter

Filters utilization data by dimensions. You can filter by the following dimensions:

  • AZ

  • CACHE_ENGINE

  • DATABASE_ENGINE

  • DEPLOYMENT_OPTION

  • INSTANCE_TYPE

  • LINKED_ACCOUNT

  • OPERATING_SYSTEM

  • PLATFORM

  • REGION

  • SERVICE

  • TAG

  • TENANCY

GetReservationCoverage uses the same Expression object as the other operations, but only AND is supported among each dimension. You can nest only one level deep. If there are multiple values for a dimension, they are OR'd together.

If you don't provide a SERVICE filter, Cost Explorer defaults to EC2.

Cost category is also supported.

  • Or (list) --

    Return results that match either Dimension object.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • And (list) --

    Return results that match both Dimension objects.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • Not (dict) --

    Return results that don't match a Dimension object.

  • Dimensions (dict) --

    The specific Dimension to use for Expression .

    • Key (string) --

      The names of the metadata types that you can use to filter and group your results. For example, AZ returns a list of Availability Zones.

    • Values (list) --

      The metadata values that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • Tags (dict) --

    The specific Tag to use for Expression .

    • Key (string) --

      The key for the tag.

    • Values (list) --

      The specific value of the tag.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • CostCategories (dict) --

    The filter based on CostCategory values.

    • Key (string) --

      The unique name of the Cost Category.

    • Values (list) --

      The specific value of the Cost Category.

      • (string) --

type Metrics

list

param Metrics

The measurement that you want your reservation coverage reported in.

Valid values are Hour , Unit , and Cost . You can use multiple values in a request.

  • (string) --

type NextPageToken

string

param NextPageToken

The token to retrieve the next set of results. AWS provides the token when the response from a previous call has more results than the maximum page size.

rtype

dict

returns

Response Syntax

{
    'CoveragesByTime': [
        {
            'TimePeriod': {
                'Start': 'string',
                'End': 'string'
            },
            'Groups': [
                {
                    'Attributes': {
                        'string': 'string'
                    },
                    'Coverage': {
                        'CoverageHours': {
                            'OnDemandHours': 'string',
                            'ReservedHours': 'string',
                            'TotalRunningHours': 'string',
                            'CoverageHoursPercentage': 'string'
                        },
                        'CoverageNormalizedUnits': {
                            'OnDemandNormalizedUnits': 'string',
                            'ReservedNormalizedUnits': 'string',
                            'TotalRunningNormalizedUnits': 'string',
                            'CoverageNormalizedUnitsPercentage': 'string'
                        },
                        'CoverageCost': {
                            'OnDemandCost': 'string'
                        }
                    }
                },
            ],
            'Total': {
                'CoverageHours': {
                    'OnDemandHours': 'string',
                    'ReservedHours': 'string',
                    'TotalRunningHours': 'string',
                    'CoverageHoursPercentage': 'string'
                },
                'CoverageNormalizedUnits': {
                    'OnDemandNormalizedUnits': 'string',
                    'ReservedNormalizedUnits': 'string',
                    'TotalRunningNormalizedUnits': 'string',
                    'CoverageNormalizedUnitsPercentage': 'string'
                },
                'CoverageCost': {
                    'OnDemandCost': 'string'
                }
            }
        },
    ],
    'Total': {
        'CoverageHours': {
            'OnDemandHours': 'string',
            'ReservedHours': 'string',
            'TotalRunningHours': 'string',
            'CoverageHoursPercentage': 'string'
        },
        'CoverageNormalizedUnits': {
            'OnDemandNormalizedUnits': 'string',
            'ReservedNormalizedUnits': 'string',
            'TotalRunningNormalizedUnits': 'string',
            'CoverageNormalizedUnitsPercentage': 'string'
        },
        'CoverageCost': {
            'OnDemandCost': 'string'
        }
    },
    'NextPageToken': 'string'
}

Response Structure

  • (dict) --

    • CoveragesByTime (list) --

      The amount of time that your reservations covered.

      • (dict) --

        Reservation coverage for a specified period, in hours.

        • TimePeriod (dict) --

          The period that this coverage was used over.

          • Start (string) --

            The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

          • End (string) --

            The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

        • Groups (list) --

          The groups of instances that the reservation covered.

          • (dict) --

            A group of reservations that share a set of attributes.

            • Attributes (dict) --

              The attributes for this group of reservations.

              • (string) --

                • (string) --

            • Coverage (dict) --

              How much instance usage this group of reservations covered.

              • CoverageHours (dict) --

                The amount of instance usage that the reservation covered, in hours.

                • OnDemandHours (string) --

                  The number of instance running hours that On-Demand Instances covered.

                • ReservedHours (string) --

                  The number of instance running hours that reservations covered.

                • TotalRunningHours (string) --

                  The total instance usage, in hours.

                • CoverageHoursPercentage (string) --

                  The percentage of instance hours that a reservation covered.

              • CoverageNormalizedUnits (dict) --

                The amount of instance usage that the reservation covered, in normalized units.

                • OnDemandNormalizedUnits (string) --

                  The number of normalized units that are covered by On-Demand Instances instead of a reservation.

                • ReservedNormalizedUnits (string) --

                  The number of normalized units that a reservation covers.

                • TotalRunningNormalizedUnits (string) --

                  The total number of normalized units that you used.

                • CoverageNormalizedUnitsPercentage (string) --

                  The percentage of your used instance normalized units that a reservation covers.

              • CoverageCost (dict) --

                The amount of cost that the reservation covered.

                • OnDemandCost (string) --

                  How much an On-Demand Instance costs.

        • Total (dict) --

          The total reservation coverage, in hours.

          • CoverageHours (dict) --

            The amount of instance usage that the reservation covered, in hours.

            • OnDemandHours (string) --

              The number of instance running hours that On-Demand Instances covered.

            • ReservedHours (string) --

              The number of instance running hours that reservations covered.

            • TotalRunningHours (string) --

              The total instance usage, in hours.

            • CoverageHoursPercentage (string) --

              The percentage of instance hours that a reservation covered.

          • CoverageNormalizedUnits (dict) --

            The amount of instance usage that the reservation covered, in normalized units.

            • OnDemandNormalizedUnits (string) --

              The number of normalized units that are covered by On-Demand Instances instead of a reservation.

            • ReservedNormalizedUnits (string) --

              The number of normalized units that a reservation covers.

            • TotalRunningNormalizedUnits (string) --

              The total number of normalized units that you used.

            • CoverageNormalizedUnitsPercentage (string) --

              The percentage of your used instance normalized units that a reservation covers.

          • CoverageCost (dict) --

            The amount of cost that the reservation covered.

            • OnDemandCost (string) --

              How much an On-Demand Instance costs.

    • Total (dict) --

      The total amount of instance usage that a reservation covered.

      • CoverageHours (dict) --

        The amount of instance usage that the reservation covered, in hours.

        • OnDemandHours (string) --

          The number of instance running hours that On-Demand Instances covered.

        • ReservedHours (string) --

          The number of instance running hours that reservations covered.

        • TotalRunningHours (string) --

          The total instance usage, in hours.

        • CoverageHoursPercentage (string) --

          The percentage of instance hours that a reservation covered.

      • CoverageNormalizedUnits (dict) --

        The amount of instance usage that the reservation covered, in normalized units.

        • OnDemandNormalizedUnits (string) --

          The number of normalized units that are covered by On-Demand Instances instead of a reservation.

        • ReservedNormalizedUnits (string) --

          The number of normalized units that a reservation covers.

        • TotalRunningNormalizedUnits (string) --

          The total number of normalized units that you used.

        • CoverageNormalizedUnitsPercentage (string) --

          The percentage of your used instance normalized units that a reservation covers.

      • CoverageCost (dict) --

        The amount of cost that the reservation covered.

        • OnDemandCost (string) --

          How much an On-Demand Instance costs.

    • NextPageToken (string) --

      The token for the next set of retrievable results. AWS provides the token when the response from a previous call has more results than the maximum page size.

GetReservationUtilization (updated) Link ¶
Changes (request)
{'Filter': {'Dimensions': {'Key': {'LINKED_ACCOUNT_NAME', 'SERVICE_CODE'},
                           'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH '
                                            '| CONTAINS | CASE_SENSITIVE | '
                                            'CASE_INSENSITIVE']},
            'Tags': {'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH | '
                                      'CONTAINS | CASE_SENSITIVE | '
                                      'CASE_INSENSITIVE']}}}

Retrieves the reservation utilization for your account. Master accounts in an organization have access to member accounts. You can filter data by dimensions in a time period. You can use GetDimensionValues to determine the possible dimension values. Currently, you can group only by SUBSCRIPTION_ID .

See also: AWS API Documentation

Request Syntax

client.get_reservation_utilization(
    TimePeriod={
        'Start': 'string',
        'End': 'string'
    },
    GroupBy=[
        {
            'Type': 'DIMENSION'|'TAG'|'COST_CATEGORY',
            'Key': 'string'
        },
    ],
    Granularity='DAILY'|'MONTHLY'|'HOURLY',
    Filter={
        'Or': [
            {'... recursive ...'},
        ],
        'And': [
            {'... recursive ...'},
        ],
        'Not': {'... recursive ...'},
        'Dimensions': {
            'Key': 'AZ'|'INSTANCE_TYPE'|'LINKED_ACCOUNT'|'LINKED_ACCOUNT_NAME'|'OPERATION'|'PURCHASE_TYPE'|'REGION'|'SERVICE'|'SERVICE_CODE'|'USAGE_TYPE'|'USAGE_TYPE_GROUP'|'RECORD_TYPE'|'OPERATING_SYSTEM'|'TENANCY'|'SCOPE'|'PLATFORM'|'SUBSCRIPTION_ID'|'LEGAL_ENTITY_NAME'|'DEPLOYMENT_OPTION'|'DATABASE_ENGINE'|'CACHE_ENGINE'|'INSTANCE_TYPE_FAMILY'|'BILLING_ENTITY'|'RESERVATION_ID'|'RESOURCE_ID'|'RIGHTSIZING_TYPE'|'SAVINGS_PLANS_TYPE'|'SAVINGS_PLAN_ARN'|'PAYMENT_OPTION',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'Tags': {
            'Key': 'string',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'CostCategories': {
            'Key': 'string',
            'Values': [
                'string',
            ]
        }
    },
    NextPageToken='string'
)
type TimePeriod

dict

param TimePeriod

[REQUIRED]

Sets the start and end dates for retrieving RI utilization. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01 , then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01 .

  • Start (string) -- [REQUIRED]

    The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

  • End (string) -- [REQUIRED]

    The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

type GroupBy

list

param GroupBy

Groups only by SUBSCRIPTION_ID . Metadata is included.

  • (dict) --

    Represents a group when you specify a group by criteria or in the response to a query with a specific grouping.

    • Type (string) --

      The string that represents the type of group.

    • Key (string) --

      The string that represents a key for a specified group.

type Granularity

string

param Granularity

If GroupBy is set, Granularity can't be set. If Granularity isn't set, the response object doesn't include Granularity , either MONTHLY or DAILY . If both GroupBy and Granularity aren't set, GetReservationUtilization defaults to DAILY .

The GetReservationUtilization operation supports only DAILY and MONTHLY granularities.

type Filter

dict

param Filter

Filters utilization data by dimensions. You can filter by the following dimensions:

  • AZ

  • CACHE_ENGINE

  • DEPLOYMENT_OPTION

  • INSTANCE_TYPE

  • LINKED_ACCOUNT

  • OPERATING_SYSTEM

  • PLATFORM

  • REGION

  • SERVICE

  • SCOPE

  • TENANCY

GetReservationUtilization uses the same Expression object as the other operations, but only AND is supported among each dimension, and nesting is supported up to only one level deep. If there are multiple values for a dimension, they are OR'd together.

  • Or (list) --

    Return results that match either Dimension object.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • And (list) --

    Return results that match both Dimension objects.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • Not (dict) --

    Return results that don't match a Dimension object.

  • Dimensions (dict) --

    The specific Dimension to use for Expression .

    • Key (string) --

      The names of the metadata types that you can use to filter and group your results. For example, AZ returns a list of Availability Zones.

    • Values (list) --

      The metadata values that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • Tags (dict) --

    The specific Tag to use for Expression .

    • Key (string) --

      The key for the tag.

    • Values (list) --

      The specific value of the tag.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • CostCategories (dict) --

    The filter based on CostCategory values.

    • Key (string) --

      The unique name of the Cost Category.

    • Values (list) --

      The specific value of the Cost Category.

      • (string) --

type NextPageToken

string

param NextPageToken

The token to retrieve the next set of results. AWS provides the token when the response from a previous call has more results than the maximum page size.

rtype

dict

returns

Response Syntax

{
    'UtilizationsByTime': [
        {
            'TimePeriod': {
                'Start': 'string',
                'End': 'string'
            },
            'Groups': [
                {
                    'Key': 'string',
                    'Value': 'string',
                    'Attributes': {
                        'string': 'string'
                    },
                    'Utilization': {
                        'UtilizationPercentage': 'string',
                        'UtilizationPercentageInUnits': 'string',
                        'PurchasedHours': 'string',
                        'PurchasedUnits': 'string',
                        'TotalActualHours': 'string',
                        'TotalActualUnits': 'string',
                        'UnusedHours': 'string',
                        'UnusedUnits': 'string',
                        'OnDemandCostOfRIHoursUsed': 'string',
                        'NetRISavings': 'string',
                        'TotalPotentialRISavings': 'string',
                        'AmortizedUpfrontFee': 'string',
                        'AmortizedRecurringFee': 'string',
                        'TotalAmortizedFee': 'string'
                    }
                },
            ],
            'Total': {
                'UtilizationPercentage': 'string',
                'UtilizationPercentageInUnits': 'string',
                'PurchasedHours': 'string',
                'PurchasedUnits': 'string',
                'TotalActualHours': 'string',
                'TotalActualUnits': 'string',
                'UnusedHours': 'string',
                'UnusedUnits': 'string',
                'OnDemandCostOfRIHoursUsed': 'string',
                'NetRISavings': 'string',
                'TotalPotentialRISavings': 'string',
                'AmortizedUpfrontFee': 'string',
                'AmortizedRecurringFee': 'string',
                'TotalAmortizedFee': 'string'
            }
        },
    ],
    'Total': {
        'UtilizationPercentage': 'string',
        'UtilizationPercentageInUnits': 'string',
        'PurchasedHours': 'string',
        'PurchasedUnits': 'string',
        'TotalActualHours': 'string',
        'TotalActualUnits': 'string',
        'UnusedHours': 'string',
        'UnusedUnits': 'string',
        'OnDemandCostOfRIHoursUsed': 'string',
        'NetRISavings': 'string',
        'TotalPotentialRISavings': 'string',
        'AmortizedUpfrontFee': 'string',
        'AmortizedRecurringFee': 'string',
        'TotalAmortizedFee': 'string'
    },
    'NextPageToken': 'string'
}

Response Structure

  • (dict) --

    • UtilizationsByTime (list) --

      The amount of time that you used your RIs.

      • (dict) --

        The amount of utilization, in hours.

        • TimePeriod (dict) --

          The period of time that this utilization was used for.

          • Start (string) --

            The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

          • End (string) --

            The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

        • Groups (list) --

          The groups that this utilization result uses.

          • (dict) --

            A group of reservations that share a set of attributes.

            • Key (string) --

              The key for a specific reservation attribute.

            • Value (string) --

              The value of a specific reservation attribute.

            • Attributes (dict) --

              The attributes for this group of reservations.

              • (string) --

                • (string) --

            • Utilization (dict) --

              How much you used this group of reservations.

              • UtilizationPercentage (string) --

                The percentage of reservation time that you used.

              • UtilizationPercentageInUnits (string) --

                The percentage of Amazon EC2 reservation time that you used, converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

              • PurchasedHours (string) --

                How many reservation hours that you purchased.

              • PurchasedUnits (string) --

                How many Amazon EC2 reservation hours that you purchased, converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

              • TotalActualHours (string) --

                The total number of reservation hours that you used.

              • TotalActualUnits (string) --

                The total number of Amazon EC2 reservation hours that you used, converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

              • UnusedHours (string) --

                The number of reservation hours that you didn't use.

              • UnusedUnits (string) --

                The number of Amazon EC2 reservation hours that you didn't use, converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

              • OnDemandCostOfRIHoursUsed (string) --

                How much your reservation would cost if charged On-Demand rates.

              • NetRISavings (string) --

                How much you saved due to purchasing and utilizing reservation. AWS calculates this by subtracting TotalAmortizedFee from OnDemandCostOfRIHoursUsed .

              • TotalPotentialRISavings (string) --

                How much you could save if you use your entire reservation.

              • AmortizedUpfrontFee (string) --

                The upfront cost of your reservation, amortized over the reservation period.

              • AmortizedRecurringFee (string) --

                The monthly cost of your reservation, amortized over the reservation period.

              • TotalAmortizedFee (string) --

                The total cost of your reservation, amortized over the reservation period.

        • Total (dict) --

          The total number of reservation hours that were used.

          • UtilizationPercentage (string) --

            The percentage of reservation time that you used.

          • UtilizationPercentageInUnits (string) --

            The percentage of Amazon EC2 reservation time that you used, converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

          • PurchasedHours (string) --

            How many reservation hours that you purchased.

          • PurchasedUnits (string) --

            How many Amazon EC2 reservation hours that you purchased, converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

          • TotalActualHours (string) --

            The total number of reservation hours that you used.

          • TotalActualUnits (string) --

            The total number of Amazon EC2 reservation hours that you used, converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

          • UnusedHours (string) --

            The number of reservation hours that you didn't use.

          • UnusedUnits (string) --

            The number of Amazon EC2 reservation hours that you didn't use, converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

          • OnDemandCostOfRIHoursUsed (string) --

            How much your reservation would cost if charged On-Demand rates.

          • NetRISavings (string) --

            How much you saved due to purchasing and utilizing reservation. AWS calculates this by subtracting TotalAmortizedFee from OnDemandCostOfRIHoursUsed .

          • TotalPotentialRISavings (string) --

            How much you could save if you use your entire reservation.

          • AmortizedUpfrontFee (string) --

            The upfront cost of your reservation, amortized over the reservation period.

          • AmortizedRecurringFee (string) --

            The monthly cost of your reservation, amortized over the reservation period.

          • TotalAmortizedFee (string) --

            The total cost of your reservation, amortized over the reservation period.

    • Total (dict) --

      The total amount of time that you used your RIs.

      • UtilizationPercentage (string) --

        The percentage of reservation time that you used.

      • UtilizationPercentageInUnits (string) --

        The percentage of Amazon EC2 reservation time that you used, converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

      • PurchasedHours (string) --

        How many reservation hours that you purchased.

      • PurchasedUnits (string) --

        How many Amazon EC2 reservation hours that you purchased, converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

      • TotalActualHours (string) --

        The total number of reservation hours that you used.

      • TotalActualUnits (string) --

        The total number of Amazon EC2 reservation hours that you used, converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

      • UnusedHours (string) --

        The number of reservation hours that you didn't use.

      • UnusedUnits (string) --

        The number of Amazon EC2 reservation hours that you didn't use, converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

      • OnDemandCostOfRIHoursUsed (string) --

        How much your reservation would cost if charged On-Demand rates.

      • NetRISavings (string) --

        How much you saved due to purchasing and utilizing reservation. AWS calculates this by subtracting TotalAmortizedFee from OnDemandCostOfRIHoursUsed .

      • TotalPotentialRISavings (string) --

        How much you could save if you use your entire reservation.

      • AmortizedUpfrontFee (string) --

        The upfront cost of your reservation, amortized over the reservation period.

      • AmortizedRecurringFee (string) --

        The monthly cost of your reservation, amortized over the reservation period.

      • TotalAmortizedFee (string) --

        The total cost of your reservation, amortized over the reservation period.

    • NextPageToken (string) --

      The token for the next set of retrievable results. AWS provides the token when the response from a previous call has more results than the maximum page size.

GetRightsizingRecommendation (updated) Link ¶
Changes (request, response)
Request
{'Filter': {'Dimensions': {'Key': {'LINKED_ACCOUNT_NAME', 'SERVICE_CODE'},
                           'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH '
                                            '| CONTAINS | CASE_SENSITIVE | '
                                            'CASE_INSENSITIVE']},
            'Tags': {'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH | '
                                      'CONTAINS | CASE_SENSITIVE | '
                                      'CASE_INSENSITIVE']}}}
Response
{'RightsizingRecommendations': {'CurrentInstance': {'Tags': {'MatchOptions': ['EQUALS '
                                                                              '| '
                                                                              'STARTS_WITH '
                                                                              '| '
                                                                              'ENDS_WITH '
                                                                              '| '
                                                                              'CONTAINS '
                                                                              '| '
                                                                              'CASE_SENSITIVE '
                                                                              '| '
                                                                              'CASE_INSENSITIVE']}}}}

Creates recommendations that helps you save cost by identifying idle and underutilized Amazon EC2 instances.

Recommendations are generated to either downsize or terminate instances, along with providing savings detail and metrics. For details on calculation and function, see Optimizing Your Cost with Rightsizing Recommendations.

See also: AWS API Documentation

Request Syntax

client.get_rightsizing_recommendation(
    Filter={
        'Or': [
            {'... recursive ...'},
        ],
        'And': [
            {'... recursive ...'},
        ],
        'Not': {'... recursive ...'},
        'Dimensions': {
            'Key': 'AZ'|'INSTANCE_TYPE'|'LINKED_ACCOUNT'|'LINKED_ACCOUNT_NAME'|'OPERATION'|'PURCHASE_TYPE'|'REGION'|'SERVICE'|'SERVICE_CODE'|'USAGE_TYPE'|'USAGE_TYPE_GROUP'|'RECORD_TYPE'|'OPERATING_SYSTEM'|'TENANCY'|'SCOPE'|'PLATFORM'|'SUBSCRIPTION_ID'|'LEGAL_ENTITY_NAME'|'DEPLOYMENT_OPTION'|'DATABASE_ENGINE'|'CACHE_ENGINE'|'INSTANCE_TYPE_FAMILY'|'BILLING_ENTITY'|'RESERVATION_ID'|'RESOURCE_ID'|'RIGHTSIZING_TYPE'|'SAVINGS_PLANS_TYPE'|'SAVINGS_PLAN_ARN'|'PAYMENT_OPTION',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'Tags': {
            'Key': 'string',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'CostCategories': {
            'Key': 'string',
            'Values': [
                'string',
            ]
        }
    },
    Service='string',
    PageSize=123,
    NextPageToken='string'
)
type Filter

dict

param Filter

Use Expression to filter by cost or by usage. There are two patterns:

  • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

  • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

Note

Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

{ "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

Note

For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • Or (list) --

    Return results that match either Dimension object.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • And (list) --

    Return results that match both Dimension objects.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • Not (dict) --

    Return results that don't match a Dimension object.

  • Dimensions (dict) --

    The specific Dimension to use for Expression .

    • Key (string) --

      The names of the metadata types that you can use to filter and group your results. For example, AZ returns a list of Availability Zones.

    • Values (list) --

      The metadata values that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • Tags (dict) --

    The specific Tag to use for Expression .

    • Key (string) --

      The key for the tag.

    • Values (list) --

      The specific value of the tag.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • CostCategories (dict) --

    The filter based on CostCategory values.

    • Key (string) --

      The unique name of the Cost Category.

    • Values (list) --

      The specific value of the Cost Category.

      • (string) --

type Service

string

param Service

[REQUIRED]

The specific service that you want recommendations for. The only valid value for GetRightsizingRecommendation is " AmazonEC2 ".

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',
        'LookbackPeriodInDays': 'SEVEN_DAYS'|'THIRTY_DAYS'|'SIXTY_DAYS'
    },
    'Summary': {
        'TotalRecommendationCount': 'string',
        'EstimatedTotalMonthlySavingsAmount': 'string',
        'SavingsCurrencyCode': 'string',
        'SavingsPercentage': 'string'
    },
    'RightsizingRecommendations': [
        {
            'AccountId': 'string',
            'CurrentInstance': {
                'ResourceId': 'string',
                'Tags': [
                    {
                        'Key': 'string',
                        'Values': [
                            'string',
                        ],
                        'MatchOptions': [
                            'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
                        ]
                    },
                ],
                'ResourceDetails': {
                    'EC2ResourceDetails': {
                        'HourlyOnDemandRate': 'string',
                        'InstanceType': 'string',
                        'Platform': 'string',
                        'Region': 'string',
                        'Sku': 'string',
                        'Memory': 'string',
                        'NetworkPerformance': 'string',
                        'Storage': 'string',
                        'Vcpu': 'string'
                    }
                },
                'ResourceUtilization': {
                    'EC2ResourceUtilization': {
                        'MaxCpuUtilizationPercentage': 'string',
                        'MaxMemoryUtilizationPercentage': 'string',
                        'MaxStorageUtilizationPercentage': 'string'
                    }
                },
                'ReservationCoveredHoursInLookbackPeriod': 'string',
                'SavingsPlansCoveredHoursInLookbackPeriod': 'string',
                'OnDemandHoursInLookbackPeriod': 'string',
                'TotalRunningHoursInLookbackPeriod': 'string',
                'MonthlyCost': 'string',
                'CurrencyCode': 'string'
            },
            'RightsizingType': 'TERMINATE'|'MODIFY',
            'ModifyRecommendationDetail': {
                'TargetInstances': [
                    {
                        'EstimatedMonthlyCost': 'string',
                        'EstimatedMonthlySavings': 'string',
                        'CurrencyCode': 'string',
                        'DefaultTargetInstance': True|False,
                        'ResourceDetails': {
                            'EC2ResourceDetails': {
                                'HourlyOnDemandRate': 'string',
                                'InstanceType': 'string',
                                'Platform': 'string',
                                'Region': 'string',
                                'Sku': 'string',
                                'Memory': 'string',
                                'NetworkPerformance': 'string',
                                'Storage': 'string',
                                'Vcpu': 'string'
                            }
                        },
                        'ExpectedResourceUtilization': {
                            'EC2ResourceUtilization': {
                                'MaxCpuUtilizationPercentage': 'string',
                                'MaxMemoryUtilizationPercentage': 'string',
                                'MaxStorageUtilizationPercentage': 'string'
                            }
                        }
                    },
                ]
            },
            'TerminateRecommendationDetail': {
                'EstimatedMonthlySavings': 'string',
                'CurrencyCode': 'string'
            }
        },
    ],
    'NextPageToken': 'string'
}

Response Structure

  • (dict) --

    • Metadata (dict) --

      Information regarding this specific recommendation set.

      • RecommendationId (string) --

        The ID for this specific recommendation.

      • GenerationTimestamp (string) --

        The time stamp for when Amazon Web Services made this recommendation.

      • LookbackPeriodInDays (string) --

        How many days of previous usage that Amazon Web Services considers when making this recommendation.

    • Summary (dict) --

      Summary of this recommendation set.

      • TotalRecommendationCount (string) --

        Total number of instance recommendations.

      • EstimatedTotalMonthlySavingsAmount (string) --

        Estimated total savings resulting from modifications, on a monthly basis.

      • SavingsCurrencyCode (string) --

        The currency code that Amazon Web Services used to calculate the savings.

      • SavingsPercentage (string) --

        Savings percentage based on the recommended modifications, relative to the total On Demand costs associated with these instances.

    • RightsizingRecommendations (list) --

      Recommendations to rightsize resources.

      • (dict) --

        Recommendations to rightsize resources.

        • AccountId (string) --

          The account that this recommendation is for.

        • CurrentInstance (dict) --

          Context regarding the current instance.

          • ResourceId (string) --

            Resource ID of the current instance.

          • Tags (list) --

            Cost allocation resource tags applied to the instance.

            • (dict) --

              The values that are available for a tag.

              • Key (string) --

                The key for the tag.

              • Values (list) --

                The specific value of the tag.

                • (string) --

              • MatchOptions (list) --

                The match options that you can use to filter your results. MatchOptions is only applicable for only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

                • (string) --

          • ResourceDetails (dict) --

            Details about the resource and utilization.

            • EC2ResourceDetails (dict) --

              Details on the Amazon EC2 resource.

              • HourlyOnDemandRate (string) --

                Hourly public On Demand rate for the instance type.

              • InstanceType (string) --

                The type of Amazon Web Services instance.

              • Platform (string) --

                The platform of the Amazon Web Services instance. The platform is the specific combination of operating system, license model, and software on an instance.

              • Region (string) --

                The Amazon Web Services Region of the instance.

              • Sku (string) --

                The SKU of the product.

              • Memory (string) --

                Memory capacity of Amazon Web Services instance.

              • NetworkPerformance (string) --

                Network performance capacity of the Amazon Web Services instance.

              • Storage (string) --

                The disk storage of the Amazon Web Services instance (Not EBS storage).

              • Vcpu (string) --

                Number of VCPU cores in the Amazon Web Services instance type.

          • ResourceUtilization (dict) --

            Utilization information of the current instance during the lookback period.

            • EC2ResourceUtilization (dict) --

              Utilization of current Amazon EC2 Instance

              • MaxCpuUtilizationPercentage (string) --

                Maximum observed or expected CPU utilization of the instance.

              • MaxMemoryUtilizationPercentage (string) --

                Maximum observed or expected memory utilization of the instance.

              • MaxStorageUtilizationPercentage (string) --

                Maximum observed or expected storage utilization of the instance (does not measure EBS storage).

          • ReservationCoveredHoursInLookbackPeriod (string) --

            Number of hours during the lookback period covered by reservations.

          • SavingsPlansCoveredHoursInLookbackPeriod (string) --

            Number of hours during the lookback period covered by Savings Plans.

          • OnDemandHoursInLookbackPeriod (string) --

            Number of hours during the lookback period billed at On Demand rates.

          • TotalRunningHoursInLookbackPeriod (string) --

            The total number of hours the instance ran during the lookback period.

          • MonthlyCost (string) --

            Current On Demand cost of operating this instance on a monthly basis.

          • CurrencyCode (string) --

            The currency code that Amazon Web Services used to calculate the costs for this instance.

        • RightsizingType (string) --

          Recommendation to either terminate or modify the resource.

        • ModifyRecommendationDetail (dict) --

          Details for modification recommendations.

          • TargetInstances (list) --

            Identifies whether this instance type is the Amazon Web Services default recommendation.

            • (dict) --

              Details on recommended instance.

              • EstimatedMonthlyCost (string) --

                Expected cost to operate this instance type on a monthly basis.

              • EstimatedMonthlySavings (string) --

                Estimated savings resulting from modification, on a monthly basis.

              • CurrencyCode (string) --

                The currency code that Amazon Web Services used to calculate the costs for this instance.

              • DefaultTargetInstance (boolean) --

                Indicates whether or not this recommendation is the defaulted Amazon Web Services recommendation.

              • ResourceDetails (dict) --

                Details on the target instance type.

                • EC2ResourceDetails (dict) --

                  Details on the Amazon EC2 resource.

                  • HourlyOnDemandRate (string) --

                    Hourly public On Demand rate for the instance type.

                  • InstanceType (string) --

                    The type of Amazon Web Services instance.

                  • Platform (string) --

                    The platform of the Amazon Web Services instance. The platform is the specific combination of operating system, license model, and software on an instance.

                  • Region (string) --

                    The Amazon Web Services Region of the instance.

                  • Sku (string) --

                    The SKU of the product.

                  • Memory (string) --

                    Memory capacity of Amazon Web Services instance.

                  • NetworkPerformance (string) --

                    Network performance capacity of the Amazon Web Services instance.

                  • Storage (string) --

                    The disk storage of the Amazon Web Services instance (Not EBS storage).

                  • Vcpu (string) --

                    Number of VCPU cores in the Amazon Web Services instance type.

              • ExpectedResourceUtilization (dict) --

                Expected utilization metrics for target instance type.

                • EC2ResourceUtilization (dict) --

                  Utilization of current Amazon EC2 Instance

                  • MaxCpuUtilizationPercentage (string) --

                    Maximum observed or expected CPU utilization of the instance.

                  • MaxMemoryUtilizationPercentage (string) --

                    Maximum observed or expected memory utilization of the instance.

                  • MaxStorageUtilizationPercentage (string) --

                    Maximum observed or expected storage utilization of the instance (does not measure EBS storage).

        • TerminateRecommendationDetail (dict) --

          Details for termination recommendations.

          • EstimatedMonthlySavings (string) --

            Estimated savings resulting from modification, on a monthly basis.

          • CurrencyCode (string) --

            The currency code that Amazon Web Services used to calculate the costs for this instance.

    • NextPageToken (string) --

      The token to retrieve the next set of results.

GetSavingsPlansCoverage (updated) Link ¶
Changes (request)
{'Filter': {'Dimensions': {'Key': {'LINKED_ACCOUNT_NAME', 'SERVICE_CODE'},
                           'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH '
                                            '| CONTAINS | CASE_SENSITIVE | '
                                            'CASE_INSENSITIVE']},
            'Tags': {'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH | '
                                      'CONTAINS | CASE_SENSITIVE | '
                                      'CASE_INSENSITIVE']}}}

Retrieves the Savings Plans covered for your account. This enables you to see how much of your cost is covered by a Savings Plan. An organization’s master account can see the coverage of the associated member accounts. This supports dimensions, Cost Categories, and nested expressions. For any time period, you can filter data for Savings Plans usage with the following dimensions:

  • LINKED_ACCOUNT

  • REGION

  • SERVICE

  • INSTANCE_FAMILY

To determine valid values for a dimension, use the GetDimensionValues operation.

See also: AWS API Documentation

Request Syntax

client.get_savings_plans_coverage(
    TimePeriod={
        'Start': 'string',
        'End': 'string'
    },
    GroupBy=[
        {
            'Type': 'DIMENSION'|'TAG'|'COST_CATEGORY',
            'Key': 'string'
        },
    ],
    Granularity='DAILY'|'MONTHLY'|'HOURLY',
    Filter={
        'Or': [
            {'... recursive ...'},
        ],
        'And': [
            {'... recursive ...'},
        ],
        'Not': {'... recursive ...'},
        'Dimensions': {
            'Key': 'AZ'|'INSTANCE_TYPE'|'LINKED_ACCOUNT'|'LINKED_ACCOUNT_NAME'|'OPERATION'|'PURCHASE_TYPE'|'REGION'|'SERVICE'|'SERVICE_CODE'|'USAGE_TYPE'|'USAGE_TYPE_GROUP'|'RECORD_TYPE'|'OPERATING_SYSTEM'|'TENANCY'|'SCOPE'|'PLATFORM'|'SUBSCRIPTION_ID'|'LEGAL_ENTITY_NAME'|'DEPLOYMENT_OPTION'|'DATABASE_ENGINE'|'CACHE_ENGINE'|'INSTANCE_TYPE_FAMILY'|'BILLING_ENTITY'|'RESERVATION_ID'|'RESOURCE_ID'|'RIGHTSIZING_TYPE'|'SAVINGS_PLANS_TYPE'|'SAVINGS_PLAN_ARN'|'PAYMENT_OPTION',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'Tags': {
            'Key': 'string',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'CostCategories': {
            'Key': 'string',
            'Values': [
                'string',
            ]
        }
    },
    Metrics=[
        'string',
    ],
    NextToken='string',
    MaxResults=123
)
type TimePeriod

dict

param TimePeriod

[REQUIRED]

The time period that you want the usage and costs for. The Start date must be within 13 months. The End date must be after the Start date, and before the current date. Future dates can't be used as an End date.

  • Start (string) -- [REQUIRED]

    The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

  • End (string) -- [REQUIRED]

    The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

type GroupBy

list

param GroupBy

You can group the data using the attributes INSTANCE_FAMILY , REGION , or SERVICE .

  • (dict) --

    Represents a group when you specify a group by criteria or in the response to a query with a specific grouping.

    • Type (string) --

      The string that represents the type of group.

    • Key (string) --

      The string that represents a key for a specified group.

type Granularity

string

param Granularity

The granularity of the Amazon Web Services cost data for your Savings Plans. Granularity can't be set if GroupBy is set.

The GetSavingsPlansCoverage operation supports only DAILY and MONTHLY granularities.

type Filter

dict

param Filter

Filters Savings Plans coverage data by dimensions. You can filter data for Savings Plans usage with the following dimensions:

  • LINKED_ACCOUNT

  • REGION

  • SERVICE

  • INSTANCE_FAMILY

GetSavingsPlansCoverage uses the same Expression object as the other operations, but only AND is supported among each dimension. If there are multiple values for a dimension, they are OR'd together.

Cost category is also supported.

  • Or (list) --

    Return results that match either Dimension object.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • And (list) --

    Return results that match both Dimension objects.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • Not (dict) --

    Return results that don't match a Dimension object.

  • Dimensions (dict) --

    The specific Dimension to use for Expression .

    • Key (string) --

      The names of the metadata types that you can use to filter and group your results. For example, AZ returns a list of Availability Zones.

    • Values (list) --

      The metadata values that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • Tags (dict) --

    The specific Tag to use for Expression .

    • Key (string) --

      The key for the tag.

    • Values (list) --

      The specific value of the tag.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • CostCategories (dict) --

    The filter based on CostCategory values.

    • Key (string) --

      The unique name of the Cost Category.

    • Values (list) --

      The specific value of the Cost Category.

      • (string) --

type Metrics

list

param Metrics

The measurement that you want your Savings Plans coverage reported in. The only valid value is SpendCoveredBySavingsPlans .

  • (string) --

type NextToken

string

param NextToken

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

type MaxResults

integer

param MaxResults

The number of items to be returned in a response. The default is 20 , with a minimum value of 1 .

rtype

dict

returns

Response Syntax

{
    'SavingsPlansCoverages': [
        {
            'Attributes': {
                'string': 'string'
            },
            'Coverage': {
                'SpendCoveredBySavingsPlans': 'string',
                'OnDemandCost': 'string',
                'TotalCost': 'string',
                'CoveragePercentage': 'string'
            },
            'TimePeriod': {
                'Start': 'string',
                'End': 'string'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • SavingsPlansCoverages (list) --

      The amount of spend that your Savings Plans covered.

      • (dict) --

        The amount of Savings Plans eligible usage that is covered by Savings Plans. All calculations consider the On-Demand equivalent of your Savings Plans usage.

        • Attributes (dict) --

          The attribute that applies to a specific Dimension .

          • (string) --

            • (string) --

        • Coverage (dict) --

          The amount of Savings Plans eligible usage that the Savings Plans covered.

          • SpendCoveredBySavingsPlans (string) --

            The amount of your Amazon Web Services usage that is covered by a Savings Plans.

          • OnDemandCost (string) --

            The cost of your Amazon Web Services usage at the public On-Demand rate.

          • TotalCost (string) --

            The total cost of your Amazon Web Services usage, regardless of your purchase option.

          • CoveragePercentage (string) --

            The percentage of your existing Savings Plans covered usage, divided by all of your eligible Savings Plans usage in an account(or set of accounts).

        • TimePeriod (dict) --

          The time period that you want the usage and costs for.

          • Start (string) --

            The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

          • End (string) --

            The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

    • NextToken (string) --

      The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

GetSavingsPlansPurchaseRecommendation (updated) Link ¶
Changes (request)
{'Filter': {'Dimensions': {'Key': {'LINKED_ACCOUNT_NAME', 'SERVICE_CODE'},
                           'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH '
                                            '| CONTAINS | CASE_SENSITIVE | '
                                            'CASE_INSENSITIVE']},
            'Tags': {'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH | '
                                      'CONTAINS | CASE_SENSITIVE | '
                                      'CASE_INSENSITIVE']}}}

Retrieves your request parameters, Savings Plan Recommendations Summary and Details.

See also: AWS API Documentation

Request Syntax

client.get_savings_plans_purchase_recommendation(
    SavingsPlansType='COMPUTE_SP'|'EC2_INSTANCE_SP',
    TermInYears='ONE_YEAR'|'THREE_YEARS',
    PaymentOption='NO_UPFRONT'|'PARTIAL_UPFRONT'|'ALL_UPFRONT'|'LIGHT_UTILIZATION'|'MEDIUM_UTILIZATION'|'HEAVY_UTILIZATION',
    AccountScope='PAYER'|'LINKED',
    NextPageToken='string',
    PageSize=123,
    LookbackPeriodInDays='SEVEN_DAYS'|'THIRTY_DAYS'|'SIXTY_DAYS',
    Filter={
        'Or': [
            {'... recursive ...'},
        ],
        'And': [
            {'... recursive ...'},
        ],
        'Not': {'... recursive ...'},
        'Dimensions': {
            'Key': 'AZ'|'INSTANCE_TYPE'|'LINKED_ACCOUNT'|'LINKED_ACCOUNT_NAME'|'OPERATION'|'PURCHASE_TYPE'|'REGION'|'SERVICE'|'SERVICE_CODE'|'USAGE_TYPE'|'USAGE_TYPE_GROUP'|'RECORD_TYPE'|'OPERATING_SYSTEM'|'TENANCY'|'SCOPE'|'PLATFORM'|'SUBSCRIPTION_ID'|'LEGAL_ENTITY_NAME'|'DEPLOYMENT_OPTION'|'DATABASE_ENGINE'|'CACHE_ENGINE'|'INSTANCE_TYPE_FAMILY'|'BILLING_ENTITY'|'RESERVATION_ID'|'RESOURCE_ID'|'RIGHTSIZING_TYPE'|'SAVINGS_PLANS_TYPE'|'SAVINGS_PLAN_ARN'|'PAYMENT_OPTION',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'Tags': {
            'Key': 'string',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'CostCategories': {
            'Key': 'string',
            'Values': [
                'string',
            ]
        }
    }
)
type SavingsPlansType

string

param SavingsPlansType

[REQUIRED]

The Savings Plans recommendation type requested.

type TermInYears

string

param TermInYears

[REQUIRED]

The savings plan recommendation term used to generated these recommendations.

type PaymentOption

string

param PaymentOption

[REQUIRED]

The payment option used to generate these recommendations.

type AccountScope

string

param AccountScope

The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the payer account and linked accounts if the value is set to PAYER . If the value is LINKED , recommendations are calculated for individual linked accounts only.

type NextPageToken

string

param NextPageToken

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

type PageSize

integer

param PageSize

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

type LookbackPeriodInDays

string

param LookbackPeriodInDays

[REQUIRED]

The lookback period used to generate the recommendation.

type Filter

dict

param Filter

You can filter your recommendations by Account ID with the LINKED_ACCOUNT dimension. To filter your recommendations by Account ID, specify Key as LINKED_ACCOUNT and Value as the comma-separated Acount ID(s) for which you want to see Savings Plans purchase recommendations.

For GetSavingsPlansPurchaseRecommendation, the Filter does not include CostCategories or Tags . It only includes Dimensions . With Dimensions , Key must be LINKED_ACCOUNT and Value can be a single Account ID or multiple comma-separated Account IDs for which you want to see Savings Plans Purchase Recommendations. AND and OR operators are not supported.

  • Or (list) --

    Return results that match either Dimension object.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • And (list) --

    Return results that match both Dimension objects.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • Not (dict) --

    Return results that don't match a Dimension object.

  • Dimensions (dict) --

    The specific Dimension to use for Expression .

    • Key (string) --

      The names of the metadata types that you can use to filter and group your results. For example, AZ returns a list of Availability Zones.

    • Values (list) --

      The metadata values that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • Tags (dict) --

    The specific Tag to use for Expression .

    • Key (string) --

      The key for the tag.

    • Values (list) --

      The specific value of the tag.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • CostCategories (dict) --

    The filter based on CostCategory values.

    • Key (string) --

      The unique name of the Cost Category.

    • Values (list) --

      The specific value of the Cost Category.

      • (string) --

rtype

dict

returns

Response Syntax

{
    'Metadata': {
        'RecommendationId': 'string',
        'GenerationTimestamp': 'string'
    },
    'SavingsPlansPurchaseRecommendation': {
        'AccountScope': 'PAYER'|'LINKED',
        'SavingsPlansType': 'COMPUTE_SP'|'EC2_INSTANCE_SP',
        'TermInYears': 'ONE_YEAR'|'THREE_YEARS',
        'PaymentOption': 'NO_UPFRONT'|'PARTIAL_UPFRONT'|'ALL_UPFRONT'|'LIGHT_UTILIZATION'|'MEDIUM_UTILIZATION'|'HEAVY_UTILIZATION',
        'LookbackPeriodInDays': 'SEVEN_DAYS'|'THIRTY_DAYS'|'SIXTY_DAYS',
        'SavingsPlansPurchaseRecommendationDetails': [
            {
                'SavingsPlansDetails': {
                    'Region': 'string',
                    'InstanceFamily': 'string',
                    'OfferingId': 'string'
                },
                'AccountId': 'string',
                'UpfrontCost': 'string',
                'EstimatedROI': 'string',
                'CurrencyCode': 'string',
                'EstimatedSPCost': 'string',
                'EstimatedOnDemandCost': 'string',
                'EstimatedOnDemandCostWithCurrentCommitment': 'string',
                'EstimatedSavingsAmount': 'string',
                'EstimatedSavingsPercentage': 'string',
                'HourlyCommitmentToPurchase': 'string',
                'EstimatedAverageUtilization': 'string',
                'EstimatedMonthlySavingsAmount': 'string',
                'CurrentMinimumHourlyOnDemandSpend': 'string',
                'CurrentMaximumHourlyOnDemandSpend': 'string',
                'CurrentAverageHourlyOnDemandSpend': 'string'
            },
        ],
        'SavingsPlansPurchaseRecommendationSummary': {
            'EstimatedROI': 'string',
            'CurrencyCode': 'string',
            'EstimatedTotalCost': 'string',
            'CurrentOnDemandSpend': 'string',
            'EstimatedSavingsAmount': 'string',
            'TotalRecommendationCount': 'string',
            'DailyCommitmentToPurchase': 'string',
            'HourlyCommitmentToPurchase': 'string',
            'EstimatedSavingsPercentage': 'string',
            'EstimatedMonthlySavingsAmount': 'string',
            'EstimatedOnDemandCostWithCurrentCommitment': 'string'
        }
    },
    'NextPageToken': 'string'
}

Response Structure

  • (dict) --

    • Metadata (dict) --

      Information regarding this specific recommendation set.

      • RecommendationId (string) --

        The unique identifier for the recommendation set.

      • GenerationTimestamp (string) --

        The timestamp showing when the recommendations were generated.

    • SavingsPlansPurchaseRecommendation (dict) --

      Contains your request parameters, Savings Plan Recommendations Summary, and Details.

      • AccountScope (string) --

        The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the payer account and linked accounts if the value is set to PAYER . If the value is LINKED , recommendations are calculated for individual linked accounts only.

      • SavingsPlansType (string) --

        The requested Savings Plans recommendation type.

      • TermInYears (string) --

        The Savings Plans recommendation term in years, used to generate the recommendation.

      • PaymentOption (string) --

        The payment option used to generate the recommendation.

      • LookbackPeriodInDays (string) --

        The lookback period in days, used to generate the recommendation.

      • SavingsPlansPurchaseRecommendationDetails (list) --

        Details for the Savings Plans we recommend that you purchase to cover existing Savings Plans eligible workloads.

        • (dict) --

          Details for your recommended Savings Plans.

          • SavingsPlansDetails (dict) --

            Details for your recommended Savings Plans.

            • Region (string) --

              A collection of AWS resources in a geographic area. Each AWS Region is isolated and independent of the other Regions.

            • InstanceFamily (string) --

              A group of instance types that Savings Plans applies to.

            • OfferingId (string) --

              The unique ID used to distinguish Savings Plans from one another.

          • AccountId (string) --

            The AccountID the recommendation is generated for.

          • UpfrontCost (string) --

            The upfront cost of the recommended Savings Plans, based on the selected payment option.

          • EstimatedROI (string) --

            The estimated return on investment based on the recommended Savings Plans purchased. This is calculated as estimatedSavingsAmount / estimatedSPCost *100.

          • CurrencyCode (string) --

            The currency code Amazon Web Services used to generate the recommendations and present potential savings.

          • EstimatedSPCost (string) --

            The cost of the recommended Savings Plans over the length of the lookback period.

          • EstimatedOnDemandCost (string) --

            The remaining On-Demand cost estimated to not be covered by the recommended Savings Plans, over the length of the lookback period.

          • EstimatedOnDemandCostWithCurrentCommitment (string) --

            The estimated On-Demand costs you would expect with no additional commitment, based on your usage of the selected time period and the Savings Plans you own.

          • EstimatedSavingsAmount (string) --

            The estimated savings amount based on the recommended Savings Plans over the length of the lookback period.

          • EstimatedSavingsPercentage (string) --

            The estimated savings percentage relative to the total cost of applicable On-Demand usage over the lookback period.

          • HourlyCommitmentToPurchase (string) --

            The recommended hourly commitment level for the Savings Plans type, and configuration based on the usage during the lookback period.

          • EstimatedAverageUtilization (string) --

            The estimated utilization of the recommended Savings Plans.

          • EstimatedMonthlySavingsAmount (string) --

            The estimated monthly savings amount, based on the recommended Savings Plans.

          • CurrentMinimumHourlyOnDemandSpend (string) --

            The lowest value of hourly On-Demand spend over the lookback period of the applicable usage type.

          • CurrentMaximumHourlyOnDemandSpend (string) --

            The highest value of hourly On-Demand spend over the lookback period of the applicable usage type.

          • CurrentAverageHourlyOnDemandSpend (string) --

            The average value of hourly On-Demand spend over the lookback period of the applicable usage type.

      • SavingsPlansPurchaseRecommendationSummary (dict) --

        Summary metrics for your Savings Plans Recommendations.

        • EstimatedROI (string) --

          The estimated return on investment based on the recommended Savings Plans and estimated savings.

        • CurrencyCode (string) --

          The currency code Amazon Web Services used to generate the recommendations and present potential savings.

        • EstimatedTotalCost (string) --

          The estimated total cost of the usage after purchasing the recommended Savings Plans. This is a sum of the cost of Savings Plans during this term, and the remaining On-Demand usage.

        • CurrentOnDemandSpend (string) --

          The current total on demand spend of the applicable usage types over the lookback period.

        • EstimatedSavingsAmount (string) --

          The estimated total savings over the lookback period, based on the purchase of the recommended Savings Plans.

        • TotalRecommendationCount (string) --

          The aggregate number of Savings Plans recommendations that exist for your account.

        • DailyCommitmentToPurchase (string) --

          The recommended Savings Plans cost on a daily (24 hourly) basis.

        • HourlyCommitmentToPurchase (string) --

          The recommended hourly commitment based on the recommendation parameters.

        • EstimatedSavingsPercentage (string) --

          The estimated savings relative to the total cost of On-Demand usage, over the lookback period. This is calculated as estimatedSavingsAmount / CurrentOnDemandSpend *100.

        • EstimatedMonthlySavingsAmount (string) --

          The estimated monthly savings amount, based on the recommended Savings Plans purchase.

        • EstimatedOnDemandCostWithCurrentCommitment (string) --

          The estimated On-Demand costs you would expect with no additional commitment, based on your usage of the selected time period and the Savings Plans you own.

    • NextPageToken (string) --

      The token for the next set of retrievable results. AWS provides the token when the response from a previous call has more results than the maximum page size.

GetSavingsPlansUtilization (updated) Link ¶
Changes (request)
{'Filter': {'Dimensions': {'Key': {'LINKED_ACCOUNT_NAME', 'SERVICE_CODE'},
                           'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH '
                                            '| CONTAINS | CASE_SENSITIVE | '
                                            'CASE_INSENSITIVE']},
            'Tags': {'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH | '
                                      'CONTAINS | CASE_SENSITIVE | '
                                      'CASE_INSENSITIVE']}}}

Retrieves the Savings Plans utilization for your account across date ranges with daily or monthly granularity. Master accounts in an organization have access to member accounts. You can use GetDimensionValues in SAVINGS_PLANS to determine the possible dimension values.

Note

You cannot group by any dimension values for GetSavingsPlansUtilization .

See also: AWS API Documentation

Request Syntax

client.get_savings_plans_utilization(
    TimePeriod={
        'Start': 'string',
        'End': 'string'
    },
    Granularity='DAILY'|'MONTHLY'|'HOURLY',
    Filter={
        'Or': [
            {'... recursive ...'},
        ],
        'And': [
            {'... recursive ...'},
        ],
        'Not': {'... recursive ...'},
        'Dimensions': {
            'Key': 'AZ'|'INSTANCE_TYPE'|'LINKED_ACCOUNT'|'LINKED_ACCOUNT_NAME'|'OPERATION'|'PURCHASE_TYPE'|'REGION'|'SERVICE'|'SERVICE_CODE'|'USAGE_TYPE'|'USAGE_TYPE_GROUP'|'RECORD_TYPE'|'OPERATING_SYSTEM'|'TENANCY'|'SCOPE'|'PLATFORM'|'SUBSCRIPTION_ID'|'LEGAL_ENTITY_NAME'|'DEPLOYMENT_OPTION'|'DATABASE_ENGINE'|'CACHE_ENGINE'|'INSTANCE_TYPE_FAMILY'|'BILLING_ENTITY'|'RESERVATION_ID'|'RESOURCE_ID'|'RIGHTSIZING_TYPE'|'SAVINGS_PLANS_TYPE'|'SAVINGS_PLAN_ARN'|'PAYMENT_OPTION',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'Tags': {
            'Key': 'string',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'CostCategories': {
            'Key': 'string',
            'Values': [
                'string',
            ]
        }
    }
)
type TimePeriod

dict

param TimePeriod

[REQUIRED]

The time period that you want the usage and costs for. The Start date must be within 13 months. The End date must be after the Start date, and before the current date. Future dates can't be used as an End date.

  • Start (string) -- [REQUIRED]

    The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

  • End (string) -- [REQUIRED]

    The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

type Granularity

string

param Granularity

The granularity of the Amazon Web Services utillization data for your Savings Plans.

The GetSavingsPlansUtilization operation supports only DAILY and MONTHLY granularities.

type Filter

dict

param Filter

Filters Savings Plans utilization coverage data for active Savings Plans dimensions. You can filter data with the following dimensions:

  • LINKED_ACCOUNT

  • SAVINGS_PLAN_ARN

  • SAVINGS_PLANS_TYPE

  • REGION

  • PAYMENT_OPTION

  • INSTANCE_TYPE_FAMILY

GetSavingsPlansUtilization uses the same Expression object as the other operations, but only AND is supported among each dimension.

  • Or (list) --

    Return results that match either Dimension object.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • And (list) --

    Return results that match both Dimension objects.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • Not (dict) --

    Return results that don't match a Dimension object.

  • Dimensions (dict) --

    The specific Dimension to use for Expression .

    • Key (string) --

      The names of the metadata types that you can use to filter and group your results. For example, AZ returns a list of Availability Zones.

    • Values (list) --

      The metadata values that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • Tags (dict) --

    The specific Tag to use for Expression .

    • Key (string) --

      The key for the tag.

    • Values (list) --

      The specific value of the tag.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • CostCategories (dict) --

    The filter based on CostCategory values.

    • Key (string) --

      The unique name of the Cost Category.

    • Values (list) --

      The specific value of the Cost Category.

      • (string) --

rtype

dict

returns

Response Syntax

{
    'SavingsPlansUtilizationsByTime': [
        {
            'TimePeriod': {
                'Start': 'string',
                'End': 'string'
            },
            'Utilization': {
                'TotalCommitment': 'string',
                'UsedCommitment': 'string',
                'UnusedCommitment': 'string',
                'UtilizationPercentage': 'string'
            },
            'Savings': {
                'NetSavings': 'string',
                'OnDemandCostEquivalent': 'string'
            },
            'AmortizedCommitment': {
                'AmortizedRecurringCommitment': 'string',
                'AmortizedUpfrontCommitment': 'string',
                'TotalAmortizedCommitment': 'string'
            }
        },
    ],
    'Total': {
        'Utilization': {
            'TotalCommitment': 'string',
            'UsedCommitment': 'string',
            'UnusedCommitment': 'string',
            'UtilizationPercentage': 'string'
        },
        'Savings': {
            'NetSavings': 'string',
            'OnDemandCostEquivalent': 'string'
        },
        'AmortizedCommitment': {
            'AmortizedRecurringCommitment': 'string',
            'AmortizedUpfrontCommitment': 'string',
            'TotalAmortizedCommitment': 'string'
        }
    }
}

Response Structure

  • (dict) --

    • SavingsPlansUtilizationsByTime (list) --

      The amount of cost/commitment you used your Savings Plans. This allows you to specify date ranges.

      • (dict) --

        The amount of Savings Plans utilization, in hours.

        • TimePeriod (dict) --

          The time period that you want the usage and costs for.

          • Start (string) --

            The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

          • End (string) --

            The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

        • Utilization (dict) --

          A ratio of your effectiveness of using existing Savings Plans to apply to workloads that are Savings Plans eligible.

          • TotalCommitment (string) --

            The total amount of Savings Plans commitment that's been purchased in an account (or set of accounts).

          • UsedCommitment (string) --

            The amount of your Savings Plans commitment that was consumed from Savings Plans eligible usage in a specific period.

          • UnusedCommitment (string) --

            The amount of your Savings Plans commitment that was not consumed from Savings Plans eligible usage in a specific period.

          • UtilizationPercentage (string) --

            The amount of UsedCommitment divided by the TotalCommitment for your Savings Plans.

        • Savings (dict) --

          The amount saved by using existing Savings Plans. Savings returns both net savings from Savings Plans as well as the onDemandCostEquivalent of the Savings Plans when considering the utilization rate.

          • NetSavings (string) --

            The savings amount that you are accumulating for the usage that is covered by a Savings Plans, when compared to the On-Demand equivalent of the same usage.

          • OnDemandCostEquivalent (string) --

            How much the amount that the usage would have cost if it was accrued at the On-Demand rate.

        • AmortizedCommitment (dict) --

          The total amortized commitment for a Savings Plans. This includes the sum of the upfront and recurring Savings Plans fees.

          • AmortizedRecurringCommitment (string) --

            The amortized amount of your Savings Plans commitment that was purchased with either a Partial or a NoUpfront .

          • AmortizedUpfrontCommitment (string) --

            The amortized amount of your Savings Plans commitment that was purchased with an Upfront or PartialUpfront Savings Plans.

          • TotalAmortizedCommitment (string) --

            The total amortized amount of your Savings Plans commitment, regardless of your Savings Plans purchase method.

    • Total (dict) --

      The total amount of cost/commitment that you used your Savings Plans, regardless of date ranges.

      • Utilization (dict) --

        A ratio of your effectiveness of using existing Savings Plans to apply to workloads that are Savings Plans eligible.

        • TotalCommitment (string) --

          The total amount of Savings Plans commitment that's been purchased in an account (or set of accounts).

        • UsedCommitment (string) --

          The amount of your Savings Plans commitment that was consumed from Savings Plans eligible usage in a specific period.

        • UnusedCommitment (string) --

          The amount of your Savings Plans commitment that was not consumed from Savings Plans eligible usage in a specific period.

        • UtilizationPercentage (string) --

          The amount of UsedCommitment divided by the TotalCommitment for your Savings Plans.

      • Savings (dict) --

        The amount saved by using existing Savings Plans. Savings returns both net savings from Savings Plans, as well as the onDemandCostEquivalent of the Savings Plans when considering the utilization rate.

        • NetSavings (string) --

          The savings amount that you are accumulating for the usage that is covered by a Savings Plans, when compared to the On-Demand equivalent of the same usage.

        • OnDemandCostEquivalent (string) --

          How much the amount that the usage would have cost if it was accrued at the On-Demand rate.

      • AmortizedCommitment (dict) --

        The total amortized commitment for a Savings Plans. This includes the sum of the upfront and recurring Savings Plans fees.

        • AmortizedRecurringCommitment (string) --

          The amortized amount of your Savings Plans commitment that was purchased with either a Partial or a NoUpfront .

        • AmortizedUpfrontCommitment (string) --

          The amortized amount of your Savings Plans commitment that was purchased with an Upfront or PartialUpfront Savings Plans.

        • TotalAmortizedCommitment (string) --

          The total amortized amount of your Savings Plans commitment, regardless of your Savings Plans purchase method.

GetSavingsPlansUtilizationDetails (updated) Link ¶
Changes (request)
{'Filter': {'Dimensions': {'Key': {'LINKED_ACCOUNT_NAME', 'SERVICE_CODE'},
                           'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH '
                                            '| CONTAINS | CASE_SENSITIVE | '
                                            'CASE_INSENSITIVE']},
            'Tags': {'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH | '
                                      'CONTAINS | CASE_SENSITIVE | '
                                      'CASE_INSENSITIVE']}}}

Retrieves attribute data along with aggregate utilization and savings data for a given time period. This doesn't support granular or grouped data (daily/monthly) in response. You can't retrieve data by dates in a single response similar to GetSavingsPlanUtilization , but you have the option to make multiple calls to GetSavingsPlanUtilizationDetails by providing individual dates. You can use GetDimensionValues in SAVINGS_PLANS to determine the possible dimension values.

Note

GetSavingsPlanUtilizationDetails internally groups data by SavingsPlansArn .

See also: AWS API Documentation

Request Syntax

client.get_savings_plans_utilization_details(
    TimePeriod={
        'Start': 'string',
        'End': 'string'
    },
    Filter={
        'Or': [
            {'... recursive ...'},
        ],
        'And': [
            {'... recursive ...'},
        ],
        'Not': {'... recursive ...'},
        'Dimensions': {
            'Key': 'AZ'|'INSTANCE_TYPE'|'LINKED_ACCOUNT'|'LINKED_ACCOUNT_NAME'|'OPERATION'|'PURCHASE_TYPE'|'REGION'|'SERVICE'|'SERVICE_CODE'|'USAGE_TYPE'|'USAGE_TYPE_GROUP'|'RECORD_TYPE'|'OPERATING_SYSTEM'|'TENANCY'|'SCOPE'|'PLATFORM'|'SUBSCRIPTION_ID'|'LEGAL_ENTITY_NAME'|'DEPLOYMENT_OPTION'|'DATABASE_ENGINE'|'CACHE_ENGINE'|'INSTANCE_TYPE_FAMILY'|'BILLING_ENTITY'|'RESERVATION_ID'|'RESOURCE_ID'|'RIGHTSIZING_TYPE'|'SAVINGS_PLANS_TYPE'|'SAVINGS_PLAN_ARN'|'PAYMENT_OPTION',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'Tags': {
            'Key': 'string',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'CostCategories': {
            'Key': 'string',
            'Values': [
                'string',
            ]
        }
    },
    NextToken='string',
    MaxResults=123
)
type TimePeriod

dict

param TimePeriod

[REQUIRED]

The time period that you want the usage and costs for. The Start date must be within 13 months. The End date must be after the Start date, and before the current date. Future dates can't be used as an End date.

  • Start (string) -- [REQUIRED]

    The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

  • End (string) -- [REQUIRED]

    The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

type Filter

dict

param Filter

Filters Savings Plans utilization coverage data for active Savings Plans dimensions. You can filter data with the following dimensions:

  • LINKED_ACCOUNT

  • SAVINGS_PLAN_ARN

  • REGION

  • PAYMENT_OPTION

  • INSTANCE_TYPE_FAMILY

GetSavingsPlansUtilizationDetails uses the same Expression object as the other operations, but only AND is supported among each dimension.

  • Or (list) --

    Return results that match either Dimension object.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • And (list) --

    Return results that match both Dimension objects.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • Not (dict) --

    Return results that don't match a Dimension object.

  • Dimensions (dict) --

    The specific Dimension to use for Expression .

    • Key (string) --

      The names of the metadata types that you can use to filter and group your results. For example, AZ returns a list of Availability Zones.

    • Values (list) --

      The metadata values that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • Tags (dict) --

    The specific Tag to use for Expression .

    • Key (string) --

      The key for the tag.

    • Values (list) --

      The specific value of the tag.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • CostCategories (dict) --

    The filter based on CostCategory values.

    • Key (string) --

      The unique name of the Cost Category.

    • Values (list) --

      The specific value of the Cost Category.

      • (string) --

type NextToken

string

param NextToken

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

type MaxResults

integer

param MaxResults

The number of items to be returned in a response. The default is 20 , with a minimum value of 1 .

rtype

dict

returns

Response Syntax

{
    'SavingsPlansUtilizationDetails': [
        {
            'SavingsPlanArn': 'string',
            'Attributes': {
                'string': 'string'
            },
            'Utilization': {
                'TotalCommitment': 'string',
                'UsedCommitment': 'string',
                'UnusedCommitment': 'string',
                'UtilizationPercentage': 'string'
            },
            'Savings': {
                'NetSavings': 'string',
                'OnDemandCostEquivalent': 'string'
            },
            'AmortizedCommitment': {
                'AmortizedRecurringCommitment': 'string',
                'AmortizedUpfrontCommitment': 'string',
                'TotalAmortizedCommitment': 'string'
            }
        },
    ],
    'Total': {
        'Utilization': {
            'TotalCommitment': 'string',
            'UsedCommitment': 'string',
            'UnusedCommitment': 'string',
            'UtilizationPercentage': 'string'
        },
        'Savings': {
            'NetSavings': 'string',
            'OnDemandCostEquivalent': 'string'
        },
        'AmortizedCommitment': {
            'AmortizedRecurringCommitment': 'string',
            'AmortizedUpfrontCommitment': 'string',
            'TotalAmortizedCommitment': 'string'
        }
    },
    'TimePeriod': {
        'Start': 'string',
        'End': 'string'
    },
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • SavingsPlansUtilizationDetails (list) --

      Retrieves a single daily or monthly Savings Plans utilization rate and details for your account.

      • (dict) --

        A single daily or monthly Savings Plans utilization rate, and details for your account. Master accounts in an organization have access to member accounts. You can use GetDimensionValues to determine the possible dimension values.

        • SavingsPlanArn (string) --

          The unique Amazon Resource Name (ARN) for a particular Savings Plan.

        • Attributes (dict) --

          The attribute that applies to a specific Dimension .

          • (string) --

            • (string) --

        • Utilization (dict) --

          A ratio of your effectiveness of using existing Savings Plans to apply to workloads that are Savings Plans eligible.

          • TotalCommitment (string) --

            The total amount of Savings Plans commitment that's been purchased in an account (or set of accounts).

          • UsedCommitment (string) --

            The amount of your Savings Plans commitment that was consumed from Savings Plans eligible usage in a specific period.

          • UnusedCommitment (string) --

            The amount of your Savings Plans commitment that was not consumed from Savings Plans eligible usage in a specific period.

          • UtilizationPercentage (string) --

            The amount of UsedCommitment divided by the TotalCommitment for your Savings Plans.

        • Savings (dict) --

          The amount saved by using existing Savings Plans. Savings returns both net savings from savings plans as well as the onDemandCostEquivalent of the Savings Plans when considering the utilization rate.

          • NetSavings (string) --

            The savings amount that you are accumulating for the usage that is covered by a Savings Plans, when compared to the On-Demand equivalent of the same usage.

          • OnDemandCostEquivalent (string) --

            How much the amount that the usage would have cost if it was accrued at the On-Demand rate.

        • AmortizedCommitment (dict) --

          The total amortized commitment for a Savings Plans. Includes the sum of the upfront and recurring Savings Plans fees.

          • AmortizedRecurringCommitment (string) --

            The amortized amount of your Savings Plans commitment that was purchased with either a Partial or a NoUpfront .

          • AmortizedUpfrontCommitment (string) --

            The amortized amount of your Savings Plans commitment that was purchased with an Upfront or PartialUpfront Savings Plans.

          • TotalAmortizedCommitment (string) --

            The total amortized amount of your Savings Plans commitment, regardless of your Savings Plans purchase method.

    • Total (dict) --

      The total Savings Plans utilization, regardless of time period.

      • Utilization (dict) --

        A ratio of your effectiveness of using existing Savings Plans to apply to workloads that are Savings Plans eligible.

        • TotalCommitment (string) --

          The total amount of Savings Plans commitment that's been purchased in an account (or set of accounts).

        • UsedCommitment (string) --

          The amount of your Savings Plans commitment that was consumed from Savings Plans eligible usage in a specific period.

        • UnusedCommitment (string) --

          The amount of your Savings Plans commitment that was not consumed from Savings Plans eligible usage in a specific period.

        • UtilizationPercentage (string) --

          The amount of UsedCommitment divided by the TotalCommitment for your Savings Plans.

      • Savings (dict) --

        The amount saved by using existing Savings Plans. Savings returns both net savings from Savings Plans, as well as the onDemandCostEquivalent of the Savings Plans when considering the utilization rate.

        • NetSavings (string) --

          The savings amount that you are accumulating for the usage that is covered by a Savings Plans, when compared to the On-Demand equivalent of the same usage.

        • OnDemandCostEquivalent (string) --

          How much the amount that the usage would have cost if it was accrued at the On-Demand rate.

      • AmortizedCommitment (dict) --

        The total amortized commitment for a Savings Plans. This includes the sum of the upfront and recurring Savings Plans fees.

        • AmortizedRecurringCommitment (string) --

          The amortized amount of your Savings Plans commitment that was purchased with either a Partial or a NoUpfront .

        • AmortizedUpfrontCommitment (string) --

          The amortized amount of your Savings Plans commitment that was purchased with an Upfront or PartialUpfront Savings Plans.

        • TotalAmortizedCommitment (string) --

          The total amortized amount of your Savings Plans commitment, regardless of your Savings Plans purchase method.

    • TimePeriod (dict) --

      The time period that you want the usage and costs for.

      • Start (string) --

        The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

      • End (string) --

        The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

    • NextToken (string) --

      The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

GetUsageForecast (updated) Link ¶
Changes (request)
{'Filter': {'Dimensions': {'Key': {'LINKED_ACCOUNT_NAME', 'SERVICE_CODE'},
                           'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH '
                                            '| CONTAINS | CASE_SENSITIVE | '
                                            'CASE_INSENSITIVE']},
            'Tags': {'MatchOptions': ['EQUALS | STARTS_WITH | ENDS_WITH | '
                                      'CONTAINS | CASE_SENSITIVE | '
                                      'CASE_INSENSITIVE']}}}

Retrieves a forecast for how much Amazon Web Services predicts that you will use over the forecast time period that you select, based on your past usage.

See also: AWS API Documentation

Request Syntax

client.get_usage_forecast(
    TimePeriod={
        'Start': 'string',
        'End': 'string'
    },
    Metric='BLENDED_COST'|'UNBLENDED_COST'|'AMORTIZED_COST'|'NET_UNBLENDED_COST'|'NET_AMORTIZED_COST'|'USAGE_QUANTITY'|'NORMALIZED_USAGE_AMOUNT',
    Granularity='DAILY'|'MONTHLY'|'HOURLY',
    Filter={
        'Or': [
            {'... recursive ...'},
        ],
        'And': [
            {'... recursive ...'},
        ],
        'Not': {'... recursive ...'},
        'Dimensions': {
            'Key': 'AZ'|'INSTANCE_TYPE'|'LINKED_ACCOUNT'|'LINKED_ACCOUNT_NAME'|'OPERATION'|'PURCHASE_TYPE'|'REGION'|'SERVICE'|'SERVICE_CODE'|'USAGE_TYPE'|'USAGE_TYPE_GROUP'|'RECORD_TYPE'|'OPERATING_SYSTEM'|'TENANCY'|'SCOPE'|'PLATFORM'|'SUBSCRIPTION_ID'|'LEGAL_ENTITY_NAME'|'DEPLOYMENT_OPTION'|'DATABASE_ENGINE'|'CACHE_ENGINE'|'INSTANCE_TYPE_FAMILY'|'BILLING_ENTITY'|'RESERVATION_ID'|'RESOURCE_ID'|'RIGHTSIZING_TYPE'|'SAVINGS_PLANS_TYPE'|'SAVINGS_PLAN_ARN'|'PAYMENT_OPTION',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'Tags': {
            'Key': 'string',
            'Values': [
                'string',
            ],
            'MatchOptions': [
                'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
            ]
        },
        'CostCategories': {
            'Key': 'string',
            'Values': [
                'string',
            ]
        }
    },
    PredictionIntervalLevel=123
)
type TimePeriod

dict

param TimePeriod

[REQUIRED]

The start and end dates of the period that you want to retrieve usage forecast for. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01 , then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01 .

  • Start (string) -- [REQUIRED]

    The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

  • End (string) -- [REQUIRED]

    The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

type Metric

string

param Metric

[REQUIRED]

Which metric Cost Explorer uses to create your forecast.

Valid values for a GetUsageForecast call are the following:

  • USAGE_QUANTITY

  • NORMALIZED_USAGE_AMOUNT

type Granularity

string

param Granularity

[REQUIRED]

How granular you want the forecast to be. You can get 3 months of DAILY forecasts or 12 months of MONTHLY forecasts.

The GetUsageForecast operation supports only DAILY and MONTHLY granularities.

type Filter

dict

param Filter

The filters that you want to use to filter your forecast. Cost Explorer API supports all of the Cost Explorer filters.

  • Or (list) --

    Return results that match either Dimension object.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • And (list) --

    Return results that match both Dimension objects.

    • (dict) --

      Use Expression to filter by cost or by usage. There are two patterns:

      • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

      • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

      Note

      Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

      { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

      Note

      For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

  • Not (dict) --

    Return results that don't match a Dimension object.

  • Dimensions (dict) --

    The specific Dimension to use for Expression .

    • Key (string) --

      The names of the metadata types that you can use to filter and group your results. For example, AZ returns a list of Availability Zones.

    • Values (list) --

      The metadata values that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • Tags (dict) --

    The specific Tag to use for Expression .

    • Key (string) --

      The key for the tag.

    • Values (list) --

      The specific value of the tag.

      • (string) --

    • MatchOptions (list) --

      The match options that you can use to filter your results. MatchOptions is only applicable for only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

      • (string) --

  • CostCategories (dict) --

    The filter based on CostCategory values.

    • Key (string) --

      The unique name of the Cost Category.

    • Values (list) --

      The specific value of the Cost Category.

      • (string) --

type PredictionIntervalLevel

integer

param PredictionIntervalLevel

Cost Explorer always returns the mean forecast as a single point. You can request a prediction interval around the mean by specifying a confidence level. The higher the confidence level, the more confident Cost Explorer is about the actual value falling in the prediction interval. Higher confidence levels result in wider prediction intervals.

rtype

dict

returns

Response Syntax

{
    'Total': {
        'Amount': 'string',
        'Unit': 'string'
    },
    'ForecastResultsByTime': [
        {
            'TimePeriod': {
                'Start': 'string',
                'End': 'string'
            },
            'MeanValue': 'string',
            'PredictionIntervalLowerBound': 'string',
            'PredictionIntervalUpperBound': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • Total (dict) --

      How much you're forecasted to use over the forecast period.

      • Amount (string) --

        The actual number that represents the metric.

      • Unit (string) --

        The unit that the metric is given in.

    • ForecastResultsByTime (list) --

      The forecasts for your query, in order. For DAILY forecasts, this is a list of days. For MONTHLY forecasts, this is a list of months.

      • (dict) --

        The forecast created for your query.

        • TimePeriod (dict) --

          The period of time that the forecast covers.

          • Start (string) --

            The beginning of the time period that you want the usage and costs for. The start date is inclusive. For example, if start is 2017-01-01 , AWS retrieves cost and usage data starting at 2017-01-01 up to the end date.

          • End (string) --

            The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if end is 2017-05-01 , AWS retrieves cost and usage data from the start date up to, but not including, 2017-05-01 .

        • MeanValue (string) --

          The mean value of the forecast.

        • PredictionIntervalLowerBound (string) --

          The lower limit for the prediction interval.

        • PredictionIntervalUpperBound (string) --

          The upper limit for the prediction interval.

ListCostCategoryDefinitions (updated) Link ¶
Changes (request, response)
Request
{'MaxResults': 'integer'}
Response
{'CostCategoryReferences': {'NumberOfRules': 'integer'}}

Returns the name, ARN, NumberOfRules and effective dates of all Cost Categories defined in the account. You have the option to use EffectiveOn to return a list of Cost Categories that were active on a specific date. If there is no EffectiveOn specified, you’ll see Cost Categories that are effective on the current date. If Cost Category is still effective, EffectiveEnd is omitted in the response. ListCostCategoryDefinitions supports pagination. The request can have a MaxResults range up to 100.

See also: AWS API Documentation

Request Syntax

client.list_cost_category_definitions(
    EffectiveOn='string',
    NextToken='string',
    MaxResults=123
)
type EffectiveOn

string

param EffectiveOn

The date when the Cost Category was effective.

type NextToken

string

param NextToken

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

type MaxResults

integer

param MaxResults

The number of entries a paginated response contains.

rtype

dict

returns

Response Syntax

{
    'CostCategoryReferences': [
        {
            'CostCategoryArn': 'string',
            'Name': 'string',
            'EffectiveStart': 'string',
            'EffectiveEnd': 'string',
            'NumberOfRules': 123
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • CostCategoryReferences (list) --

      A reference to a Cost Category containing enough information to identify the Cost Category.

      • (dict) --

        A reference to a Cost Category containing only enough information to identify the Cost Category.

        You can use this information to retrieve the full Cost Category information using DescribeCostCategory .

        • CostCategoryArn (string) --

          The unique identifier for your Cost Category.

        • Name (string) --

          The unique name of the Cost Category.

        • EffectiveStart (string) --

          The Cost Category's effective start date.

        • EffectiveEnd (string) --

          The Cost Category's effective end date.

        • NumberOfRules (integer) --

          The number of rules associated with a specific Cost Category.

    • NextToken (string) --

      The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

UpdateCostCategoryDefinition (updated) Link ¶
Changes (request)
{'Rules': {'Rule': {'Dimensions': {'Key': {'LINKED_ACCOUNT_NAME',
                                           'SERVICE_CODE'},
                                   'MatchOptions': ['EQUALS | STARTS_WITH | '
                                                    'ENDS_WITH | CONTAINS | '
                                                    'CASE_SENSITIVE | '
                                                    'CASE_INSENSITIVE']},
                    'Tags': {'MatchOptions': ['EQUALS | STARTS_WITH | '
                                              'ENDS_WITH | CONTAINS | '
                                              'CASE_SENSITIVE | '
                                              'CASE_INSENSITIVE']}}}}

Updates an existing Cost Category. Changes made to the Cost Category rules will be used to categorize the current month’s expenses and future expenses. This won’t change categorization for the previous months.

See also: AWS API Documentation

Request Syntax

client.update_cost_category_definition(
    CostCategoryArn='string',
    RuleVersion='CostCategoryExpression.v1',
    Rules=[
        {
            'Value': 'string',
            'Rule': {
                'Or': [
                    {'... recursive ...'},
                ],
                'And': [
                    {'... recursive ...'},
                ],
                'Not': {'... recursive ...'},
                'Dimensions': {
                    'Key': 'AZ'|'INSTANCE_TYPE'|'LINKED_ACCOUNT'|'LINKED_ACCOUNT_NAME'|'OPERATION'|'PURCHASE_TYPE'|'REGION'|'SERVICE'|'SERVICE_CODE'|'USAGE_TYPE'|'USAGE_TYPE_GROUP'|'RECORD_TYPE'|'OPERATING_SYSTEM'|'TENANCY'|'SCOPE'|'PLATFORM'|'SUBSCRIPTION_ID'|'LEGAL_ENTITY_NAME'|'DEPLOYMENT_OPTION'|'DATABASE_ENGINE'|'CACHE_ENGINE'|'INSTANCE_TYPE_FAMILY'|'BILLING_ENTITY'|'RESERVATION_ID'|'RESOURCE_ID'|'RIGHTSIZING_TYPE'|'SAVINGS_PLANS_TYPE'|'SAVINGS_PLAN_ARN'|'PAYMENT_OPTION',
                    'Values': [
                        'string',
                    ],
                    'MatchOptions': [
                        'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
                    ]
                },
                'Tags': {
                    'Key': 'string',
                    'Values': [
                        'string',
                    ],
                    'MatchOptions': [
                        'EQUALS'|'STARTS_WITH'|'ENDS_WITH'|'CONTAINS'|'CASE_SENSITIVE'|'CASE_INSENSITIVE',
                    ]
                },
                'CostCategories': {
                    'Key': 'string',
                    'Values': [
                        'string',
                    ]
                }
            }
        },
    ]
)
type CostCategoryArn

string

param CostCategoryArn

[REQUIRED]

The unique identifier for your Cost Category.

type RuleVersion

string

param RuleVersion

[REQUIRED]

The rule schema version in this particular Cost Category.

type Rules

list

param Rules

[REQUIRED]

The Expression object used to categorize costs. For more information, see CostCategoryRule.

  • (dict) --

    Rules are processed in order. If there are multiple rules that match the line item, then the first rule to match is used to determine that Cost Category value.

    • Value (string) -- [REQUIRED]

      The value a line item will be categorized as, if it matches the rule.

    • Rule (dict) -- [REQUIRED]

      An Expression object used to categorize costs. This supports dimensions, Tags, and nested expressions. Currently the only dimensions supported are LINKED_ACCOUNT , SERVICE_CODE , RECORD_TYPE , and LINKED_ACCOUNT_NAME .

      Root level OR is not supported. We recommend that you create a separate rule instead.

      RECORD_TYPE is a dimension used for Cost Explorer APIs, and is also supported for Cost Category expressions. This dimension uses different terms, depending on whether you're using the console or API/JSON editor. For a detailed comparison, see Term Comparisons in the AWS Billing and Cost Management User Guide .

      • Or (list) --

        Return results that match either Dimension object.

        • (dict) --

          Use Expression to filter by cost or by usage. There are two patterns:

          • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

          • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

          Note

          Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

          { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

          Note

          For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

      • And (list) --

        Return results that match both Dimension objects.

        • (dict) --

          Use Expression to filter by cost or by usage. There are two patterns:

          • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1 . The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

          • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer) . The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }

          Note

          Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error.

          { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

          Note

          For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT , REGION , or RIGHTSIZING_TYPE .

      • Not (dict) --

        Return results that don't match a Dimension object.

      • Dimensions (dict) --

        The specific Dimension to use for Expression .

        • Key (string) --

          The names of the metadata types that you can use to filter and group your results. For example, AZ returns a list of Availability Zones.

        • Values (list) --

          The metadata values that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

          • (string) --

        • MatchOptions (list) --

          The match options that you can use to filter your results. MatchOptions is only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

          • (string) --

      • Tags (dict) --

        The specific Tag to use for Expression .

        • Key (string) --

          The key for the tag.

        • Values (list) --

          The specific value of the tag.

          • (string) --

        • MatchOptions (list) --

          The match options that you can use to filter your results. MatchOptions is only applicable for only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE .

          • (string) --

      • CostCategories (dict) --

        The filter based on CostCategory values.

        • Key (string) --

          The unique name of the Cost Category.

        • Values (list) --

          The specific value of the Cost Category.

          • (string) --

rtype

dict

returns

Response Syntax

{
    'CostCategoryArn': 'string',
    'EffectiveStart': 'string'
}

Response Structure

  • (dict) --

    • CostCategoryArn (string) --

      The unique identifier for your Cost Category.

    • EffectiveStart (string) --

      The Cost Category's effective start date.