Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type INamespaceRef ¶
type INamespaceRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Namespace resource.
// Experimental.
NamespaceRef() *NamespaceReference
}
Indicates that this resource can be referenced as a Namespace. Experimental.
type ISnapshotRef ¶
type ISnapshotRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Snapshot resource.
// Experimental.
SnapshotRef() *SnapshotReference
}
Indicates that this resource can be referenced as a Snapshot. Experimental.
type IWorkgroupRef ¶
type IWorkgroupRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Workgroup resource.
// Experimental.
WorkgroupRef() *WorkgroupReference
}
Indicates that this resource can be referenced as a Workgroup. Experimental.
type NamespaceReference ¶
type NamespaceReference struct {
// The NamespaceName of the Namespace resource.
NamespaceName *string `field:"required" json:"namespaceName" yaml:"namespaceName"`
}
A reference to a Namespace 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"
namespaceReference := &NamespaceReference{
NamespaceName: jsii.String("namespaceName"),
}
type SnapshotReference ¶
type SnapshotReference struct {
// The SnapshotName of the Snapshot resource.
SnapshotName *string `field:"required" json:"snapshotName" yaml:"snapshotName"`
}
A reference to a Snapshot 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"
snapshotReference := &SnapshotReference{
SnapshotName: jsii.String("snapshotName"),
}
type WorkgroupReference ¶
type WorkgroupReference struct {
// The WorkgroupName of the Workgroup resource.
WorkgroupName *string `field:"required" json:"workgroupName" yaml:"workgroupName"`
}
A reference to a Workgroup 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"
workgroupReference := &WorkgroupReference{
WorkgroupName: jsii.String("workgroupName"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.