interface ActionThresholdProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Budgets.CfnBudgetsActionPropsMixin.ActionThresholdProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbudgets#CfnBudgetsActionPropsMixin_ActionThresholdProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.budgets.CfnBudgetsActionPropsMixin.ActionThresholdProperty |
Python | aws_cdk.cfn_property_mixins.aws_budgets.CfnBudgetsActionPropsMixin.ActionThresholdProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_budgets » 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 { aws_budgets as budgets } from '@aws-cdk/cfn-property-mixins';
const actionThresholdProperty: budgets.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