Show / Hide Table of Contents

Class RepositoryReference

A reference to a Repository resource.

Inheritance
object
RepositoryReference
Implements
IRepositoryReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

RepositoryId

The Id of the Repository resource.

public string RepositoryId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IRepositoryReference
Back to top Generated by DocFX