Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IVolumeAssociationRef ¶
type IVolumeAssociationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a VolumeAssociation resource.
// Experimental.
VolumeAssociationRef() *VolumeAssociationReference
}
Indicates that this resource can be referenced as a VolumeAssociation. Experimental.
type IVolumeRef ¶
type IVolumeRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Volume resource.
// Experimental.
VolumeRef() *VolumeReference
}
Indicates that this resource can be referenced as a Volume. Experimental.
type IWorkspaceInstanceRef ¶
type IWorkspaceInstanceRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a WorkspaceInstance resource.
// Experimental.
WorkspaceInstanceRef() *WorkspaceInstanceReference
}
Indicates that this resource can be referenced as a WorkspaceInstance. Experimental.
type VolumeAssociationReference ¶
type VolumeAssociationReference struct {
// The Device of the VolumeAssociation resource.
Device *string `field:"required" json:"device" yaml:"device"`
// The VolumeId of the VolumeAssociation resource.
VolumeId *string `field:"required" json:"volumeId" yaml:"volumeId"`
// The WorkspaceInstanceId of the VolumeAssociation resource.
WorkspaceInstanceId *string `field:"required" json:"workspaceInstanceId" yaml:"workspaceInstanceId"`
}
A reference to a VolumeAssociation 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"
volumeAssociationReference := &VolumeAssociationReference{
Device: jsii.String("device"),
VolumeId: jsii.String("volumeId"),
WorkspaceInstanceId: jsii.String("workspaceInstanceId"),
}
type VolumeReference ¶
type VolumeReference struct {
// The VolumeId of the Volume resource.
VolumeId *string `field:"required" json:"volumeId" yaml:"volumeId"`
}
A reference to a Volume 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"
volumeReference := &VolumeReference{
VolumeId: jsii.String("volumeId"),
}
type WorkspaceInstanceReference ¶
type WorkspaceInstanceReference struct {
// The WorkspaceInstanceId of the WorkspaceInstance resource.
WorkspaceInstanceId *string `field:"required" json:"workspaceInstanceId" yaml:"workspaceInstanceId"`
}
A reference to a WorkspaceInstance 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"
workspaceInstanceReference := &WorkspaceInstanceReference{
WorkspaceInstanceId: jsii.String("workspaceInstanceId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.