Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConnectionAliasReference ¶
type ConnectionAliasReference struct {
// The AliasId of the ConnectionAlias resource.
AliasId *string `field:"required" json:"aliasId" yaml:"aliasId"`
}
A reference to a ConnectionAlias 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"
connectionAliasReference := &ConnectionAliasReference{
AliasId: jsii.String("aliasId"),
}
type IConnectionAliasRef ¶
type IConnectionAliasRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ConnectionAlias resource.
// Experimental.
ConnectionAliasRef() *ConnectionAliasReference
}
Indicates that this resource can be referenced as a ConnectionAlias. Experimental.
type IWorkspaceRef ¶
type IWorkspaceRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Workspace resource.
// Experimental.
WorkspaceRef() *WorkspaceReference
}
Indicates that this resource can be referenced as a Workspace. Experimental.
type IWorkspacesPoolRef ¶
type IWorkspacesPoolRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a WorkspacesPool resource.
// Experimental.
WorkspacesPoolRef() *WorkspacesPoolReference
}
Indicates that this resource can be referenced as a WorkspacesPool. Experimental.
type WorkspaceReference ¶
type WorkspaceReference struct {
// The Id of the Workspace resource.
WorkspaceId *string `field:"required" json:"workspaceId" yaml:"workspaceId"`
}
A reference to a Workspace 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"
workspaceReference := &WorkspaceReference{
WorkspaceId: jsii.String("workspaceId"),
}
type WorkspacesPoolReference ¶
type WorkspacesPoolReference struct {
// The PoolId of the WorkspacesPool resource.
PoolId *string `field:"required" json:"poolId" yaml:"poolId"`
}
A reference to a WorkspacesPool 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"
workspacesPoolReference := &WorkspacesPoolReference{
PoolId: jsii.String("poolId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.