AWS Fundamentals Logo
AWS Fundamentals
AWS::Braket::SpendingLimit

Braket SpendingLimit

Creates a spending limit for a specified quantum device. Spending limits help you control costs by setting maximum amounts that can be spent on quantum computing tasks within a specified time period.

Properties

4 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
DeviceArn
string
RequiredCreate-only
SpendingLimit
string
Required
Tags
Array<Tag>
TimePeriod
TimePeriod

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
CreatedAtstringThe date and time when the spending limit was created, in ISO 8601 format.
QueuedSpendstringThe amount currently queued for spending on the device, in USD.
SpendingLimitArnstringThe Amazon Resource Name (ARN) that uniquely identifies the spending limit.
TotalSpendstringThe total amount spent on the device so far during the current time period, in USD.
UpdatedAtstringThe date and time when the spending limit was last modified, in ISO 8601 format.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Braket::SpendingLimit

Resources:
  MyResource:
    Type: AWS::Braket::SpendingLimit
    Properties:
      DeviceArn: "arn:aws:service:region:account:resource"
      SpendingLimit: "value"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

braket:CreateSpendingLimitbraket:SearchSpendingLimitsbraket:TagResource

read

braket:SearchSpendingLimitsbraket:ListTagsForResource

update

braket:UpdateSpendingLimitbraket:SearchSpendingLimitsbraket:TagResourcebraket:UntagResource

delete

braket:DeleteSpendingLimitbraket:SearchSpendingLimits

list

braket:SearchSpendingLimits

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceBraket
Properties9
Required2
TaggingSupported
Primary IDSpendingLimitArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

DeviceArn

External Links