Class RepositoryReference
A reference to a Repository resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.ECR
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class RepositoryReference : IRepositoryReference
Syntax (vb)
Public Class RepositoryReference Implements IRepositoryReference
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.ECR;
var repositoryReference = new RepositoryReference {
RepositoryArn = "repositoryArn",
RepositoryName = "repositoryName"
};
Synopsis
Constructors
| RepositoryReference() | A reference to a Repository resource. |
Properties
| RepositoryArn | The ARN of the Repository resource. |
| RepositoryName | The RepositoryName of the Repository resource. |
Constructors
RepositoryReference()
A reference to a Repository resource.
public RepositoryReference()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.ECR;
var repositoryReference = new RepositoryReference {
RepositoryArn = "repositoryArn",
RepositoryName = "repositoryName"
};
Properties
RepositoryArn
The ARN of the Repository resource.
public string RepositoryArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
RepositoryName
The RepositoryName of the Repository resource.
public string RepositoryName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated