Interface CfnRegistryRecord.AgentSkillsDefinitionDescriptorProperty

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

@Stability(Stable) public static interface CfnRegistryRecord.AgentSkillsDefinitionDescriptorProperty extends software.amazon.jsii.JsiiSerializable
The agent skills definition descriptor, populated when the record type is SKILL.

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.*;
 AgentSkillsDefinitionDescriptorProperty agentSkillsDefinitionDescriptorProperty = AgentSkillsDefinitionDescriptorProperty.builder()
         .additionalData(AgentSkillsAdditionalDataProperty.builder()
                 .skillMd(AgentSkillsMdDescriptorProperty.builder()
                         .data("data")
                         .dataSchemaVersion("dataSchemaVersion")
                         .source(SkillMdSourceProperty.builder()
                                 .fromUrl(SkillMdSourceFromUrlProperty.builder()
                                         .url("url")
                                         .build())
                                 .build())
                         .build())
                 .build())
         .data("data")
         .dataSchemaVersion("dataSchemaVersion")
         .build();
 

See Also: