Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IJobTemplateRef ¶
type IJobTemplateRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a JobTemplate resource.
// Experimental.
JobTemplateRef() *JobTemplateReference
}
Indicates that this resource can be referenced as a JobTemplate. Experimental.
type IPresetRef ¶
type IPresetRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Preset resource.
// Experimental.
PresetRef() *PresetReference
}
Indicates that this resource can be referenced as a Preset. Experimental.
type IQueueRef ¶
type IQueueRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Queue resource.
// Experimental.
QueueRef() *QueueReference
}
Indicates that this resource can be referenced as a Queue. Experimental.
type JobTemplateReference ¶
type JobTemplateReference struct {
// The ARN of the JobTemplate resource.
JobTemplateArn *string `field:"required" json:"jobTemplateArn" yaml:"jobTemplateArn"`
// The Id of the JobTemplate resource.
JobTemplateId *string `field:"required" json:"jobTemplateId" yaml:"jobTemplateId"`
}
A reference to a JobTemplate 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"
jobTemplateReference := &JobTemplateReference{
JobTemplateArn: jsii.String("jobTemplateArn"),
JobTemplateId: jsii.String("jobTemplateId"),
}
type PresetReference ¶
type PresetReference struct {
// The ARN of the Preset resource.
PresetArn *string `field:"required" json:"presetArn" yaml:"presetArn"`
// The Id of the Preset resource.
PresetId *string `field:"required" json:"presetId" yaml:"presetId"`
}
A reference to a Preset 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"
presetReference := &PresetReference{
PresetArn: jsii.String("presetArn"),
PresetId: jsii.String("presetId"),
}
type QueueReference ¶
type QueueReference struct {
// The ARN of the Queue resource.
QueueArn *string `field:"required" json:"queueArn" yaml:"queueArn"`
// The Id of the Queue resource.
QueueId *string `field:"required" json:"queueId" yaml:"queueId"`
}
A reference to a Queue 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"
queueReference := &QueueReference{
QueueArn: jsii.String("queueArn"),
QueueId: jsii.String("queueId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.