interface A2aAgentCardDescriptorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AgentRegistry.CfnRegistryRecordPropsMixin.A2aAgentCardDescriptorProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsagentregistry#CfnRegistryRecordPropsMixin_A2aAgentCardDescriptorProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.agentregistry.CfnRegistryRecordPropsMixin.A2aAgentCardDescriptorProperty |
Python | aws_cdk.cfn_property_mixins.aws_agentregistry.CfnRegistryRecordPropsMixin.A2aAgentCardDescriptorProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_agentregistry » CfnRegistryRecordPropsMixin » A2aAgentCardDescriptorProperty |
The A2A agent card descriptor, populated when the record type is AGENT.
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 a2aAgentCardDescriptorProperty: agentregistry.CfnRegistryRecordPropsMixin.A2aAgentCardDescriptorProperty = {
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',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| data? | string | Descriptor payload data. |
| data | string | Version of the descriptor type schema. |
| source? | IResolvable | Descriptor | The source configuration that defines where descriptor content is retrieved from. |
data?
Type:
string
(optional)
Descriptor payload data.
dataSchemaVersion?
Type:
string
(optional)
Version of the descriptor type schema.
source?
Type:
IResolvable | Descriptor
(optional)
The source configuration that defines where descriptor content is retrieved from.

.NET
Go
Java
Python
TypeScript