Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ChannelReference ¶
type ChannelReference struct {
// The ChannelName of the Channel resource.
ChannelName *string `field:"required" json:"channelName" yaml:"channelName"`
}
A reference to a Channel 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"
channelReference := &ChannelReference{
ChannelName: jsii.String("channelName"),
}
type DatasetReference ¶
type DatasetReference struct {
// The DatasetName 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 DatastoreReference ¶
type DatastoreReference struct {
// The DatastoreName of the Datastore resource.
DatastoreName *string `field:"required" json:"datastoreName" yaml:"datastoreName"`
}
A reference to a Datastore 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"
datastoreReference := &DatastoreReference{
DatastoreName: jsii.String("datastoreName"),
}
type IChannelRef ¶
type IChannelRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Channel resource.
// Experimental.
ChannelRef() *ChannelReference
}
Indicates that this resource can be referenced as a Channel. Experimental.
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 IDatastoreRef ¶
type IDatastoreRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Datastore resource.
// Experimental.
DatastoreRef() *DatastoreReference
}
Indicates that this resource can be referenced as a Datastore. Experimental.
type IPipelineRef ¶
type IPipelineRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Pipeline resource.
// Experimental.
PipelineRef() *PipelineReference
}
Indicates that this resource can be referenced as a Pipeline. Experimental.
type PipelineReference ¶
type PipelineReference struct {
// The PipelineName of the Pipeline resource.
PipelineName *string `field:"required" json:"pipelineName" yaml:"pipelineName"`
}
A reference to a Pipeline 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"
pipelineReference := &PipelineReference{
PipelineName: jsii.String("pipelineName"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.