Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GraphReference ¶
type GraphReference struct {
// The ARN of the Graph resource.
GraphArn *string `field:"required" json:"graphArn" yaml:"graphArn"`
// The GraphId of the Graph resource.
GraphId *string `field:"required" json:"graphId" yaml:"graphId"`
}
A reference to a Graph 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"
graphReference := &GraphReference{
GraphArn: jsii.String("graphArn"),
GraphId: jsii.String("graphId"),
}
type IGraphRef ¶
type IGraphRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Graph resource.
// Experimental.
GraphRef() *GraphReference
}
Indicates that this resource can be referenced as a Graph. Experimental.
type IPrivateGraphEndpointRef ¶
type IPrivateGraphEndpointRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a PrivateGraphEndpoint resource.
// Experimental.
PrivateGraphEndpointRef() *PrivateGraphEndpointReference
}
Indicates that this resource can be referenced as a PrivateGraphEndpoint. Experimental.
type PrivateGraphEndpointReference ¶
type PrivateGraphEndpointReference struct {
// The PrivateGraphEndpointIdentifier of the PrivateGraphEndpoint resource.
PrivateGraphEndpointIdentifier *string `field:"required" json:"privateGraphEndpointIdentifier" yaml:"privateGraphEndpointIdentifier"`
}
A reference to a PrivateGraphEndpoint 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"
privateGraphEndpointReference := &PrivateGraphEndpointReference{
PrivateGraphEndpointIdentifier: jsii.String("privateGraphEndpointIdentifier"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.