MarketplaceMetering / Client / meter_usage
meter_usage¶
- MarketplaceMetering.Client.meter_usage(**kwargs)¶
As a seller, your software hosted in the buyer’s Amazon Web Services account uses this API action to emit metering records directly to Amazon Web Services Marketplace. You must use the following buyer Amazon Web Services account credentials to sign the API request.
For Amazon EC2 deployments, your software must use the IAM role for Amazon EC2 to sign the API call for
MeterUsageAPI operation.For Amazon EKS deployments, your software must use IAM roles for service accounts (IRSA) to sign the API call for the
MeterUsageAPI operation. Using EKS Pod Identity, the node role, or long-term access keys is not supported.For Amazon ECS deployments, your software must use Amazon ECS task IAM role to sign the API call for the
MeterUsageAPI operation. Using the node role or long-term access keys are not supported.For Amazon Bedrock AgentCore Runtime deployments, your software must use the AgentCore Runtime execution role to sign the API call for the
MeterUsageAPI operation. Long-term access keys are not supported.
The handling of
MeterUsagerequests varies between Amazon Bedrock AgentCore Runtime and non-Amazon Bedrock AgentCore deployments.For non-Amazon Bedrock AgentCore Runtime deployments, you can only report usage once per hour for each dimension. For AMI-based products, this is per dimension and per EC2 instance. For container products, this is per dimension and per ECS task or EKS pod. You can’t modify values after they’re recorded. If you report usage before a current hour ends, you will be unable to report additional usage until the next hour begins. The
Timestamprequest parameter is rounded down to the hour and used to enforce this once-per-hour rule for idempotency. For requests that are identical after theTimestampis rounded down, the API is idempotent and returns the metering record ID.For Amazon Bedrock AgentCore Runtime deployments, you can report usage multiple times per hour for the same dimension. You do not need to aggregate metering records by the hour. You must include an idempotency token in the
ClientTokenrequest parameter. If using an Amazon SDK or the Amazon Web Services CLI, you must use the latest version which automatically includes an idempotency token in theClientTokenrequest parameter so that the request is processed successfully. TheTimestamprequest parameter is not rounded down to the hour and is not used for duplicate validation. Requests with duplicateTimestampsare aggregated as long as theClientTokenis unique.
If you submit records more than six hours after events occur, the records won’t be accepted. The timestamp in your request determines when an event is recorded.
You can optionally include multiple usage allocations, to provide customers with usage data split into buckets by tags that you define or allow the customer to define.
For Amazon Web Services Regions that support
MeterUsage, see MeterUsage Region support for Amazon EC2 and MeterUsage Region support for Amazon ECS and Amazon EKS.See also: AWS API Documentation
Request Syntax
response = client.meter_usage( ProductCode='string', Timestamp=datetime(2015, 1, 1), UsageDimension='string', UsageQuantity=123, DryRun=True|False, UsageAllocations=[ { 'AllocatedUsageQuantity': 123, 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ] }, ], ClientToken='string' )
- Parameters:
ProductCode (string) –
[REQUIRED]
Product code is used to uniquely identify a product in Amazon Web Services Marketplace. The product code should be the same as the one used during the publishing of a new product.
Timestamp (datetime) –
[REQUIRED]
Timestamp, in UTC, for which the usage is being reported. Your application can meter usage for up to six hours in the past. Make sure the
timestampvalue is not before the start of the software usage.UsageDimension (string) –
[REQUIRED]
It will be one of the fcp dimension name provided during the publishing of the product.
UsageQuantity (integer) – Consumption value for the hour. Defaults to
0if not specified.DryRun (boolean) – Checks whether you have the permissions required for the action, but does not make the request. If you have the permissions, the request returns
DryRunOperation; otherwise, it returnsUnauthorizedException. Defaults tofalseif not specified.UsageAllocations (list) –
The set of
UsageAllocationsto submit.The sum of all
UsageAllocationquantities must equal theUsageQuantityof theMeterUsagerequest, and eachUsageAllocationmust have a unique set of tags (include no tags).(dict) –
Usage allocations allow you to split usage into buckets by tags.
Each
UsageAllocationindicates the usage quantity for a specific set of tags.AllocatedUsageQuantity (integer) – [REQUIRED]
The total quantity allocated to this bucket of usage.
Tags (list) –
The set of tags that define the bucket of usage. For the bucket of items with no tags, this parameter can be left out.
(dict) –
Metadata assigned to an allocation. Each tag is made up of a
keyand avalue.Key (string) – [REQUIRED]
One part of a key-value pair that makes up a
tag. Akeyis a label that acts like a category for the specific tag values.Value (string) – [REQUIRED]
One part of a key-value pair that makes up a
tag. Avalueacts as a descriptor within a tag category (key). The value can be empty or null.
ClientToken (string) –
Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value.
If you don’t provide this value, then Amazon Web Services generates a random one for you.
If you retry the operation with the same
ClientToken, but with different parameters, the retry fails with anIdempotencyConflictExceptionerror.This field is autopopulated if not provided.
- Return type:
dict
- Returns:
Response Syntax
{ 'MeteringRecordId': 'string' }
Response Structure
(dict) –
MeteringRecordId (string) –
Metering record id.
Exceptions
MarketplaceMetering.Client.exceptions.InternalServiceErrorExceptionMarketplaceMetering.Client.exceptions.InvalidProductCodeExceptionMarketplaceMetering.Client.exceptions.InvalidUsageDimensionExceptionMarketplaceMetering.Client.exceptions.InvalidTagExceptionMarketplaceMetering.Client.exceptions.InvalidUsageAllocationsExceptionMarketplaceMetering.Client.exceptions.InvalidEndpointRegionExceptionMarketplaceMetering.Client.exceptions.TimestampOutOfBoundsExceptionMarketplaceMetering.Client.exceptions.DuplicateRequestExceptionMarketplaceMetering.Client.exceptions.IdempotencyConflictExceptionMarketplaceMetering.Client.exceptions.ThrottlingExceptionMarketplaceMetering.Client.exceptions.CustomerNotEntitledException