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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRegistryRecord.AgentSkillsDefinitionDescriptorProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdditionalData
Additional data associated with an agent skills definition descriptor.Returns union: either
IResolvableorCfnRegistryRecord.AgentSkillsAdditionalDataProperty- See Also:
-
getData
Descriptor payload data.- See Also:
-
getDataSchemaVersion
Version of the descriptor type schema.- See Also:
-
builder
@Stability(Stable) static CfnRegistryRecord.AgentSkillsDefinitionDescriptorProperty.Builder builder()
-