interface CustomDescriptorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AgentRegistry.CfnRegistryRecord.CustomDescriptorProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsagentregistry#CfnRegistryRecord_CustomDescriptorProperty |
Java | software.amazon.awscdk.services.agentregistry.CfnRegistryRecord.CustomDescriptorProperty |
Python | aws_cdk.aws_agentregistry.CfnRegistryRecord.CustomDescriptorProperty |
TypeScript | aws-cdk-lib » aws_agentregistry » CfnRegistryRecord » CustomDescriptorProperty |
The custom descriptor, populated when the record type is CUSTOM.
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 customDescriptorProperty: agentregistry.CfnRegistryRecord.CustomDescriptorProperty = {
data: 'data',
};
Properties
| Name | Type | Description |
|---|---|---|
| data? | string | Descriptor payload data. |
data?
Type:
string
(optional)
Descriptor payload data.

.NET
Go
Java
Python
TypeScript