Interface CfnSpendingLimitMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSpendingLimitMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:09.583Z")
@Stability(Stable)
public interface CfnSpendingLimitMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSpendingLimitPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.braket.*;
CfnSpendingLimitMixinProps cfnSpendingLimitMixinProps = CfnSpendingLimitMixinProps.builder()
.deviceArn("deviceArn")
.spendingLimit("spendingLimit")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.timePeriod(TimePeriodProperty.builder()
.endAt("endAt")
.startAt("startAt")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSpendingLimitMixinPropsstatic final classAn implementation forCfnSpendingLimitMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe Amazon Resource Name (ARN) of the quantum device to apply the spending limit to.default StringThe maximum amount that can be spent on the specified device, in USD.getTags()The tags to apply to the spending limit.default ObjectDefines a time range for spending limits, specifying when the limit is active.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeviceArn
The Amazon Resource Name (ARN) of the quantum device to apply the spending limit to.- See Also:
-
getSpendingLimit
The maximum amount that can be spent on the specified device, in USD.- See Also:
-
getTags
The tags to apply to the spending limit.- See Also:
-
getTimePeriod
Defines a time range for spending limits, specifying when the limit is active.Returns union: either
IResolvableorCfnSpendingLimitPropsMixin.TimePeriodProperty- See Also:
-
builder
- Returns:
- a
CfnSpendingLimitMixinProps.BuilderofCfnSpendingLimitMixinProps
-