interface HarnessSkillGitSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnHarness.HarnessSkillGitSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnHarness_HarnessSkillGitSourceProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnHarness.HarnessSkillGitSourceProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnHarness.HarnessSkillGitSourceProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnHarness » HarnessSkillGitSourceProperty |
A git repository containing the skill, cloned over HTTPS.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const harnessSkillGitSourceProperty: bedrockagentcore.CfnHarness.HarnessSkillGitSourceProperty = {
url: 'url',
// the properties below are optional
auth: {
credentialArn: 'credentialArn',
// the properties below are optional
username: 'username',
},
path: 'path',
};
Properties
| Name | Type | Description |
|---|---|---|
| url | string | The HTTPS URL of the git repository. |
| auth? | IResolvable | Harness | Authentication configuration for accessing a private git repository. |
| path? | string | Subdirectory within the repository containing the skill. |
url
Type:
string
The HTTPS URL of the git repository.
auth?
Type:
IResolvable | Harness
(optional)
Authentication configuration for accessing a private git repository.
path?
Type:
string
(optional)
Subdirectory within the repository containing the skill.

.NET
Go
Java
Python
TypeScript