Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
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 ProjectReference ¶
type ProjectReference struct {
// The ARN of the Project resource.
ProjectArn *string `field:"required" json:"projectArn" yaml:"projectArn"`
// The ProjectName of the Project resource.
ProjectName *string `field:"required" json:"projectName" yaml:"projectName"`
}
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"),
ProjectName: jsii.String("projectName"),
}
Click to show internal directories.
Click to hide internal directories.