interface HarnessSkillGitSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnHarnessPropsMixin.HarnessSkillGitSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnHarnessPropsMixin_HarnessSkillGitSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnHarnessPropsMixin.HarnessSkillGitSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnHarnessPropsMixin.HarnessSkillGitSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnHarnessPropsMixin » 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/cfn-property-mixins';
const harnessSkillGitSourceProperty: bedrockagentcore.CfnHarnessPropsMixin.HarnessSkillGitSourceProperty = {
auth: {
credentialArn: 'credentialArn',
username: 'username',
},
path: 'path',
url: 'url',
};
Properties
| Name | Type | Description |
|---|---|---|
| auth? | IResolvable | Harness | Authentication configuration for accessing a private git repository. |
| path? | string | Subdirectory within the repository containing the skill. |
| url? | 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.
url?
Type:
string
(optional)
The HTTPS URL of the git repository.

.NET
Go
Java
Python
TypeScript