Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DatasetReference ¶
type DatasetReference struct {
// The Name of the Dataset resource.
DatasetName *string `field:"required" json:"datasetName" yaml:"datasetName"`
}
A reference to a Dataset 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"
datasetReference := &DatasetReference{
DatasetName: jsii.String("datasetName"),
}
type IDatasetRef ¶
type IDatasetRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Dataset resource.
// Experimental.
DatasetRef() *DatasetReference
}
Indicates that this resource can be referenced as a Dataset. Experimental.
type IJobRef ¶
type IJobRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Job resource.
// Experimental.
JobRef() *JobReference
}
Indicates that this resource can be referenced as a Job. Experimental.
type IProjectRef ¶
type IProjectRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Project resource.
// Experimental.
ProjectRef() *ProjectReference
}
Indicates that this resource can be referenced as a Project. Experimental.
type IRecipeRef ¶
type IRecipeRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Recipe resource.
// Experimental.
RecipeRef() *RecipeReference
}
Indicates that this resource can be referenced as a Recipe. Experimental.
type IRulesetRef ¶
type IRulesetRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Ruleset resource.
// Experimental.
RulesetRef() *RulesetReference
}
Indicates that this resource can be referenced as a Ruleset. 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 JobReference ¶
type JobReference struct {
// The Name of the Job resource.
JobName *string `field:"required" json:"jobName" yaml:"jobName"`
}
A reference to a Job 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"
jobReference := &JobReference{
JobName: jsii.String("jobName"),
}
type ProjectReference ¶
type ProjectReference struct {
// The Name of the Project resource.
ProjectName *string `field:"required" json:"projectName" yaml:"projectName"`
}
A reference to a Project 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"
projectReference := &ProjectReference{
ProjectName: jsii.String("projectName"),
}
type RecipeReference ¶
type RecipeReference struct {
// The Name of the Recipe resource.
RecipeName *string `field:"required" json:"recipeName" yaml:"recipeName"`
}
A reference to a Recipe 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"
recipeReference := &RecipeReference{
RecipeName: jsii.String("recipeName"),
}
type RulesetReference ¶
type RulesetReference struct {
// The Name of the Ruleset resource.
RulesetName *string `field:"required" json:"rulesetName" yaml:"rulesetName"`
}
A reference to a Ruleset 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"
rulesetReference := &RulesetReference{
RulesetName: jsii.String("rulesetName"),
}
type ScheduleReference ¶
type ScheduleReference struct {
// 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{
ScheduleName: jsii.String("scheduleName"),
}