interface HarnessSkillS3SourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnHarness.HarnessSkillS3SourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnHarness_HarnessSkillS3SourceProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnHarness.HarnessSkillS3SourceProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnHarness.HarnessSkillS3SourceProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnHarness » HarnessSkillS3SourceProperty |
An S3 source containing the skill.
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 harnessSkillS3SourceProperty: bedrockagentcore.CfnHarness.HarnessSkillS3SourceProperty = {
uri: 'uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| uri | string | The S3 URI pointing to the skill directory (e.g., s3://bucket/skills/my-skill/). |
uri
Type:
string
The S3 URI pointing to the skill directory (e.g., s3://bucket/skills/my-skill/).

.NET
Go
Java
Python
TypeScript