Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BudgetReference ¶
type BudgetReference struct {
// The Id of the Budget resource.
BudgetId *string `field:"required" json:"budgetId" yaml:"budgetId"`
}
A reference to a Budget resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
budgetReference := &BudgetReference{
BudgetId: jsii.String("budgetId"),
}
type BudgetsActionReference ¶
type BudgetsActionReference struct {
// The ActionId of the BudgetsAction resource.
ActionId *string `field:"required" json:"actionId" yaml:"actionId"`
// The BudgetName of the BudgetsAction resource.
BudgetName *string `field:"required" json:"budgetName" yaml:"budgetName"`
}
A reference to a BudgetsAction resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
budgetsActionReference := &BudgetsActionReference{
ActionId: jsii.String("actionId"),
BudgetName: jsii.String("budgetName"),
}
type IBudgetRef ¶
type IBudgetRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Budget resource.
// Experimental.
BudgetRef() *BudgetReference
}
Indicates that this resource can be referenced as a Budget. Experimental.
type IBudgetsActionRef ¶
type IBudgetsActionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a BudgetsAction resource.
// Experimental.
BudgetsActionRef() *BudgetsActionReference
}
Indicates that this resource can be referenced as a BudgetsAction. Experimental.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.