Documentation
¶
Index ¶
- type DevicePoolReference
- type IDevicePoolRef
- type IInstanceProfileRef
- type INetworkProfileRef
- type IProjectRef
- type ITestGridProjectRef
- type IVPCEConfigurationRef
- type InstanceProfileReference
- type NetworkProfileReference
- type ProjectReference
- type TestGridProjectReference
- type VPCEConfigurationReference
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DevicePoolReference ¶
type DevicePoolReference struct {
// The Arn of the DevicePool resource.
DevicePoolArn *string `field:"required" json:"devicePoolArn" yaml:"devicePoolArn"`
}
A reference to a DevicePool 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"
devicePoolReference := &DevicePoolReference{
DevicePoolArn: jsii.String("devicePoolArn"),
}
type IDevicePoolRef ¶
type IDevicePoolRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DevicePool resource.
// Experimental.
DevicePoolRef() *DevicePoolReference
}
Indicates that this resource can be referenced as a DevicePool. Experimental.
type IInstanceProfileRef ¶
type IInstanceProfileRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a InstanceProfile resource.
// Experimental.
InstanceProfileRef() *InstanceProfileReference
}
Indicates that this resource can be referenced as a InstanceProfile. Experimental.
type INetworkProfileRef ¶
type INetworkProfileRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a NetworkProfile resource.
// Experimental.
NetworkProfileRef() *NetworkProfileReference
}
Indicates that this resource can be referenced as a NetworkProfile. Experimental.
type IProjectRef ¶
type IProjectRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Project resource.
// Experimental.
ProjectRef() *ProjectReference
}
Indicates that this resource can be referenced as a Project. Experimental.
type ITestGridProjectRef ¶
type ITestGridProjectRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a TestGridProject resource.
// Experimental.
TestGridProjectRef() *TestGridProjectReference
}
Indicates that this resource can be referenced as a TestGridProject. Experimental.
type IVPCEConfigurationRef ¶
type IVPCEConfigurationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a VPCEConfiguration resource.
// Experimental.
VpceConfigurationRef() *VPCEConfigurationReference
}
Indicates that this resource can be referenced as a VPCEConfiguration. Experimental.
type InstanceProfileReference ¶
type InstanceProfileReference struct {
// The Arn of the InstanceProfile resource.
InstanceProfileArn *string `field:"required" json:"instanceProfileArn" yaml:"instanceProfileArn"`
}
A reference to a InstanceProfile 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"
instanceProfileReference := &InstanceProfileReference{
InstanceProfileArn: jsii.String("instanceProfileArn"),
}
type NetworkProfileReference ¶
type NetworkProfileReference struct {
// The Arn of the NetworkProfile resource.
NetworkProfileArn *string `field:"required" json:"networkProfileArn" yaml:"networkProfileArn"`
}
A reference to a NetworkProfile 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"
networkProfileReference := &NetworkProfileReference{
NetworkProfileArn: jsii.String("networkProfileArn"),
}
type ProjectReference ¶
type ProjectReference struct {
// The Arn of the Project resource.
ProjectArn *string `field:"required" json:"projectArn" yaml:"projectArn"`
}
A reference to a Project 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"
projectReference := &ProjectReference{
ProjectArn: jsii.String("projectArn"),
}
type TestGridProjectReference ¶
type TestGridProjectReference struct {
// The Arn of the TestGridProject resource.
TestGridProjectArn *string `field:"required" json:"testGridProjectArn" yaml:"testGridProjectArn"`
}
A reference to a TestGridProject 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"
testGridProjectReference := &TestGridProjectReference{
TestGridProjectArn: jsii.String("testGridProjectArn"),
}
type VPCEConfigurationReference ¶
type VPCEConfigurationReference struct {
// The Arn of the VPCEConfiguration resource.
VpceConfigurationArn *string `field:"required" json:"vpceConfigurationArn" yaml:"vpceConfigurationArn"`
}
A reference to a VPCEConfiguration 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"
vPCEConfigurationReference := &VPCEConfigurationReference{
VpceConfigurationArn: jsii.String("vpceConfigurationArn"),
}