interface RepositoryReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CodeArtifact.RepositoryReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscodeartifact#RepositoryReference |
Java | software.amazon.awscdk.interfaces.codeartifact.RepositoryReference |
Python | aws_cdk.interfaces.aws_codeartifact.RepositoryReference |
TypeScript | aws-cdk-lib » interfaces » aws_codeartifact » 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_codeartifact as interfaces_aws_codeartifact } from 'aws-cdk-lib/interfaces';
const repositoryReference: interfaces_aws_codeartifact.RepositoryReference = {
repositoryArn: 'repositoryArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| repository | string | The Arn of the Repository resource. |
repositoryArn
Type:
string
The Arn of the Repository resource.

.NET
Go
Java
Python
TypeScript