interface AgentSkillsMdDescriptorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AgentRegistry.CfnRegistryRecord.AgentSkillsMdDescriptorProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsagentregistry#CfnRegistryRecord_AgentSkillsMdDescriptorProperty |
Java | software.amazon.awscdk.services.agentregistry.CfnRegistryRecord.AgentSkillsMdDescriptorProperty |
Python | aws_cdk.aws_agentregistry.CfnRegistryRecord.AgentSkillsMdDescriptorProperty |
TypeScript | aws-cdk-lib » aws_agentregistry » CfnRegistryRecord » AgentSkillsMdDescriptorProperty |
Markdown-format descriptor containing an agent skills document.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_agentregistry as agentregistry } from 'aws-cdk-lib';
const agentSkillsMdDescriptorProperty: agentregistry.CfnRegistryRecord.AgentSkillsMdDescriptorProperty = {
data: 'data',
dataSchemaVersion: 'dataSchemaVersion',
source: {
fromUrl: {
url: 'url',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| data? | string | Descriptor payload data. |
| data | string | Version of the descriptor type schema. |
| source? | IResolvable | Skill | Source configuration for a SkillMd document. |
data?
Type:
string
(optional)
Descriptor payload data.
dataSchemaVersion?
Type:
string
(optional)
Version of the descriptor type schema.
source?
Type:
IResolvable | Skill
(optional)
Source configuration for a SkillMd document.
Unlike MCP/A2A sources, SkillMd does not support credential providers.

.NET
Go
Java
Python
TypeScript