Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DetectorReference ¶
type DetectorReference struct {
// The Arn of the Detector resource.
DetectorArn *string `field:"required" json:"detectorArn" yaml:"detectorArn"`
}
A reference to a Detector 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"
detectorReference := &DetectorReference{
DetectorArn: jsii.String("detectorArn"),
}
type EntityTypeReference ¶
type EntityTypeReference struct {
// The Arn of the EntityType resource.
EntityTypeArn *string `field:"required" json:"entityTypeArn" yaml:"entityTypeArn"`
}
A reference to a EntityType 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"
entityTypeReference := &EntityTypeReference{
EntityTypeArn: jsii.String("entityTypeArn"),
}
type EventTypeReference ¶
type EventTypeReference struct {
// The Arn of the EventType resource.
EventTypeArn *string `field:"required" json:"eventTypeArn" yaml:"eventTypeArn"`
}
A reference to a EventType 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"
eventTypeReference := &EventTypeReference{
EventTypeArn: jsii.String("eventTypeArn"),
}
type IDetectorRef ¶
type IDetectorRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Detector resource.
// Experimental.
DetectorRef() *DetectorReference
}
Indicates that this resource can be referenced as a Detector. Experimental.
type IEntityTypeRef ¶
type IEntityTypeRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a EntityType resource.
// Experimental.
EntityTypeRef() *EntityTypeReference
}
Indicates that this resource can be referenced as a EntityType. Experimental.
type IEventTypeRef ¶
type IEventTypeRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a EventType resource.
// Experimental.
EventTypeRef() *EventTypeReference
}
Indicates that this resource can be referenced as a EventType. Experimental.
type ILabelRef ¶
type ILabelRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Label resource.
// Experimental.
LabelRef() *LabelReference
}
Indicates that this resource can be referenced as a Label. Experimental.
type IListRef ¶
type IListRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a List resource.
// Experimental.
ListRef() *ListReference
}
Indicates that this resource can be referenced as a List. Experimental.
type IOutcomeRef ¶
type IOutcomeRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Outcome resource.
// Experimental.
OutcomeRef() *OutcomeReference
}
Indicates that this resource can be referenced as a Outcome. Experimental.
type IVariableRef ¶
type IVariableRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Variable resource.
// Experimental.
VariableRef() *VariableReference
}
Indicates that this resource can be referenced as a Variable. Experimental.
type LabelReference ¶
type LabelReference struct {
// The Arn of the Label resource.
LabelArn *string `field:"required" json:"labelArn" yaml:"labelArn"`
}
A reference to a Label 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"
labelReference := &LabelReference{
LabelArn: jsii.String("labelArn"),
}
type ListReference ¶
type ListReference struct {
// The Arn of the List resource.
ListArn *string `field:"required" json:"listArn" yaml:"listArn"`
}
A reference to a List 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"
listReference := &ListReference{
ListArn: jsii.String("listArn"),
}
type OutcomeReference ¶
type OutcomeReference struct {
// The Arn of the Outcome resource.
OutcomeArn *string `field:"required" json:"outcomeArn" yaml:"outcomeArn"`
}
A reference to a Outcome 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"
outcomeReference := &OutcomeReference{
OutcomeArn: jsii.String("outcomeArn"),
}
type VariableReference ¶
type VariableReference struct {
// The Arn of the Variable resource.
VariableArn *string `field:"required" json:"variableArn" yaml:"variableArn"`
}
A reference to a Variable 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"
variableReference := &VariableReference{
VariableArn: jsii.String("variableArn"),
}