interface TimePeriodProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Braket.CfnSpendingLimitPropsMixin.TimePeriodProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbraket#CfnSpendingLimitPropsMixin_TimePeriodProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.braket.CfnSpendingLimitPropsMixin.TimePeriodProperty |
Python | aws_cdk.cfn_property_mixins.aws_braket.CfnSpendingLimitPropsMixin.TimePeriodProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_braket » CfnSpendingLimitPropsMixin » 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/cfn-property-mixins';
const timePeriodProperty: braket.CfnSpendingLimitPropsMixin.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
(optional)
The end date and time for the spending limit period, in ISO 8601 format.
startAt?
Type:
string
(optional)
The start date and time for the spending limit period, in ISO 8601 format.

.NET
Go
Java
Python
TypeScript