Module Awso_ce.ValuesSource

Sourceval service : Awso.Service.t
Sourceval apiVersion : string
Sourceval endpointPrefix : string
Sourceval serviceFullName : string
Sourceval signatureVersion : string
Sourceval protocol : string
Sourceval globalEndpoint : string
Sourceval serviceAbbreviation : string
Sourceval targetPrefix : string
Sourceval simple_to_json : ('a -> Awso__Botodata.value) -> 'a -> Yojson.Safe.t
Sourceval composed_to_json : ('a -> Awso__Botodata.value) -> 'a -> Yojson.Safe.t
Sourceval to_query : ('a -> Awso.Client.Query.value) -> 'a -> Awso.Client.Query.t
Sourceval structure_to_value_aux : ('a * 'b option) list -> f:(('a * 'b) list -> 'c) -> [> `Structure of 'c ]
Sourceval structure_to_value : ('a * 'b option) list -> [> `Structure of ('a * 'b) list ]
Sourceval structure_to_wrapped_value : wrapper:'a -> response:'a -> ('b * 'c option) list -> [> `Structure of ('a * [> `Structure of ('b * 'c) list ]) list ]
Sourcemodule AccountId : sig ... end
Sourcemodule AccountScope : sig ... end
Sourcemodule AmortizedRecurringFee : sig ... end
Sourcemodule AmortizedUpfrontFee : sig ... end
Sourcemodule AnalysesPageSize : sig ... end
Sourcemodule ZonedDateTime : sig ... end

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

Sourcemodule GenericString : sig ... end

Contains the hourly metrics for the given recommendation over the lookback period.

Sourcemodule MetricsOverLookbackPeriod : sig ... end

Details about the Savings Plans purchase analysis.

Sourcemodule AnalysisDetails : sig ... end

Details about the analysis.

Sourcemodule AnalysisId : sig ... end
Sourcemodule AnalysisIds : sig ... end
Sourcemodule ErrorMessage : sig ... end
Sourcemodule AnalysisNotFoundException : sig ... end

The requested analysis can't be found.

Sourcemodule AnalysisStatus : sig ... end
Sourcemodule ErrorCode : sig ... end
Sourcemodule SavingsPlansId : sig ... end
Sourcemodule SavingsPlansToExclude : sig ... end
Sourcemodule TermInYears : sig ... end
Sourcemodule SupportedSavingsPlansType : sig ... end
Sourcemodule SavingsPlansCommitment : sig ... end
Sourcemodule PaymentOption : sig ... end
Sourcemodule SavingsPlans : sig ... end

The Savings Plans commitment details.

Sourcemodule SavingsPlansToAdd : sig ... end
Sourcemodule YearMonthDay : sig ... end
Sourcemodule DateInterval : sig ... end

The time period of the request.

Sourcemodule AnalysisType : sig ... end

The configuration for the Savings Plans purchase analysis.

The configuration for the commitment purchase analysis.

Sourcemodule AnalysisSummary : sig ... end

A summary of the analysis.

Sourcemodule AnalysisSummaryList : sig ... end
Sourcemodule GenericDouble : sig ... end
Sourcemodule RootCauseImpact : sig ... end

The dollar value of the root cause.

Sourcemodule RootCause : sig ... end

The combination of Amazon Web Services service, linked account, linked account name, Region, and usage type where a cost anomaly is observed, along with the dollar and percentage amount of the anomaly impact. The linked account name will only be available when the account name can be identified.

Sourcemodule RootCauses : sig ... end
Sourcemodule NullableNonNegativeDouble : sig ... end
Sourcemodule Impact : sig ... end

The dollar value of the anomaly.

Sourcemodule AnomalyScore : sig ... end

Quantifies the anomaly. The higher score means that it's more anomalous.

Sourcemodule AnomalyFeedbackType : sig ... end
Sourcemodule Anomaly : sig ... end

An unusual cost pattern. This consists of the detailed metadata and the current status of the anomaly object.

Sourcemodule Anomalies : sig ... end
Sourcemodule AnomalyDateInterval : sig ... end

The time period for an anomaly.

Sourcemodule NonNegativeInteger : sig ... end
Sourcemodule MonitorType : sig ... end
Sourcemodule MonitorDimension : sig ... end
Sourcemodule Value : sig ... end
Sourcemodule Values : sig ... end
Sourcemodule TagKey : sig ... end
Sourcemodule MatchOption : sig ... end
Sourcemodule MatchOptions : sig ... end
Sourcemodule TagValues : sig ... end

The values that are available for a tag. If Values and Key aren't specified, the ABSENT MatchOption is applied to all tags. That is, it's filtered on resources with no tags. If Key is provided and Values isn't specified, the ABSENT MatchOption is applied to the tag Key only. That is, it's filtered on resources without the given tag key.

Sourcemodule Dimension : sig ... end
Sourcemodule DimensionValues : sig ... end

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

Sourcemodule CostCategoryName : sig ... end

The unique name of the cost category.

Sourcemodule CostCategoryValues : sig ... end

The Cost Categories values used for filtering the costs. If Values and Key are not specified, the ABSENT MatchOption is applied to all Cost Categories. That is, it filters on resources that aren't mapped to any Cost Categories. If Values is provided and Key isn't specified, the ABSENT MatchOption is applied to the Cost Categories Key only. That is, it filters on resources without the given Cost Categories key.

module Expression : sig ... end

Use Expression to filter in various Cost Explorer APIs. Not all Expression types are supported in each API. Refer to the documentation for each specific API to see what is supported. There are two patterns: Simple dimension values. There are three types of simple dimension values: CostCategories, Tags, and Dimensions. Specify the CostCategories field to define a filter that acts on Cost Categories. Specify the Tags field to define a filter that acts on Cost Allocation Tags. Specify the Dimensions field to define a filter that acts on the DimensionValues . For each filter type, 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. For GetRightsizingRecommendation, the Region is a full name (for example, REGION==US East (N. Virginia). The corresponding Expression for this example is as follows: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] } } As shown in the previous example, lists of dimension values are combined with OR when applying the filter. You can also set different match options to further control how the filter behaves. Not all APIs support match options. Refer to the documentation for each specific API to see what is supported. For example, you can filter for linked account names that start with "a". The corresponding Expression for this example is as follows: { "Dimensions": { "Key": "LINKED_ACCOUNT_NAME", "MatchOptions": [ "STARTS_WITH" ], "Values": [ "a" ] } } Compound Expression types 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. By doing this, you can filter by more advanced options. For example, you can filter by ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer). The corresponding Expression for this example is as follows: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] } 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": [ ... ], "Dimensions": { "Key": "USAGE_TYPE", "Values": [ "DataTransfer" ] } } The following is an example of the corresponding error message: "Expression has more than one roots. Only one root operator is allowed for each expression: And, Or, Not, Dimensions, Tags, CostCategories" For the GetRightsizingRecommendation action, a combination of OR and NOT isn't supported. OR isn't supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT, REGION, or RIGHTSIZING_TYPE. For the GetReservationPurchaseRecommendation action, only NOT is supported. AND and OR aren't supported. Dimensions are limited to LINKED_ACCOUNT.

module Expressions : sig ... end
Sourcemodule AnomalyMonitor : sig ... end

This object continuously inspects your account's cost data for anomalies. It's based on MonitorType and MonitorSpecification. The content consists of detailed metadata and the current status of the monitor object.

Sourcemodule AnomalyMonitors : sig ... end
Sourcemodule SubscriberType : sig ... end
Sourcemodule SubscriberStatus : sig ... end
Sourcemodule SubscriberAddress : sig ... end
Sourcemodule Subscriber : sig ... end

The recipient of AnomalySubscription notifications.

Sourcemodule Subscribers : sig ... end
Sourcemodule Arn : sig ... end
Sourcemodule MonitorArnList : sig ... end
Sourcemodule AnomalySubscription : sig ... end

An AnomalySubscription resource (also referred to as an alert subscription) sends notifications about specific anomalies that meet an alerting criteria defined by you. You can specify the frequency of the alerts and the subscribers to notify. Anomaly subscriptions can be associated with one or more AnomalyMonitor resources, and they only send notifications about anomalies detected by those associated monitors. You can also configure a threshold to further control which anomalies are included in the notifications. Anomalies that don’t exceed the chosen threshold and therefore don’t trigger notifications from an anomaly subscription will still be available on the console and from the GetAnomalies API.

Sourcemodule AnomalySubscriptions : sig ... end
Sourcemodule NonNegativeLong : sig ... end
Sourcemodule ApproximationDimension : sig ... end
Sourcemodule AttributeType : sig ... end
Sourcemodule AttributeValue : sig ... end
Sourcemodule Attributes : sig ... end

A request to backfill is already in progress. Once the previous request is complete, you can create another request.

Sourcemodule BillExpirationException : sig ... end

The requested report expired. Update the date interval and try again.

Sourcemodule BillingViewArn : sig ... end

The billing view status must be HEALTHY to perform this action. Try again when the status is HEALTHY.

Sourcemodule ComparisonMetricValue : sig ... end

Contains cost or usage metric values for comparing two time periods. Each value includes amounts for the baseline and comparison time periods, their difference, and the unit of measurement.

Sourcemodule MetricName : sig ... end
Sourcemodule ComparisonMetrics : sig ... end
Sourcemodule Context : sig ... end
Sourcemodule CostAllocationTagType : sig ... end
Sourcemodule CostAllocationTagStatus : sig ... end
Sourcemodule CostAllocationTag : sig ... end

The cost allocation tag structure. This includes detailed metadata for the CostAllocationTag object.

The cost allocation tag backfill request structure that contains metadata and details of a certain backfill.

Sourcemodule CostAllocationTagKeyList : sig ... end
Sourcemodule CostAllocationTagList : sig ... end

The cost allocation tag status. The status of a key can either be active or inactive.

Sourcemodule CostAndUsageComparison : sig ... end

Represents a comparison of cost and usage metrics between two time periods.

Sourcemodule CostAndUsageComparisons : sig ... end
Sourcemodule CostCategoryValue : sig ... end

The default value for the cost category.

The parameters for a split charge method.

Use the split charge rule to split the cost of one cost category value across several other target values.

Sourcemodule CostCategoryRuleType : sig ... end

When you create or update a cost category, you can define the CostCategoryRule rule type as INHERITED_VALUE. This rule type adds the flexibility to define a rule that dynamically inherits the cost category value from the dimension value that's defined by CostCategoryInheritedValueDimension. For example, suppose that you want to dynamically group costs that are based on the value of a specific tag key. First, choose an inherited value rule type, and then choose the tag dimension and specify the tag key to use.

Sourcemodule CostCategoryRule : sig ... end

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.

Sourcemodule CostCategoryRulesList : sig ... end
Sourcemodule CostCategoryRuleVersion : sig ... end
Sourcemodule CostCategoryStatus : sig ... end

The list of processing statuses for Cost Management products for a specific cost category.

Sourcemodule CostCategory : sig ... end

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

Sourcemodule CostCategoryMaxResults : sig ... end
Sourcemodule CostCategoryNamesList : sig ... end
Sourcemodule ResourceType : sig ... end
Sourcemodule ResourceTypes : sig ... end
Sourcemodule CostCategoryValuesList : sig ... end
Sourcemodule CostCategoryReference : sig ... end

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.

Sourcemodule GenericArn : sig ... end

A reference to a cost category association that contains information on an associated resource.

Sourcemodule CostDriver : sig ... end

Represents factors that contribute to cost variations between the baseline and comparison time periods, including the type of driver, an identifier of the driver, and associated metrics.

Sourcemodule CostDrivers : sig ... end
Sourcemodule CostComparisonDriver : sig ... end

Represents a collection of cost drivers and their associated metrics for cost comparison analysis.

Sourcemodule CostComparisonDrivers : sig ... end
Sourcemodule ReservedNormalizedUnits : sig ... end
Sourcemodule OnDemandNormalizedUnits : sig ... end
Sourcemodule CoverageNormalizedUnits : sig ... end

The amount of instance usage, in normalized units. You can use normalized units to see your EC2 usage for multiple sizes of instances in a uniform way. For example, suppose that you run an xlarge instance and a 2xlarge instance. If you run both instances for the same amount of time, the 2xlarge instance uses twice as much of your reservation as the xlarge instance, even though both instances show only one instance-hour. When you use normalized units instead of instance-hours, the xlarge instance used 8 normalized units, and the 2xlarge instance used 16 normalized units. For more information, see Modifying Reserved Instances in the Amazon Elastic Compute Cloud User Guide for Linux Instances.

Sourcemodule TotalRunningHours : sig ... end
Sourcemodule ReservedHours : sig ... end
Sourcemodule OnDemandHours : sig ... end
Sourcemodule CoverageHoursPercentage : sig ... end
Sourcemodule CoverageHours : sig ... end

How long a running instance either used a reservation or was On-Demand.

Sourcemodule OnDemandCost : sig ... end
Sourcemodule CoverageCost : sig ... end

How much it costs to run an instance.

Sourcemodule Coverage : sig ... end

The amount of instance usage that a reservation covered.

Sourcemodule ReservationCoverageGroup : sig ... end

A group of reservations that share a set of attributes.

Sourcemodule ReservationCoverageGroups : sig ... end
Sourcemodule CoverageByTime : sig ... end

Reservation coverage for a specified period, in hours.

Sourcemodule CoveragesByTime : sig ... end
Sourcemodule ResourceTagValue : sig ... end
Sourcemodule ResourceTagKey : sig ... end
Sourcemodule ResourceTag : sig ... end

The tag structure that contains a tag key and value. Tagging is supported only for the following Cost Explorer resource types: AnomalyMonitor , AnomalySubscription , CostCategory .

Sourcemodule ResourceTagList : sig ... end

Creates a new cost anomaly detection monitor with the requested type and monitor specification.

Sourcemodule LimitExceededException : sig ... end

You made too many calls in a short period of time. Try again later.

Creates a new cost anomaly detection monitor with the requested type and monitor specification.

Adds an alert subscription to a cost anomaly detection monitor. You can use each subscription to define subscribers with email or SNS notifications. Email subscribers can set an absolute or percentage threshold and a time frequency for receiving notifications.

Sourcemodule UnknownMonitorException : sig ... end

The cost anomaly monitor does not exist for the account.

Adds an alert subscription to a cost anomaly detection monitor. You can use each subscription to define subscribers with email or SNS notifications. Email subscribers can set an absolute or percentage threshold and a time frequency for receiving notifications.

Creates a new cost category with the requested name and rules.

You've reached the limit on the number of resources you can create, or exceeded the size of an individual resource.

Creates a new cost category with the requested name and rules.

Sourcemodule TagValuesList : sig ... end

The network field that contains a list of network metrics that are associated with the current instance.

Sourcemodule EBSResourceUtilization : sig ... end

The EBS field that contains a list of EBS metrics that are associated with the current instance.

Sourcemodule DiskResourceUtilization : sig ... end

The field that contains a list of disk (local storage) metrics that are associated with the current instance.

Sourcemodule EC2ResourceUtilization : sig ... end

Utilization metrics for the instance.

Sourcemodule ResourceUtilization : sig ... end

Resource utilization of current resource.

Sourcemodule EC2ResourceDetails : sig ... end

Details on the Amazon EC2 Resource.

Sourcemodule ResourceDetails : sig ... end

Details for the resource.

Sourcemodule CurrentInstance : sig ... end

Context about the current instance.

Sourcemodule DataUnavailableException : sig ... end

The requested data is unavailable.

Deletes a cost anomaly monitor.

Deletes a cost anomaly monitor.

Deletes a cost anomaly subscription.

The cost anomaly subscription does not exist for the account.

Deletes a cost anomaly subscription.

Deletes a cost category. Expenses from this month going forward will no longer be categorized with this cost category.

Sourcemodule ResourceNotFoundException : sig ... end

The specified ARN in the request doesn't exist.

Deletes a cost category. Expenses from this month going forward will no longer be categorized with this cost category.

Returns the name, Amazon Resource 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's active on a specific date. If there's no EffectiveOn specified, you see a Cost Category that's effective on the current date. If cost category is still effective, EffectiveEnd is omitted in the response.

Returns the name, Amazon Resource 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's active on a specific date. If there's no EffectiveOn specified, you see a Cost Category that's effective on the current date. If cost category is still effective, EffectiveEnd is omitted in the response.

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

Sourcemodule DynamoDBCapacityDetails : sig ... end

The DynamoDB reservations that Amazon Web Services recommends that you purchase.

Sourcemodule GenericBoolean : sig ... end
Sourcemodule EC2InstanceDetails : sig ... end

Details about the Amazon EC2 reservations that Amazon Web Services recommends that you purchase.

Sourcemodule OfferingClass : sig ... end
Sourcemodule EC2Specification : sig ... end

The Amazon EC2 hardware specifications that you want Amazon Web Services to provide recommendations for.

Sourcemodule ESInstanceDetails : sig ... end

Details about the Amazon OpenSearch Service reservations that Amazon Web Services recommends that you purchase.

Details about the Amazon ElastiCache reservations that Amazon Web Services recommends that you purchase.

Sourcemodule Entity : sig ... end
Sourcemodule Estimated : sig ... end
Sourcemodule FindingReasonCode : sig ... end
Sourcemodule FindingReasonCodes : sig ... end
Sourcemodule ForecastResult : sig ... end

The forecast that's created for your query.

Sourcemodule ForecastResultsByTime : sig ... end
Sourcemodule GenerationExistsException : sig ... end

A request to generate a recommendation or analysis is already in progress.

Sourcemodule GenerationStatus : sig ... end
Sourcemodule RecommendationId : sig ... end
Sourcemodule GenerationSummary : sig ... end

The summary of the Savings Plans recommendation generation.

Sourcemodule GenerationSummaryList : sig ... end
Sourcemodule NumericOperator : sig ... end
Sourcemodule TotalImpactFilter : sig ... end

Filters cost anomalies based on the total impact.

Sourcemodule PageSize : sig ... end
Sourcemodule NextPageToken : sig ... end
Sourcemodule GetAnomaliesRequest : sig ... end

Retrieves all of the cost anomalies detected on your account during the time period that's specified by the DateInterval object. Anomalies are available for up to 90 days.

Sourcemodule InvalidNextTokenException : sig ... end

The pagination token is invalid. Try again without a pagination token.

Sourcemodule GetAnomaliesResponse : sig ... end

Retrieves all of the cost anomalies detected on your account during the time period that's specified by the DateInterval object. Anomalies are available for up to 90 days.

Sourcemodule GetAnomalyMonitorsRequest : sig ... end

Retrieves the cost anomaly monitor definitions for your account. You can filter using a list of cost anomaly monitor Amazon Resource Names (ARNs).

Retrieves the cost anomaly monitor definitions for your account. You can filter using a list of cost anomaly monitor Amazon Resource Names (ARNs).

Retrieves the cost anomaly subscription objects for your account. You can filter using a list of cost anomaly monitor Amazon Resource Names (ARNs).

Retrieves the cost anomaly subscription objects for your account. You can filter using a list of cost anomaly monitor Amazon Resource Names (ARNs).

Sourcemodule UsageServices : sig ... end
Sourcemodule Granularity : sig ... end

Retrieves estimated usage records for hourly granularity or resource-level data at daily granularity.

Retrieves estimated usage records for hourly granularity or resource-level data at daily granularity.

Retrieves a commitment purchase analysis result based on the AnalysisId.

Retrieves a commitment purchase analysis result based on the AnalysisId.

Sourcemodule GroupDefinitionType : sig ... end
Sourcemodule GroupDefinitionKey : sig ... end
Sourcemodule GroupDefinition : sig ... end

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

Sourcemodule GroupDefinitions : sig ... end

Retrieves cost and usage comparisons for your account between two periods within the last 13 months. If you have enabled multi-year data at monthly granularity, you can go back up to 38 months.

Retrieves cost and usage comparisons for your account between two periods within the last 13 months. If you have enabled multi-year data at monthly granularity, you can go back up to 38 months.

Sourcemodule MetricNames : sig ... end
Sourcemodule GetCostAndUsageRequest : sig ... end

Retrieves cost and usage metrics for your account. You can specify which cost and usage-related metric that you want the request to return. For example, you can specify BlendedCosts or UsageQuantity. 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. Management account in an organization in Organizations have access to all member accounts. For information about filter limitations, see Quotas and restrictions in the Billing and Cost Management User Guide.

Sourcemodule MetricUnit : sig ... end
Sourcemodule MetricAmount : sig ... end
Sourcemodule MetricValue : sig ... end

The aggregated value for a metric.

Sourcemodule Metrics : sig ... end
Sourcemodule Key : sig ... end
Sourcemodule Keys : sig ... end
Sourcemodule Group : sig ... end

One level of grouped data in the results.

Sourcemodule Groups : sig ... end
Sourcemodule ResultByTime : sig ... end

The result that's associated with a time period.

Sourcemodule ResultsByTime : sig ... end
Sourcemodule RequestChangedException : sig ... end

Your request parameters changed between pages. Try again with the old parameters or without a pagination token.

Sourcemodule GetCostAndUsageResponse : sig ... end

Retrieves cost and usage metrics for your account. You can specify which cost and usage-related metric that you want the request to return. For example, you can specify BlendedCosts or UsageQuantity. 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. Management account in an organization in Organizations have access to all member accounts. For information about filter limitations, see Quotas and restrictions in the Billing and Cost Management User Guide.

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. Management account in an organization in Organizations have access to all member accounts. Hourly granularity is only available for EC2-Instances (Elastic Compute Cloud) resource-level data. All other resource-level data is available at daily granularity. This is an opt-in only feature. You can enable this feature from the Cost Explorer Settings page. For information about how to access the Settings page, see Controlling Access for Cost Explorer in the Billing and Cost Management User Guide.

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. Management account in an organization in Organizations have access to all member accounts. Hourly granularity is only available for EC2-Instances (Elastic Compute Cloud) resource-level data. All other resource-level data is available at daily granularity. This is an opt-in only feature. You can enable this feature from the Cost Explorer Settings page. For information about how to access the Settings page, see Controlling Access for Cost Explorer in the Billing and Cost Management User Guide.

Sourcemodule SortOrder : sig ... end
Sourcemodule SortDefinitionKey : sig ... end
Sourcemodule SortDefinition : sig ... end

The details for how to sort the data.

Sourcemodule SortDefinitions : sig ... end
Sourcemodule SearchString : sig ... end
Sourcemodule MaxResults : sig ... end
Sourcemodule GetCostCategoriesRequest : sig ... end

Retrieves an array of cost category names and values incurred cost. If some cost category names and values are not associated with any cost, they will not be returned by this API.

Sourcemodule GetCostCategoriesResponse : sig ... end

Retrieves an array of cost category names and values incurred cost. If some cost category names and values are not associated with any cost, they will not be returned by this API.

Retrieves key factors driving cost changes between two time periods within the last 13 months, such as usage changes, discount changes, and commitment-based savings. If you have enabled multi-year data at monthly granularity, you can go back up to 38 months.

Retrieves key factors driving cost changes between two time periods within the last 13 months, such as usage changes, discount changes, and commitment-based savings. If you have enabled multi-year data at monthly granularity, you can go back up to 38 months.

Sourcemodule PredictionIntervalLevel : sig ... end
Sourcemodule Metric : sig ... end
Sourcemodule GetCostForecastRequest : sig ... end

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.

Sourcemodule GetCostForecastResponse : sig ... end

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.

Sourcemodule GetDimensionValuesRequest : sig ... end

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

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

You can use the following request parameters to query for how much of your instance usage a reservation covered.

Retrieves the reservation coverage for your account, which you can use 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 management 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.

Sourcemodule ServiceSpecification : sig ... end

Hardware specifications for the service that you want recommendations for.

Sourcemodule RecommendationsPageSize : sig ... end
Sourcemodule LookbackPeriodInDays : sig ... end

Gets recommendations for reservation purchases. These recommendations might help you to reduce your costs. Reservations provide a discounted hourly rate (up to 75%) compared to On-Demand pricing. Amazon Web Services generates your recommendations by identifying your On-Demand usage during a specific time period and collecting your usage into categories that are eligible for a reservation. After Amazon Web Services has these categories, it simulates every combination of reservations in each category of usage to identify the best number of each type of Reserved Instance (RI) to purchase to maximize your estimated savings. For example, Amazon Web Services automatically aggregates your Amazon EC2 Linux, shared tenancy, and c4 family usage in the US West (Oregon) Region and recommends that you buy size-flexible regional reservations to apply to the c4 family usage. Amazon Web Services recommends the smallest size instance in an instance family. This makes it easier to purchase a size-flexible Reserved Instance (RI). Amazon Web Services also shows the equal number of normalized units. This way, you can purchase any instance size that you want. For this example, your RI recommendation is for c4.large because that is the smallest size instance in the c4 instance family.

A summary about this recommendation, such as the currency code, the amount that Amazon Web Services estimates that you could save, and the total amount of reservation to purchase.

Sourcemodule ReservedCapacityDetails : sig ... end

Details about the reservations that Amazon Web Services recommends that you purchase.

Sourcemodule RedshiftInstanceDetails : sig ... end

Details about the Amazon Redshift reservations that Amazon Web Services recommends that you purchase.

Sourcemodule RDSInstanceDetails : sig ... end

Details about the Amazon RDS reservations that Amazon Web Services recommends that you purchase.

Sourcemodule MemoryDBInstanceDetails : sig ... end

Details about the MemoryDB reservations that Amazon Web Services recommends that you purchase.

Sourcemodule InstanceDetails : sig ... end

Details about the reservations that Amazon Web Services recommends that you purchase.

Details about your recommended reservation purchase.

A specific reservation that Amazon Web Services recommends for purchase.

Information about a recommendation, such as the timestamp for when Amazon Web Services made a specific recommendation.

Gets recommendations for reservation purchases. These recommendations might help you to reduce your costs. Reservations provide a discounted hourly rate (up to 75%) compared to On-Demand pricing. Amazon Web Services generates your recommendations by identifying your On-Demand usage during a specific time period and collecting your usage into categories that are eligible for a reservation. After Amazon Web Services has these categories, it simulates every combination of reservations in each category of usage to identify the best number of each type of Reserved Instance (RI) to purchase to maximize your estimated savings. For example, Amazon Web Services automatically aggregates your Amazon EC2 Linux, shared tenancy, and c4 family usage in the US West (Oregon) Region and recommends that you buy size-flexible regional reservations to apply to the c4 family usage. Amazon Web Services recommends the smallest size instance in an instance family. This makes it easier to purchase a size-flexible Reserved Instance (RI). Amazon Web Services also shows the equal number of normalized units. This way, you can purchase any instance size that you want. For this example, your RI recommendation is for c4.large because that is the smallest size instance in the c4 instance family.

Retrieves the reservation utilization for your account. Management account 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.

Sourcemodule ReservationGroupValue : sig ... end
Sourcemodule ReservationGroupKey : sig ... end
Sourcemodule UtilizationPercentage : sig ... end
Sourcemodule UnusedUnits : sig ... end
Sourcemodule UnusedHours : sig ... end
Sourcemodule UnrealizedSavings : sig ... end
Sourcemodule TotalPotentialRISavings : sig ... end
Sourcemodule TotalAmortizedFee : sig ... end
Sourcemodule TotalActualUnits : sig ... end
Sourcemodule TotalActualHours : sig ... end
Sourcemodule RealizedSavings : sig ... end
Sourcemodule RICostForUnusedHours : sig ... end
Sourcemodule PurchasedUnits : sig ... end
Sourcemodule PurchasedHours : sig ... end
Sourcemodule OnDemandCostOfRIHoursUsed : sig ... end
Sourcemodule NetRISavings : sig ... end
Sourcemodule ReservationAggregates : sig ... end

The aggregated numbers for your reservation usage.

A group of reservations that share a set of attributes.

Sourcemodule UtilizationByTime : sig ... end

The amount of utilization, in hours.

Sourcemodule UtilizationsByTime : sig ... end

Retrieves the reservation utilization for your account. Management account 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.

Sourcemodule RecommendationTarget : sig ... end

You can use RightsizingRecommendationConfiguration to customize recommendations across two attributes. You can choose to view recommendations for instances within the same instance families or across different instance families. You can also choose to view your estimated savings that are associated with recommendations with consideration of existing Savings Plans or Reserved Instance (RI) benefits, or neither.

Creates recommendations that help 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 more information about calculation and function, see Optimizing Your Cost with Rightsizing Recommendations in the Billing and Cost Management User Guide.

The summary of rightsizing recommendations

Metadata for a recommendation set.

Details on termination recommendation.

Sourcemodule RightsizingType : sig ... end
Sourcemodule PlatformDifference : sig ... end
Sourcemodule PlatformDifferences : sig ... end
Sourcemodule TargetInstance : sig ... end

Details on recommended instance.

Sourcemodule TargetInstancesList : sig ... end

Details for the modification recommendation.

Sourcemodule RightsizingRecommendation : sig ... end

Recommendations to rightsize resources.

Creates recommendations that help 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 more information about calculation and function, see Optimizing Your Cost with Rightsizing Recommendations in the Billing and Cost Management User Guide.

Sourcemodule RecommendationDetailId : sig ... end

Retrieves the details for a Savings Plan recommendation. These details include the hourly data-points that construct the cost, coverage, and utilization charts.

Sourcemodule RecommendationDetailData : sig ... end

The details and metrics for the given recommendation.

Retrieves the details for a Savings Plan recommendation. These details include the hourly data-points that construct the cost, coverage, and utilization charts.

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 management 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.

Sourcemodule SavingsPlansCoverageData : sig ... end

Specific coverage percentage, On-Demand costs, and spend covered by Savings Plans, and total Savings Plans costs for an account.

Sourcemodule SavingsPlansCoverage : sig ... end

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

Sourcemodule SavingsPlansCoverages : sig ... end

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 management 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.

Retrieves the Savings Plans recommendations for your account. First use StartSavingsPlansPurchaseRecommendationGeneration to generate a new set of recommendations, and then use GetSavingsPlansPurchaseRecommendation to retrieve them.

Metadata about your Savings Plans Purchase Recommendations.

Summary metrics for your Savings Plans Purchase Recommendations.

Sourcemodule SavingsPlansDetails : sig ... end

The attribute details on a specific Savings Plan.

Details for your recommended Savings Plans.

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

Retrieves the Savings Plans recommendations for your account. First use StartSavingsPlansPurchaseRecommendationGeneration to generate a new set of recommendations, and then use GetSavingsPlansPurchaseRecommendation to retrieve them.

Sourcemodule SavingsPlansDataType : sig ... end
Sourcemodule SavingsPlansDataTypes : sig ... end

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. GetSavingsPlanUtilizationDetails internally groups data by SavingsPlansArn.

Sourcemodule SavingsPlansUtilization : sig ... end

The measurement of how well you're using your existing Savings Plans.

Sourcemodule SavingsPlansSavings : sig ... end

The amount of savings that you're accumulating, against the public On-Demand rate of the usage accrued in an account.

The amortized amount of Savings Plans purchased in a specific account during a specific time interval.

Sourcemodule SavingsPlanArn : sig ... end

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

The aggregated utilization metrics for your Savings Plans usage.

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. GetSavingsPlanUtilizationDetails internally groups data by SavingsPlansArn.

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

The amount of Savings Plans utilization (in hours).

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

Sourcemodule GetTagsRequest : sig ... end

Queries for available tag keys and tag values for a specified period. You can search the tag values for an arbitrary string.

Sourcemodule TagList : sig ... end
Sourcemodule GetTagsResponse : sig ... end

Queries for available tag keys and tag values for a specified period. You can search the tag values for an arbitrary string.

Sourcemodule GetUsageForecastRequest : sig ... end

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.

Cost Explorer was unable to identify the usage unit. Provide UsageType/UsageTypeGroup filter selections that contain matching units, for example: hours.

Sourcemodule GetUsageForecastResponse : sig ... end

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.

Lists the commitment purchase analyses for your account.

Lists the commitment purchase analyses for your account.

Retrieves a list of your historical cost allocation tag backfill requests.

Retrieves a list of your historical cost allocation tag backfill requests.

Get a list of cost allocation tags. All inputs in the API are optional and serve as filters. By default, all cost allocation tags are returned.

Get a list of cost allocation tags. All inputs in the API are optional and serve as filters. By default, all cost allocation tags are returned.

Sourcemodule ResourceTypesFilterInput : sig ... end

Returns the name, Amazon Resource Name (ARN), NumberOfRules and effective dates of all cost categories defined in the account. You have the option to use EffectiveOn and SupportedResourceTypes 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.

Returns the name, Amazon Resource Name (ARN), NumberOfRules and effective dates of all cost categories defined in the account. You have the option to use EffectiveOn and SupportedResourceTypes 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.

Returns resource associations of all cost categories defined in the account. You have the option to use CostCategoryArn to get the association for a specific cost category. ListCostCategoryResourceAssociations supports pagination. The request can have a MaxResults range up to 100.

Returns resource associations of all cost categories defined in the account. You have the option to use CostCategoryArn to get the association for a specific cost category. ListCostCategoryResourceAssociations supports pagination. The request can have a MaxResults range up to 100.

Sourcemodule RecommendationIdList : sig ... end

Retrieves a list of your historical recommendation generations within the past 30 days.

Retrieves a list of your historical recommendation generations within the past 30 days.

Returns a list of resource tags associated with the resource specified by the Amazon Resource Name (ARN).

Returns a list of resource tags associated with the resource specified by the Amazon Resource Name (ARN).

Modifies the feedback property of a given cost anomaly.

Modifies the feedback property of a given cost anomaly.

Sourcemodule ResourceTagKeyList : sig ... end

Specifies the parameters of a planned commitment purchase and starts the generation of the analysis. This enables you to estimate the cost, coverage, and utilization impact of your planned commitment purchases.

Specifies the parameters of a planned commitment purchase and starts the generation of the analysis. This enables you to estimate the cost, coverage, and utilization impact of your planned commitment purchases.

Request a cost allocation tag backfill. This will backfill the activation status (either active or inactive) for all tag keys from para:BackfillFrom up to the time this request is made. You can request a backfill once every 24 hours.

Request a cost allocation tag backfill. This will backfill the activation status (either active or inactive) for all tag keys from para:BackfillFrom up to the time this request is made. You can request a backfill once every 24 hours.

Requests a Savings Plans recommendation generation. This enables you to calculate a fresh set of Savings Plans recommendations that takes your latest usage data and current Savings Plans inventory into account. You can refresh Savings Plans recommendations up to three times daily for a consolidated billing family. StartSavingsPlansPurchaseRecommendationGeneration has no request syntax because no input parameters are needed to support this operation.

Requests a Savings Plans recommendation generation. This enables you to calculate a fresh set of Savings Plans recommendations that takes your latest usage data and current Savings Plans inventory into account. You can refresh Savings Plans recommendations up to three times daily for a consolidated billing family. StartSavingsPlansPurchaseRecommendationGeneration has no request syntax because no input parameters are needed to support this operation.

Sourcemodule TagResourceRequest : sig ... end

An API operation for adding one or more tags (key-value pairs) to a resource. You can use the TagResource operation with a resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value you specify replaces the previous value for that tag. Although the maximum number of array members is 200, user-tag maximum is 50. The remaining are reserved for Amazon Web Services use.

Sourcemodule TooManyTagsException : sig ... end

Can occur if you specify a number of tags for a resource greater than the maximum 50 user tags per resource.

Sourcemodule TagResourceResponse : sig ... end

An API operation for adding one or more tags (key-value pairs) to a resource. You can use the TagResource operation with a resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value you specify replaces the previous value for that tag. Although the maximum number of array members is 200, user-tag maximum is 50. The remaining are reserved for Amazon Web Services use.

Sourcemodule UntagResourceRequest : sig ... end

Removes one or more tags from a resource. Specify only tag keys in your request. Don't specify the value.

Sourcemodule UntagResourceResponse : sig ... end

Removes one or more tags from a resource. Specify only tag keys in your request. Don't specify the value.

Updates an existing cost anomaly monitor. The changes made are applied going forward, and doesn't change anomalies detected in the past.

Updates an existing cost anomaly monitor. The changes made are applied going forward, and doesn't change anomalies detected in the past.

Updates an existing cost anomaly subscription. Specify the fields that you want to update. Omitted fields are unchanged. The JSON below describes the generic construct for each type. See Request Parameters for possible values as they apply to AnomalySubscription.

Updates an existing cost anomaly subscription. Specify the fields that you want to update. Omitted fields are unchanged. The JSON below describes the generic construct for each type. See Request Parameters for possible values as they apply to AnomalySubscription.

Gives a detailed description of the result of an action. It's on each cost allocation tag entry in the request.

Updates status for cost allocation tags in bulk, with maximum batch size of 20. If the tag status that's updated is the same as the existing tag status, the request doesn't fail. Instead, it doesn't have any effect on the tag status (for example, activating the active tag).

Updates status for cost allocation tags in bulk, with maximum batch size of 20. If the tag status that's updated is the same as the existing tag status, the request doesn't fail. Instead, it doesn't have any effect on the tag status (for example, activating the active tag).

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.

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.