interface HttpDescriptorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AgentRegistry.CfnRegistryRecordPropsMixin.HttpDescriptorProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsagentregistry#CfnRegistryRecordPropsMixin_HttpDescriptorProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.agentregistry.CfnRegistryRecordPropsMixin.HttpDescriptorProperty |
Python | aws_cdk.cfn_property_mixins.aws_agentregistry.CfnRegistryRecordPropsMixin.HttpDescriptorProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_agentregistry » CfnRegistryRecordPropsMixin » 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/cfn-property-mixins';
const httpDescriptorProperty: agentregistry.CfnRegistryRecordPropsMixin.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