interface SkillMdSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AgentRegistry.CfnRegistryRecord.SkillMdSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsagentregistry#CfnRegistryRecord_SkillMdSourceProperty |
Java | software.amazon.awscdk.services.agentregistry.CfnRegistryRecord.SkillMdSourceProperty |
Python | aws_cdk.aws_agentregistry.CfnRegistryRecord.SkillMdSourceProperty |
TypeScript | aws-cdk-lib » aws_agentregistry » CfnRegistryRecord » SkillMdSourceProperty |
Source configuration for a SkillMd document.
Unlike MCP/A2A sources, SkillMd does not support credential providers.
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 skillMdSourceProperty: agentregistry.CfnRegistryRecord.SkillMdSourceProperty = {
fromUrl: {
url: 'url',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| from | IResolvable | Skill | URL-based source for SkillMd content (sync is skipped; |
fromUrl?
Type:
IResolvable | Skill
(optional)
URL-based source for SkillMd content (sync is skipped;
content is provided inline via Data).

.NET
Go
Java
Python
TypeScript