interface SkillMdSourceFromUrlProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AgentRegistry.CfnRegistryRecord.SkillMdSourceFromUrlProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsagentregistry#CfnRegistryRecord_SkillMdSourceFromUrlProperty |
Java | software.amazon.awscdk.services.agentregistry.CfnRegistryRecord.SkillMdSourceFromUrlProperty |
Python | aws_cdk.aws_agentregistry.CfnRegistryRecord.SkillMdSourceFromUrlProperty |
TypeScript | aws-cdk-lib » aws_agentregistry » CfnRegistryRecord » SkillMdSourceFromUrlProperty |
URL-based source for SkillMd content (sync is skipped;
content is provided inline via Data).
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 skillMdSourceFromUrlProperty: agentregistry.CfnRegistryRecord.SkillMdSourceFromUrlProperty = {
url: 'url',
};
Properties
| Name | Type | Description |
|---|---|---|
| url | string | URL source for the SkillMd document. |
url
Type:
string
URL source for the SkillMd document.

.NET
Go
Java
Python
TypeScript