Interface CfnRegistryRecord.AgentSkillsMdDescriptorProperty

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

@Stability(Stable) public static interface CfnRegistryRecord.AgentSkillsMdDescriptorProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.agentregistry.*;
 AgentSkillsMdDescriptorProperty agentSkillsMdDescriptorProperty = AgentSkillsMdDescriptorProperty.builder()
         .data("data")
         .dataSchemaVersion("dataSchemaVersion")
         .source(SkillMdSourceProperty.builder()
                 .fromUrl(SkillMdSourceFromUrlProperty.builder()
                         .url("url")
                         .build())
                 .build())
         .build();
 

See Also: