interface CfnRegistryRecordMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AgentRegistry.CfnRegistryRecordMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsagentregistry#CfnRegistryRecordMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.agentregistry.CfnRegistryRecordMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_agentregistry.CfnRegistryRecordMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_agentregistry » CfnRegistryRecordMixinProps |
Properties for CfnRegistryRecordPropsMixin.
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 cfnRegistryRecordMixinProps: agentregistry.CfnRegistryRecordMixinProps = {
description: 'description',
descriptors: {
a2AAgentCard: {
data: 'data',
dataSchemaVersion: 'dataSchemaVersion',
source: {
fromUrl: {
credentialProviderConfigurations: [{
credentialProvider: {
iamCredentialProvider: {
region: 'region',
roleArn: 'roleArn',
service: 'service',
},
oauthCredentialProvider: {
customParameters: {
customParametersKey: 'customParameters',
},
grantType: 'grantType',
providerArn: 'providerArn',
scopes: ['scopes'],
},
},
credentialProviderType: 'credentialProviderType',
}],
url: 'url',
},
},
},
agentSkillsDefinition: {
additionalData: {
skillMd: {
data: 'data',
dataSchemaVersion: 'dataSchemaVersion',
source: {
fromUrl: {
url: 'url',
},
},
},
},
data: 'data',
dataSchemaVersion: 'dataSchemaVersion',
},
custom: {
data: 'data',
},
mcpServer: {
additionalData: {
tools: {
data: 'data',
dataSchemaVersion: 'dataSchemaVersion',
},
},
data: 'data',
dataSchemaVersion: 'dataSchemaVersion',
source: {
fromUrl: {
credentialProviderConfigurations: [{
credentialProvider: {
iamCredentialProvider: {
region: 'region',
roleArn: 'roleArn',
service: 'service',
},
oauthCredentialProvider: {
customParameters: {
customParametersKey: 'customParameters',
},
grantType: 'grantType',
providerArn: 'providerArn',
scopes: ['scopes'],
},
},
credentialProviderType: 'credentialProviderType',
}],
url: 'url',
},
},
},
},
displayName: 'displayName',
name: 'name',
recordType: 'recordType',
recordVersion: 'recordVersion',
registryId: 'registryId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the registry record. |
| descriptors? | IResolvable | Descriptors | The typed set of descriptors for a registry record. |
| display | string | The human-readable display name of the registry record. |
| name? | string | The name of the registry record. |
| record | string | The type of the registry record. |
| record | string | The version of the registry record. |
| registry | string | The identifier of the registry containing the record. |
| tags? | Cfn[] | Tags to assign to the registry record. |
description?
Type:
string
(optional)
The description of the registry record.
descriptors?
Type:
IResolvable | Descriptors
(optional)
The typed set of descriptors for a registry record.
Exactly one descriptor field is populated based on the record type.
displayName?
Type:
string
(optional)
The human-readable display name of the registry record.
name?
Type:
string
(optional)
The name of the registry record.
recordType?
Type:
string
(optional)
The type of the registry record.
recordVersion?
Type:
string
(optional)
The version of the registry record.
registryId?
Type:
string
(optional)
The identifier of the registry containing the record.
tags?
Type:
Cfn[]
(optional)
Tags to assign to the registry record.

.NET
Go
Java
Python
TypeScript