interface HttpDescriptorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AgentRegistry.CfnRegistryRecord.HttpDescriptorProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsagentregistry#CfnRegistryRecord_HttpDescriptorProperty |
Java | software.amazon.awscdk.services.agentregistry.CfnRegistryRecord.HttpDescriptorProperty |
Python | aws_cdk.aws_agentregistry.CfnRegistryRecord.HttpDescriptorProperty |
TypeScript | aws-cdk-lib » aws_agentregistry » CfnRegistryRecord » HttpDescriptorProperty |
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 { aws_agentregistry as agentregistry } from 'aws-cdk-lib';
const httpDescriptorProperty: agentregistry.CfnRegistryRecord.HttpDescriptorProperty = {
source: {
fromUrl: {
url: 'url',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| source? | IResolvable | Source | Source configuration for a source-only descriptor. |
source?
Type:
IResolvable | Source
(optional)
Source configuration for a source-only descriptor.
Unlike mcpServer/a2aAgentCard sources, source-only descriptors do not support credential providers.

.NET
Go
Java
Python
TypeScript