Class CfnHarnessPropsMixin.HarnessSkillGitAuthProperty
Authentication configuration for accessing a private git repository.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnHarnessPropsMixin.HarnessSkillGitAuthProperty : CfnHarnessPropsMixin.IHarnessSkillGitAuthProperty
Syntax (vb)
Public Class CfnHarnessPropsMixin.HarnessSkillGitAuthProperty Implements CfnHarnessPropsMixin.IHarnessSkillGitAuthProperty
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.CfnPropertyMixins.AWS.BedrockAgentCore;
var harnessSkillGitAuthProperty = new HarnessSkillGitAuthProperty {
CredentialArn = "credentialArn",
Username = "username"
};
Synopsis
Constructors
| HarnessSkillGitAuthProperty() | Authentication configuration for accessing a private git repository. |
Properties
| CredentialArn | The ARN of the credential in AgentCore Identity containing the password or personal access token. |
| Username | Username for authentication. |
Constructors
HarnessSkillGitAuthProperty()
Authentication configuration for accessing a private git repository.
public HarnessSkillGitAuthProperty()
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.CfnPropertyMixins.AWS.BedrockAgentCore;
var harnessSkillGitAuthProperty = new HarnessSkillGitAuthProperty {
CredentialArn = "credentialArn",
Username = "username"
};
Properties
CredentialArn
The ARN of the credential in AgentCore Identity containing the password or personal access token.
public string? CredentialArn { get; set; }
Property Value
Remarks
Username
Username for authentication.
public string? Username { get; set; }