Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IScheduleGroupRef ¶
type IScheduleGroupRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ScheduleGroup resource.
// Experimental.
ScheduleGroupRef() *ScheduleGroupReference
}
Indicates that this resource can be referenced as a ScheduleGroup. Experimental.
type IScheduleRef ¶
type IScheduleRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Schedule resource.
// Experimental.
ScheduleRef() *ScheduleReference
}
Indicates that this resource can be referenced as a Schedule. Experimental.
type ScheduleGroupReference ¶
type ScheduleGroupReference struct {
// The ARN of the ScheduleGroup resource.
ScheduleGroupArn *string `field:"required" json:"scheduleGroupArn" yaml:"scheduleGroupArn"`
// The Name of the ScheduleGroup resource.
ScheduleGroupName *string `field:"required" json:"scheduleGroupName" yaml:"scheduleGroupName"`
}
A reference to a ScheduleGroup 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"
scheduleGroupReference := &ScheduleGroupReference{
ScheduleGroupArn: jsii.String("scheduleGroupArn"),
ScheduleGroupName: jsii.String("scheduleGroupName"),
}
type ScheduleReference ¶
type ScheduleReference struct {
// The ARN of the Schedule resource.
ScheduleArn *string `field:"required" json:"scheduleArn" yaml:"scheduleArn"`
// The Name of the Schedule resource.
ScheduleName *string `field:"required" json:"scheduleName" yaml:"scheduleName"`
}
A reference to a Schedule 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"
scheduleReference := &ScheduleReference{
ScheduleArn: jsii.String("scheduleArn"),
ScheduleName: jsii.String("scheduleName"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.