interface PublicRepositoryReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ECR.PublicRepositoryReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsecr#PublicRepositoryReference |
Java | software.amazon.awscdk.interfaces.ecr.PublicRepositoryReference |
Python | aws_cdk.interfaces.aws_ecr.PublicRepositoryReference |
TypeScript | aws-cdk-lib » interfaces » aws_ecr » PublicRepositoryReference |
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 { aws_ecr as interfaces_aws_ecr } from 'aws-cdk-lib/interfaces';
const publicRepositoryReference: interfaces_aws_ecr.PublicRepositoryReference = {
publicRepositoryArn: 'publicRepositoryArn',
repositoryName: 'repositoryName',
};
Properties
| Name | Type | Description |
|---|---|---|
| public | string | The ARN of the PublicRepository resource. |
| repository | string | The RepositoryName of the PublicRepository resource. |
publicRepositoryArn
Type:
string
The ARN of the PublicRepository resource.
repositoryName
Type:
string
The RepositoryName of the PublicRepository resource.

.NET
Go
Java
Python
TypeScript