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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRegistryRecordPropsMixin.AgentSkillsAdditionalDataProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSkillMd
Markdown-format descriptor containing an agent skills document.Returns union: either
IResolvableorCfnRegistryRecordPropsMixin.AgentSkillsMdDescriptorProperty- See Also:
-
builder
@Stability(Stable) static CfnRegistryRecordPropsMixin.AgentSkillsAdditionalDataProperty.Builder builder()
-