interface TimePeriodProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Braket.CfnSpendingLimit.TimePeriodProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbraket#CfnSpendingLimit_TimePeriodProperty |
Java | software.amazon.awscdk.services.braket.CfnSpendingLimit.TimePeriodProperty |
Python | aws_cdk.aws_braket.CfnSpendingLimit.TimePeriodProperty |
TypeScript | aws-cdk-lib » aws_braket » CfnSpendingLimit » TimePeriodProperty |
Defines a time range for spending limits, specifying when the limit is active.
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-lib';
const timePeriodProperty: braket.CfnSpendingLimit.TimePeriodProperty = {
endAt: 'endAt',
startAt: 'startAt',
};
Properties
| Name | Type | Description |
|---|---|---|
| end | string | The end date and time for the spending limit period, in ISO 8601 format. |
| start | string | The start date and time for the spending limit period, in ISO 8601 format. |
endAt
Type:
string
The end date and time for the spending limit period, in ISO 8601 format.
startAt
Type:
string
The start date and time for the spending limit period, in ISO 8601 format.

.NET
Go
Java
Python
TypeScript