Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AlarmModelReference ¶
type AlarmModelReference struct {
// The AlarmModelName of the AlarmModel resource.
AlarmModelName *string `field:"required" json:"alarmModelName" yaml:"alarmModelName"`
}
A reference to a AlarmModel 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"
alarmModelReference := &AlarmModelReference{
AlarmModelName: jsii.String("alarmModelName"),
}
type DetectorModelReference ¶
type DetectorModelReference struct {
// The DetectorModelName of the DetectorModel resource.
DetectorModelName *string `field:"required" json:"detectorModelName" yaml:"detectorModelName"`
}
A reference to a DetectorModel 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"
detectorModelReference := &DetectorModelReference{
DetectorModelName: jsii.String("detectorModelName"),
}
type IAlarmModelRef ¶
type IAlarmModelRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a AlarmModel resource.
// Experimental.
AlarmModelRef() *AlarmModelReference
}
Indicates that this resource can be referenced as a AlarmModel. Experimental.
type IDetectorModelRef ¶
type IDetectorModelRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DetectorModel resource.
// Experimental.
DetectorModelRef() *DetectorModelReference
}
Indicates that this resource can be referenced as a DetectorModel. Experimental.
type IInputRef ¶
type IInputRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Input resource.
// Experimental.
InputRef() *InputReference
}
Indicates that this resource can be referenced as a Input. Experimental.
type InputReference ¶
type InputReference struct {
// The InputName of the Input resource.
InputName *string `field:"required" json:"inputName" yaml:"inputName"`
}
A reference to a Input 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"
inputReference := &InputReference{
InputName: jsii.String("inputName"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.