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: