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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRegistryRecord.AgentSkillsMdDescriptorPropertystatic final classAn implementation forCfnRegistryRecord.AgentSkillsMdDescriptorProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getData
Descriptor payload data.- See Also:
-
getDataSchemaVersion
Version of the descriptor type schema.- See Also:
-
getSource
Source configuration for a SkillMd document.Unlike MCP/A2A sources, SkillMd does not support credential providers.
Returns union: either
IResolvableorCfnRegistryRecord.SkillMdSourceProperty- See Also:
-
builder
-