Interface CfnRegistryRecord.HttpDescriptorProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRegistryRecord.HttpDescriptorProperty.Jsii$Proxy
- Enclosing class:
CfnRegistryRecord
@Stability(Stable)
public static interface CfnRegistryRecord.HttpDescriptorProperty
extends software.amazon.jsii.JsiiSerializable
The HTTP descriptor, populated for records detected from an HTTP 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.*;
HttpDescriptorProperty httpDescriptorProperty = HttpDescriptorProperty.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.HttpDescriptorPropertystatic final classAn implementation forCfnRegistryRecord.HttpDescriptorProperty -
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
-