interface ActionThresholdProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Budgets.Mixins.CfnBudgetsActionPropsMixin.ActionThresholdProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbudgets/mixins#CfnBudgetsActionPropsMixin_ActionThresholdProperty |
Java | software.amazon.awscdk.mixins.preview.services.budgets.mixins.CfnBudgetsActionPropsMixin.ActionThresholdProperty |
Python | aws_cdk.mixins_preview.aws_budgets.mixins.CfnBudgetsActionPropsMixin.ActionThresholdProperty |
TypeScript | @aws-cdk/mixins-preview » aws_budgets » mixins » CfnBudgetsActionPropsMixin » ActionThresholdProperty |
The trigger threshold of the action.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as budgets_mixins } from '@aws-cdk/mixins-preview/aws-budgets';
const actionThresholdProperty: budgets_mixins.CfnBudgetsActionPropsMixin.ActionThresholdProperty = {
type: 'type',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| type? | string | The type of threshold for a notification. |
| value? | number | The threshold of a notification. |
type?
Type:
string
(optional)
The type of threshold for a notification.
value?
Type:
number
(optional)
The threshold of a notification.

.NET
Go
Java
Python
TypeScript