Class RepositoryReference
A reference to a Repository resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CodeCommit
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.AWS.CodeCommit;
var repositoryReference = new RepositoryReference {
RepositoryArn = "repositoryArn",
RepositoryId = "repositoryId"
};
Synopsis
Constructors
RepositoryReference() | A reference to a Repository resource. |
Properties
RepositoryArn | The ARN of the Repository resource. |
RepositoryId | The Id 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.AWS.CodeCommit;
var repositoryReference = new RepositoryReference {
RepositoryArn = "repositoryArn",
RepositoryId = "repositoryId"
};
Properties
RepositoryArn
The ARN of the Repository resource.
public string RepositoryArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
RepositoryId
The Id of the Repository resource.
public string RepositoryId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated