Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AnomalyMonitorReference ¶
type AnomalyMonitorReference struct {
// The MonitorArn of the AnomalyMonitor resource.
MonitorArn *string `field:"required" json:"monitorArn" yaml:"monitorArn"`
}
A reference to a AnomalyMonitor 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"
anomalyMonitorReference := &AnomalyMonitorReference{
MonitorArn: jsii.String("monitorArn"),
}
type AnomalySubscriptionReference ¶
type AnomalySubscriptionReference struct {
// The SubscriptionArn of the AnomalySubscription resource.
SubscriptionArn *string `field:"required" json:"subscriptionArn" yaml:"subscriptionArn"`
}
A reference to a AnomalySubscription 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"
anomalySubscriptionReference := &AnomalySubscriptionReference{
SubscriptionArn: jsii.String("subscriptionArn"),
}
type CostCategoryReference ¶
type CostCategoryReference struct {
// The Arn of the CostCategory resource.
CostCategoryArn *string `field:"required" json:"costCategoryArn" yaml:"costCategoryArn"`
}
A reference to a CostCategory 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"
costCategoryReference := &CostCategoryReference{
CostCategoryArn: jsii.String("costCategoryArn"),
}
type IAnomalyMonitorRef ¶
type IAnomalyMonitorRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a AnomalyMonitor resource.
// Experimental.
AnomalyMonitorRef() *AnomalyMonitorReference
}
Indicates that this resource can be referenced as a AnomalyMonitor. Experimental.
type IAnomalySubscriptionRef ¶
type IAnomalySubscriptionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a AnomalySubscription resource.
// Experimental.
AnomalySubscriptionRef() *AnomalySubscriptionReference
}
Indicates that this resource can be referenced as a AnomalySubscription. Experimental.
type ICostCategoryRef ¶
type ICostCategoryRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a CostCategory resource.
// Experimental.
CostCategoryRef() *CostCategoryReference
}
Indicates that this resource can be referenced as a CostCategory. Experimental.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.