Interface ICfnRepositoryLinkMixinProps
Properties for CfnRepositoryLinkPropsMixin.
Namespace: Amazon.CDK.Mixins.Preview.AWS.CodeStarConnections.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface ICfnRepositoryLinkMixinProps
Syntax (vb)
Public Interface ICfnRepositoryLinkMixinProps
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.Mixins.Preview.AWS.CodeStarConnections.Mixins;
var cfnRepositoryLinkMixinProps = new CfnRepositoryLinkMixinProps {
ConnectionArn = "connectionArn",
EncryptionKeyArn = "encryptionKeyArn",
OwnerId = "ownerId",
RepositoryName = "repositoryName",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
| ConnectionArn | The Amazon Resource Name (ARN) of the connection associated with the repository link. |
| EncryptionKeyArn | The Amazon Resource Name (ARN) of the encryption key for the repository associated with the repository link. |
| OwnerId | The owner ID for the repository associated with the repository link, such as the owner ID in GitHub. |
| RepositoryName | The name of the repository associated with the repository link. |
| Tags | The tags for the repository to be associated with the repository link. |
Properties
ConnectionArn
The Amazon Resource Name (ARN) of the connection associated with the repository link.
string? ConnectionArn { get; }
Property Value
Remarks
EncryptionKeyArn
The Amazon Resource Name (ARN) of the encryption key for the repository associated with the repository link.
string? EncryptionKeyArn { get; }
Property Value
Remarks
OwnerId
The owner ID for the repository associated with the repository link, such as the owner ID in GitHub.
string? OwnerId { get; }
Property Value
Remarks
RepositoryName
The name of the repository associated with the repository link.
string? RepositoryName { get; }
Property Value
Remarks
Tags
The tags for the repository to be associated with the repository link.
ICfnTag[]? Tags { get; }
Property Value
ICfnTag[]