Documentation
¶
Index ¶
- type CloudAutonomousVmClusterReference
- type CloudExadataInfrastructureReference
- type CloudVmClusterReference
- type ICloudAutonomousVmClusterRef
- type ICloudExadataInfrastructureRef
- type ICloudVmClusterRef
- type IOdbNetworkRef
- type IOdbPeeringConnectionRef
- type OdbNetworkReference
- type OdbPeeringConnectionReference
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CloudAutonomousVmClusterReference ¶
type CloudAutonomousVmClusterReference struct {
// The CloudAutonomousVmClusterArn of the CloudAutonomousVmCluster resource.
CloudAutonomousVmClusterArn *string `field:"required" json:"cloudAutonomousVmClusterArn" yaml:"cloudAutonomousVmClusterArn"`
}
A reference to a CloudAutonomousVmCluster 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"
cloudAutonomousVmClusterReference := &CloudAutonomousVmClusterReference{
CloudAutonomousVmClusterArn: jsii.String("cloudAutonomousVmClusterArn"),
}
type CloudExadataInfrastructureReference ¶
type CloudExadataInfrastructureReference struct {
// The CloudExadataInfrastructureArn of the CloudExadataInfrastructure resource.
CloudExadataInfrastructureArn *string `field:"required" json:"cloudExadataInfrastructureArn" yaml:"cloudExadataInfrastructureArn"`
}
A reference to a CloudExadataInfrastructure 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"
cloudExadataInfrastructureReference := &CloudExadataInfrastructureReference{
CloudExadataInfrastructureArn: jsii.String("cloudExadataInfrastructureArn"),
}
type CloudVmClusterReference ¶
type CloudVmClusterReference struct {
// The CloudVmClusterArn of the CloudVmCluster resource.
CloudVmClusterArn *string `field:"required" json:"cloudVmClusterArn" yaml:"cloudVmClusterArn"`
}
A reference to a CloudVmCluster 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"
cloudVmClusterReference := &CloudVmClusterReference{
CloudVmClusterArn: jsii.String("cloudVmClusterArn"),
}
type ICloudAutonomousVmClusterRef ¶
type ICloudAutonomousVmClusterRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a CloudAutonomousVmCluster resource.
// Experimental.
CloudAutonomousVmClusterRef() *CloudAutonomousVmClusterReference
}
Indicates that this resource can be referenced as a CloudAutonomousVmCluster. Experimental.
type ICloudExadataInfrastructureRef ¶
type ICloudExadataInfrastructureRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a CloudExadataInfrastructure resource.
// Experimental.
CloudExadataInfrastructureRef() *CloudExadataInfrastructureReference
}
Indicates that this resource can be referenced as a CloudExadataInfrastructure. Experimental.
type ICloudVmClusterRef ¶
type ICloudVmClusterRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a CloudVmCluster resource.
// Experimental.
CloudVmClusterRef() *CloudVmClusterReference
}
Indicates that this resource can be referenced as a CloudVmCluster. Experimental.
type IOdbNetworkRef ¶
type IOdbNetworkRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a OdbNetwork resource.
// Experimental.
OdbNetworkRef() *OdbNetworkReference
}
Indicates that this resource can be referenced as a OdbNetwork. Experimental.
type IOdbPeeringConnectionRef ¶
type IOdbPeeringConnectionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a OdbPeeringConnection resource.
// Experimental.
OdbPeeringConnectionRef() *OdbPeeringConnectionReference
}
Indicates that this resource can be referenced as a OdbPeeringConnection. Experimental.
type OdbNetworkReference ¶
type OdbNetworkReference struct {
// The OdbNetworkArn of the OdbNetwork resource.
OdbNetworkArn *string `field:"required" json:"odbNetworkArn" yaml:"odbNetworkArn"`
}
A reference to a OdbNetwork 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"
odbNetworkReference := &OdbNetworkReference{
OdbNetworkArn: jsii.String("odbNetworkArn"),
}
type OdbPeeringConnectionReference ¶
type OdbPeeringConnectionReference struct {
// The OdbPeeringConnectionArn of the OdbPeeringConnection resource.
OdbPeeringConnectionArn *string `field:"required" json:"odbPeeringConnectionArn" yaml:"odbPeeringConnectionArn"`
}
A reference to a OdbPeeringConnection 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"
odbPeeringConnectionReference := &OdbPeeringConnectionReference{
OdbPeeringConnectionArn: jsii.String("odbPeeringConnectionArn"),
}