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