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

.NET
Go
Java
Python
TypeScript