Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IRepositoryRef ¶
type IRepositoryRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Repository resource.
// Experimental.
RepositoryRef() *RepositoryReference
}
Indicates that this resource can be referenced as a Repository. Experimental.
type RepositoryReference ¶
type RepositoryReference struct {
// The ARN of the Repository resource.
RepositoryArn *string `field:"required" json:"repositoryArn" yaml:"repositoryArn"`
// The Id of the Repository resource.
RepositoryId *string `field:"required" json:"repositoryId" yaml:"repositoryId"`
}
A reference to a Repository 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"
repositoryReference := &RepositoryReference{
RepositoryArn: jsii.String("repositoryArn"),
RepositoryId: jsii.String("repositoryId"),
}
Click to show internal directories.
Click to hide internal directories.