Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ComponentTypeReference ¶
type ComponentTypeReference struct {
// The ARN of the ComponentType resource.
ComponentTypeArn *string `field:"required" json:"componentTypeArn" yaml:"componentTypeArn"`
// The ComponentTypeId of the ComponentType resource.
ComponentTypeId *string `field:"required" json:"componentTypeId" yaml:"componentTypeId"`
// The WorkspaceId of the ComponentType resource.
WorkspaceId *string `field:"required" json:"workspaceId" yaml:"workspaceId"`
}
A reference to a ComponentType 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"
componentTypeReference := &ComponentTypeReference{
ComponentTypeArn: jsii.String("componentTypeArn"),
ComponentTypeId: jsii.String("componentTypeId"),
WorkspaceId: jsii.String("workspaceId"),
}
type EntityReference ¶
type EntityReference struct {
// The ARN of the Entity resource.
EntityArn *string `field:"required" json:"entityArn" yaml:"entityArn"`
// The EntityId of the Entity resource.
EntityId *string `field:"required" json:"entityId" yaml:"entityId"`
// The WorkspaceId of the Entity resource.
WorkspaceId *string `field:"required" json:"workspaceId" yaml:"workspaceId"`
}
A reference to a Entity 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"
entityReference := &EntityReference{
EntityArn: jsii.String("entityArn"),
EntityId: jsii.String("entityId"),
WorkspaceId: jsii.String("workspaceId"),
}
type IComponentTypeRef ¶
type IComponentTypeRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ComponentType resource.
// Experimental.
ComponentTypeRef() *ComponentTypeReference
}
Indicates that this resource can be referenced as a ComponentType. Experimental.
type IEntityRef ¶
type IEntityRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Entity resource.
// Experimental.
EntityRef() *EntityReference
}
Indicates that this resource can be referenced as a Entity. Experimental.
type ISceneRef ¶
type ISceneRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Scene resource.
// Experimental.
SceneRef() *SceneReference
}
Indicates that this resource can be referenced as a Scene. Experimental.
type ISyncJobRef ¶
type ISyncJobRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a SyncJob resource.
// Experimental.
SyncJobRef() *SyncJobReference
}
Indicates that this resource can be referenced as a SyncJob. 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 SceneReference ¶
type SceneReference struct {
// The ARN of the Scene resource.
SceneArn *string `field:"required" json:"sceneArn" yaml:"sceneArn"`
// The SceneId of the Scene resource.
SceneId *string `field:"required" json:"sceneId" yaml:"sceneId"`
// The WorkspaceId of the Scene resource.
WorkspaceId *string `field:"required" json:"workspaceId" yaml:"workspaceId"`
}
A reference to a Scene 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"
sceneReference := &SceneReference{
SceneArn: jsii.String("sceneArn"),
SceneId: jsii.String("sceneId"),
WorkspaceId: jsii.String("workspaceId"),
}
type SyncJobReference ¶
type SyncJobReference struct {
// The ARN of the SyncJob resource.
SyncJobArn *string `field:"required" json:"syncJobArn" yaml:"syncJobArn"`
// The SyncSource of the SyncJob resource.
SyncSource *string `field:"required" json:"syncSource" yaml:"syncSource"`
// The WorkspaceId of the SyncJob resource.
WorkspaceId *string `field:"required" json:"workspaceId" yaml:"workspaceId"`
}
A reference to a SyncJob 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"
syncJobReference := &SyncJobReference{
SyncJobArn: jsii.String("syncJobArn"),
SyncSource: jsii.String("syncSource"),
WorkspaceId: jsii.String("workspaceId"),
}
type WorkspaceReference ¶
type WorkspaceReference struct {
// The ARN of the Workspace resource.
WorkspaceArn *string `field:"required" json:"workspaceArn" yaml:"workspaceArn"`
// The WorkspaceId 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{
WorkspaceArn: jsii.String("workspaceArn"),
WorkspaceId: jsii.String("workspaceId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.