Interface CfnRegistryRecordPropsMixin.SkillMdSourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRegistryRecordPropsMixin.SkillMdSourceProperty.Jsii$Proxy
Enclosing class:
CfnRegistryRecordPropsMixin

@Stability(Stable) public static interface CfnRegistryRecordPropsMixin.SkillMdSourceProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.agentregistry.*;
 SkillMdSourceProperty skillMdSourceProperty = SkillMdSourceProperty.builder()
         .fromUrl(SkillMdSourceFromUrlProperty.builder()
                 .url("url")
                 .build())
         .build();
 

See Also: