Documentation
¶
Index ¶
- type IPublicRepositoryRef
- type IPullThroughCacheRuleRef
- type IRegistryPolicyRef
- type IRegistryScanningConfigurationRef
- type IReplicationConfigurationRef
- type IRepositoryCreationTemplateRef
- type IRepositoryRef
- type PublicRepositoryReference
- type PullThroughCacheRuleReference
- type RegistryPolicyReference
- type RegistryScanningConfigurationReference
- type ReplicationConfigurationReference
- type RepositoryCreationTemplateReference
- type RepositoryReference
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IPublicRepositoryRef ¶
type IPublicRepositoryRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a PublicRepository resource.
// Experimental.
PublicRepositoryRef() *PublicRepositoryReference
}
Indicates that this resource can be referenced as a PublicRepository. Experimental.
type IPullThroughCacheRuleRef ¶
type IPullThroughCacheRuleRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a PullThroughCacheRule resource.
// Experimental.
PullThroughCacheRuleRef() *PullThroughCacheRuleReference
}
Indicates that this resource can be referenced as a PullThroughCacheRule. Experimental.
type IRegistryPolicyRef ¶
type IRegistryPolicyRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a RegistryPolicy resource.
// Experimental.
RegistryPolicyRef() *RegistryPolicyReference
}
Indicates that this resource can be referenced as a RegistryPolicy. Experimental.
type IRegistryScanningConfigurationRef ¶
type IRegistryScanningConfigurationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a RegistryScanningConfiguration resource.
// Experimental.
RegistryScanningConfigurationRef() *RegistryScanningConfigurationReference
}
Indicates that this resource can be referenced as a RegistryScanningConfiguration. Experimental.
type IReplicationConfigurationRef ¶
type IReplicationConfigurationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ReplicationConfiguration resource.
// Experimental.
ReplicationConfigurationRef() *ReplicationConfigurationReference
}
Indicates that this resource can be referenced as a ReplicationConfiguration. Experimental.
type IRepositoryCreationTemplateRef ¶
type IRepositoryCreationTemplateRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a RepositoryCreationTemplate resource.
// Experimental.
RepositoryCreationTemplateRef() *RepositoryCreationTemplateReference
}
Indicates that this resource can be referenced as a RepositoryCreationTemplate. 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 PublicRepositoryReference ¶
type PublicRepositoryReference struct {
// The ARN of the PublicRepository resource.
PublicRepositoryArn *string `field:"required" json:"publicRepositoryArn" yaml:"publicRepositoryArn"`
// The RepositoryName of the PublicRepository resource.
RepositoryName *string `field:"required" json:"repositoryName" yaml:"repositoryName"`
}
A reference to a PublicRepository 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"
publicRepositoryReference := &PublicRepositoryReference{
PublicRepositoryArn: jsii.String("publicRepositoryArn"),
RepositoryName: jsii.String("repositoryName"),
}
type PullThroughCacheRuleReference ¶
type PullThroughCacheRuleReference struct {
// The EcrRepositoryPrefix of the PullThroughCacheRule resource.
EcrRepositoryPrefix *string `field:"required" json:"ecrRepositoryPrefix" yaml:"ecrRepositoryPrefix"`
}
A reference to a PullThroughCacheRule 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"
pullThroughCacheRuleReference := &PullThroughCacheRuleReference{
EcrRepositoryPrefix: jsii.String("ecrRepositoryPrefix"),
}
type RegistryPolicyReference ¶
type RegistryPolicyReference struct {
// The RegistryId of the RegistryPolicy resource.
RegistryId *string `field:"required" json:"registryId" yaml:"registryId"`
}
A reference to a RegistryPolicy 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"
registryPolicyReference := &RegistryPolicyReference{
RegistryId: jsii.String("registryId"),
}
type RegistryScanningConfigurationReference ¶
type RegistryScanningConfigurationReference struct {
// The RegistryId of the RegistryScanningConfiguration resource.
RegistryId *string `field:"required" json:"registryId" yaml:"registryId"`
}
A reference to a RegistryScanningConfiguration 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"
registryScanningConfigurationReference := &RegistryScanningConfigurationReference{
RegistryId: jsii.String("registryId"),
}
type ReplicationConfigurationReference ¶
type ReplicationConfigurationReference struct {
// The RegistryId of the ReplicationConfiguration resource.
RegistryId *string `field:"required" json:"registryId" yaml:"registryId"`
}
A reference to a ReplicationConfiguration 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"
replicationConfigurationReference := &ReplicationConfigurationReference{
RegistryId: jsii.String("registryId"),
}
type RepositoryCreationTemplateReference ¶
type RepositoryCreationTemplateReference struct {
// The Prefix of the RepositoryCreationTemplate resource.
Prefix *string `field:"required" json:"prefix" yaml:"prefix"`
}
A reference to a RepositoryCreationTemplate 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"
repositoryCreationTemplateReference := &RepositoryCreationTemplateReference{
Prefix: jsii.String("prefix"),
}
type RepositoryReference ¶
type RepositoryReference struct {
// The ARN of the Repository resource.
RepositoryArn *string `field:"required" json:"repositoryArn" yaml:"repositoryArn"`
// The RepositoryName of the Repository resource.
RepositoryName *string `field:"required" json:"repositoryName" yaml:"repositoryName"`
}
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"),
RepositoryName: jsii.String("repositoryName"),
}
Source Files
¶
- IPublicRepositoryRef.go
- IPullThroughCacheRuleRef.go
- IRegistryPolicyRef.go
- IRegistryScanningConfigurationRef.go
- IReplicationConfigurationRef.go
- IRepositoryCreationTemplateRef.go
- IRepositoryRef.go
- PublicRepositoryReference.go
- PullThroughCacheRuleReference.go
- RegistryPolicyReference.go
- RegistryScanningConfigurationReference.go
- ReplicationConfigurationReference.go
- RepositoryCreationTemplateReference.go
- RepositoryReference.go
- main.go