Interface CfnRegistryRecord.SourceOnlyDescriptorSourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRegistryRecord.SourceOnlyDescriptorSourceProperty.Jsii$Proxy
Enclosing class:
CfnRegistryRecord

@Stability(Stable) public static interface CfnRegistryRecord.SourceOnlyDescriptorSourceProperty extends software.amazon.jsii.JsiiSerializable
Source configuration for a source-only descriptor.

Unlike mcpServer/a2aAgentCard sources, source-only descriptors do not support credential providers.

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.*;
 SourceOnlyDescriptorSourceProperty sourceOnlyDescriptorSourceProperty = SourceOnlyDescriptorSourceProperty.builder()
         .fromUrl(SourceOnlyDescriptorSourceFromUrlProperty.builder()
                 .url("url")
                 .build())
         .build();
 

See Also: