Documentation
¶
Index ¶
- type FleetReference
- type IFleetRef
- type IRobotApplicationRef
- type IRobotApplicationVersionRef
- type IRobotRef
- type ISimulationApplicationRef
- type ISimulationApplicationVersionRef
- type RobotApplicationReference
- type RobotApplicationVersionReference
- type RobotReference
- type SimulationApplicationReference
- type SimulationApplicationVersionReference
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FleetReference ¶
type FleetReference struct {
// The Arn of the Fleet resource.
FleetArn *string `field:"required" json:"fleetArn" yaml:"fleetArn"`
}
A reference to a Fleet 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"
fleetReference := &FleetReference{
FleetArn: jsii.String("fleetArn"),
}
type IFleetRef ¶
type IFleetRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Fleet resource.
// Experimental.
FleetRef() *FleetReference
}
Indicates that this resource can be referenced as a Fleet. Experimental.
type IRobotApplicationRef ¶
type IRobotApplicationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a RobotApplication resource.
// Experimental.
RobotApplicationRef() *RobotApplicationReference
}
Indicates that this resource can be referenced as a RobotApplication. Experimental.
type IRobotApplicationVersionRef ¶
type IRobotApplicationVersionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a RobotApplicationVersion resource.
// Experimental.
RobotApplicationVersionRef() *RobotApplicationVersionReference
}
Indicates that this resource can be referenced as a RobotApplicationVersion. Experimental.
type IRobotRef ¶
type IRobotRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Robot resource.
// Experimental.
RobotRef() *RobotReference
}
Indicates that this resource can be referenced as a Robot. Experimental.
type ISimulationApplicationRef ¶
type ISimulationApplicationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a SimulationApplication resource.
// Experimental.
SimulationApplicationRef() *SimulationApplicationReference
}
Indicates that this resource can be referenced as a SimulationApplication. Experimental.
type ISimulationApplicationVersionRef ¶
type ISimulationApplicationVersionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a SimulationApplicationVersion resource.
// Experimental.
SimulationApplicationVersionRef() *SimulationApplicationVersionReference
}
Indicates that this resource can be referenced as a SimulationApplicationVersion. Experimental.
type RobotApplicationReference ¶
type RobotApplicationReference struct {
// The Arn of the RobotApplication resource.
RobotApplicationArn *string `field:"required" json:"robotApplicationArn" yaml:"robotApplicationArn"`
}
A reference to a RobotApplication 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"
robotApplicationReference := &RobotApplicationReference{
RobotApplicationArn: jsii.String("robotApplicationArn"),
}
type RobotApplicationVersionReference ¶
type RobotApplicationVersionReference struct {
// The Arn of the RobotApplicationVersion resource.
RobotApplicationVersionArn *string `field:"required" json:"robotApplicationVersionArn" yaml:"robotApplicationVersionArn"`
}
A reference to a RobotApplicationVersion 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"
robotApplicationVersionReference := &RobotApplicationVersionReference{
RobotApplicationVersionArn: jsii.String("robotApplicationVersionArn"),
}
type RobotReference ¶
type RobotReference struct {
// The Arn of the Robot resource.
RobotArn *string `field:"required" json:"robotArn" yaml:"robotArn"`
}
A reference to a Robot 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"
robotReference := &RobotReference{
RobotArn: jsii.String("robotArn"),
}
type SimulationApplicationReference ¶
type SimulationApplicationReference struct {
// The Arn of the SimulationApplication resource.
SimulationApplicationArn *string `field:"required" json:"simulationApplicationArn" yaml:"simulationApplicationArn"`
}
A reference to a SimulationApplication 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"
simulationApplicationReference := &SimulationApplicationReference{
SimulationApplicationArn: jsii.String("simulationApplicationArn"),
}
type SimulationApplicationVersionReference ¶
type SimulationApplicationVersionReference struct {
// The Arn of the SimulationApplicationVersion resource.
SimulationApplicationVersionArn *string `field:"required" json:"simulationApplicationVersionArn" yaml:"simulationApplicationVersionArn"`
}
A reference to a SimulationApplicationVersion 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"
simulationApplicationVersionReference := &SimulationApplicationVersionReference{
SimulationApplicationVersionArn: jsii.String("simulationApplicationVersionArn"),
}
Source Files
¶
- FleetReference.go
- IFleetRef.go
- IRobotApplicationRef.go
- IRobotApplicationVersionRef.go
- IRobotRef.go
- ISimulationApplicationRef.go
- ISimulationApplicationVersionRef.go
- RobotApplicationReference.go
- RobotApplicationVersionReference.go
- RobotReference.go
- SimulationApplicationReference.go
- SimulationApplicationVersionReference.go
- main.go