Interface CfnRegistryRecord.AgUiDescriptorProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRegistryRecord.AgUiDescriptorProperty.Jsii$Proxy
- Enclosing class:
CfnRegistryRecord
@Stability(Stable)
public static interface CfnRegistryRecord.AgUiDescriptorProperty
extends software.amazon.jsii.JsiiSerializable
The AG-UI (Agent-User Interaction) descriptor, populated for records detected from an AG-UI protocol source.
This descriptor is source-only: its content is synchronized from the configured source URL rather than supplied inline.
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.*;
AgUiDescriptorProperty agUiDescriptorProperty = AgUiDescriptorProperty.builder()
.source(SourceOnlyDescriptorSourceProperty.builder()
.fromUrl(SourceOnlyDescriptorSourceFromUrlProperty.builder()
.url("url")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRegistryRecord.AgUiDescriptorPropertystatic final classAn implementation forCfnRegistryRecord.AgUiDescriptorProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSource
Source configuration for a source-only descriptor.Unlike mcpServer/a2aAgentCard sources, source-only descriptors do not support credential providers.
Returns union: either
IResolvableorCfnRegistryRecord.SourceOnlyDescriptorSourceProperty- See Also:
-
builder
-