interface HarnessSkillProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnHarness.HarnessSkillProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnHarness_HarnessSkillProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnHarness.HarnessSkillProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnHarness.HarnessSkillProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnHarness » HarnessSkillProperty |
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 harnessSkillProperty: bedrockagentcore.CfnHarness.HarnessSkillProperty = {
awsSkills: {
paths: ['paths'],
},
git: {
url: 'url',
// the properties below are optional
auth: {
credentialArn: 'credentialArn',
// the properties below are optional
username: 'username',
},
path: 'path',
},
path: 'path',
s3: {
uri: 'uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | IResolvable | Harness | AWS Skills baked into the Harness's underlying Runtime. |
| git? | IResolvable | Harness | A git repository containing the skill, cloned over HTTPS. |
| path? | string | The filesystem path to the skill definition. |
| s3? | IResolvable | Harness | An S3 source containing the skill. |
awsSkills?
Type:
IResolvable | Harness
(optional)
AWS Skills baked into the Harness's underlying Runtime.
git?
Type:
IResolvable | Harness
(optional)
A git repository containing the skill, cloned over HTTPS.
path?
Type:
string
(optional)
The filesystem path to the skill definition.
s3?
Type:
IResolvable | Harness
(optional)
An S3 source containing the skill.

.NET
Go
Java
Python
TypeScript