interface AgentSkillsMdDescriptorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AgentRegistry.CfnRegistryRecordPropsMixin.AgentSkillsMdDescriptorProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsagentregistry#CfnRegistryRecordPropsMixin_AgentSkillsMdDescriptorProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.agentregistry.CfnRegistryRecordPropsMixin.AgentSkillsMdDescriptorProperty |
Python | aws_cdk.cfn_property_mixins.aws_agentregistry.CfnRegistryRecordPropsMixin.AgentSkillsMdDescriptorProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_agentregistry » CfnRegistryRecordPropsMixin » 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/cfn-property-mixins';
const agentSkillsMdDescriptorProperty: agentregistry.CfnRegistryRecordPropsMixin.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