Interface CfnRegistryRecordPropsMixin.AgentSkillsAdditionalDataProperty

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

@Stability(Stable) public static interface CfnRegistryRecordPropsMixin.AgentSkillsAdditionalDataProperty extends software.amazon.jsii.JsiiSerializable
Additional data associated with an agent skills definition descriptor.

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

See Also: