interface SourceOnlyDescriptorSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AgentRegistry.CfnRegistryRecord.SourceOnlyDescriptorSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsagentregistry#CfnRegistryRecord_SourceOnlyDescriptorSourceProperty |
Java | software.amazon.awscdk.services.agentregistry.CfnRegistryRecord.SourceOnlyDescriptorSourceProperty |
Python | aws_cdk.aws_agentregistry.CfnRegistryRecord.SourceOnlyDescriptorSourceProperty |
TypeScript | aws-cdk-lib » aws_agentregistry » CfnRegistryRecord » SourceOnlyDescriptorSourceProperty |
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 { aws_agentregistry as agentregistry } from 'aws-cdk-lib';
const sourceOnlyDescriptorSourceProperty: agentregistry.CfnRegistryRecord.SourceOnlyDescriptorSourceProperty = {
fromUrl: {
url: 'url',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| from | IResolvable | Source | URL-based source configuration for a source-only descriptor. |
fromUrl?
Type:
IResolvable | Source
(optional)
URL-based source configuration for a source-only descriptor.

.NET
Go
Java
Python
TypeScript