interface AgentSkillsDefinitionDescriptorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AgentRegistry.CfnRegistryRecord.AgentSkillsDefinitionDescriptorProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsagentregistry#CfnRegistryRecord_AgentSkillsDefinitionDescriptorProperty |
Java | software.amazon.awscdk.services.agentregistry.CfnRegistryRecord.AgentSkillsDefinitionDescriptorProperty |
Python | aws_cdk.aws_agentregistry.CfnRegistryRecord.AgentSkillsDefinitionDescriptorProperty |
TypeScript | aws-cdk-lib » aws_agentregistry » CfnRegistryRecord » AgentSkillsDefinitionDescriptorProperty |
The agent skills definition descriptor, populated when the record type is SKILL.
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 agentSkillsDefinitionDescriptorProperty: agentregistry.CfnRegistryRecord.AgentSkillsDefinitionDescriptorProperty = {
additionalData: {
skillMd: {
data: 'data',
dataSchemaVersion: 'dataSchemaVersion',
source: {
fromUrl: {
url: 'url',
},
},
},
},
data: 'data',
dataSchemaVersion: 'dataSchemaVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | IResolvable | Agent | Additional data associated with an agent skills definition descriptor. |
| data? | string | Descriptor payload data. |
| data | string | Version of the descriptor type schema. |
additionalData?
Type:
IResolvable | Agent
(optional)
Additional data associated with an agent skills definition descriptor.
data?
Type:
string
(optional)
Descriptor payload data.
dataSchemaVersion?
Type:
string
(optional)
Version of the descriptor type schema.

.NET
Go
Java
Python
TypeScript