Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DomainReference ¶
type DomainReference struct {
// The Arn of the Domain resource.
DomainArn *string `field:"required" json:"domainArn" yaml:"domainArn"`
}
A reference to a Domain 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"
domainReference := &DomainReference{
DomainArn: jsii.String("domainArn"),
}
type IDomainRef ¶
type IDomainRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Domain resource.
// Experimental.
DomainRef() *DomainReference
}
Indicates that this resource can be referenced as a Domain. Experimental.
type IPackageGroupRef ¶
type IPackageGroupRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a PackageGroup resource.
// Experimental.
PackageGroupRef() *PackageGroupReference
}
Indicates that this resource can be referenced as a PackageGroup. Experimental.
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 PackageGroupReference ¶
type PackageGroupReference struct {
// The Arn of the PackageGroup resource.
PackageGroupArn *string `field:"required" json:"packageGroupArn" yaml:"packageGroupArn"`
}
A reference to a PackageGroup 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"
packageGroupReference := &PackageGroupReference{
PackageGroupArn: jsii.String("packageGroupArn"),
}
type RepositoryReference ¶
type RepositoryReference struct {
// The Arn of the Repository resource.
RepositoryArn *string `field:"required" json:"repositoryArn" yaml:"repositoryArn"`
}
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"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.