interface CfnSpendingLimitMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Braket.CfnSpendingLimitMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbraket#CfnSpendingLimitMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.braket.CfnSpendingLimitMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_braket.CfnSpendingLimitMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_braket » CfnSpendingLimitMixinProps |
Properties for CfnSpendingLimitPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-braket-spendinglimit.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_braket as braket } from '@aws-cdk/cfn-property-mixins';
const cfnSpendingLimitMixinProps: braket.CfnSpendingLimitMixinProps = {
deviceArn: 'deviceArn',
spendingLimit: 'spendingLimit',
tags: [{
key: 'key',
value: 'value',
}],
timePeriod: {
endAt: 'endAt',
startAt: 'startAt',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| device | string | The Amazon Resource Name (ARN) of the quantum device to apply the spending limit to. |
| spending | string | The maximum amount that can be spent on the specified device, in USD. |
| tags? | Cfn[] | The tags to apply to the spending limit. |
| time | IResolvable | Time | Defines a time range for spending limits, specifying when the limit is active. |
deviceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the quantum device to apply the spending limit to.
spendingLimit?
Type:
string
(optional)
The maximum amount that can be spent on the specified device, in USD.
tags?
Type:
Cfn[]
(optional)
The tags to apply to the spending limit.
timePeriod?
Type:
IResolvable | Time
(optional)
Defines a time range for spending limits, specifying when the limit is active.

.NET
Go
Java
Python
TypeScript