Interface CfnRegistryRecordMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRegistryRecordMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:22.606Z")
@Stability(Stable)
public interface CfnRegistryRecordMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnRegistryRecordPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.agentregistry.*;
CfnRegistryRecordMixinProps cfnRegistryRecordMixinProps = CfnRegistryRecordMixinProps.builder()
.description("description")
.descriptors(DescriptorsProperty.builder()
.a2AAgentCard(A2aAgentCardDescriptorProperty.builder()
.data("data")
.dataSchemaVersion("dataSchemaVersion")
.source(DescriptorSourceProperty.builder()
.fromUrl(DescriptorSourceFromUrlProperty.builder()
.credentialProviderConfigurations(List.of(RegistryRecordCredentialProviderConfigurationProperty.builder()
.credentialProvider(RegistryRecordCredentialProviderUnionProperty.builder()
.iamCredentialProvider(RegistryRecordIamCredentialProviderProperty.builder()
.region("region")
.roleArn("roleArn")
.service("service")
.build())
.oauthCredentialProvider(RegistryRecordOAuthCredentialProviderProperty.builder()
.customParameters(Map.of(
"customParametersKey", "customParameters"))
.grantType("grantType")
.providerArn("providerArn")
.scopes(List.of("scopes"))
.build())
.build())
.credentialProviderType("credentialProviderType")
.build()))
.url("url")
.build())
.build())
.build())
.agentSkillsDefinition(AgentSkillsDefinitionDescriptorProperty.builder()
.additionalData(AgentSkillsAdditionalDataProperty.builder()
.skillMd(AgentSkillsMdDescriptorProperty.builder()
.data("data")
.dataSchemaVersion("dataSchemaVersion")
.source(SkillMdSourceProperty.builder()
.fromUrl(SkillMdSourceFromUrlProperty.builder()
.url("url")
.build())
.build())
.build())
.build())
.data("data")
.dataSchemaVersion("dataSchemaVersion")
.build())
.custom(CustomDescriptorProperty.builder()
.data("data")
.build())
.mcpServer(McpServerDescriptorProperty.builder()
.additionalData(McpServerAdditionalDataProperty.builder()
.tools(McpToolsDescriptorProperty.builder()
.data("data")
.dataSchemaVersion("dataSchemaVersion")
.build())
.build())
.data("data")
.dataSchemaVersion("dataSchemaVersion")
.source(DescriptorSourceProperty.builder()
.fromUrl(DescriptorSourceFromUrlProperty.builder()
.credentialProviderConfigurations(List.of(RegistryRecordCredentialProviderConfigurationProperty.builder()
.credentialProvider(RegistryRecordCredentialProviderUnionProperty.builder()
.iamCredentialProvider(RegistryRecordIamCredentialProviderProperty.builder()
.region("region")
.roleArn("roleArn")
.service("service")
.build())
.oauthCredentialProvider(RegistryRecordOAuthCredentialProviderProperty.builder()
.customParameters(Map.of(
"customParametersKey", "customParameters"))
.grantType("grantType")
.providerArn("providerArn")
.scopes(List.of("scopes"))
.build())
.build())
.credentialProviderType("credentialProviderType")
.build()))
.url("url")
.build())
.build())
.build())
.build())
.displayName("displayName")
.name("name")
.recordType("recordType")
.recordVersion("recordVersion")
.registryId("registryId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRegistryRecordMixinPropsstatic final classAn implementation forCfnRegistryRecordMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of the registry record.default ObjectThe typed set of descriptors for a registry record.default StringThe human-readable display name of the registry record.default StringgetName()The name of the registry record.default StringThe type of the registry record.default StringThe version of the registry record.default StringThe identifier of the registry containing the record.getTags()Tags to assign to the registry record.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of the registry record.- See Also:
-
getDescriptors
The typed set of descriptors for a registry record.Exactly one descriptor field is populated based on the record type.
Returns union: either
IResolvableorCfnRegistryRecordPropsMixin.DescriptorsProperty- See Also:
-
getDisplayName
The human-readable display name of the registry record.- See Also:
-
getName
The name of the registry record.- See Also:
-
getRecordType
The type of the registry record.- See Also:
-
getRecordVersion
The version of the registry record.- See Also:
-
getRegistryId
The identifier of the registry containing the record.- See Also:
-
getTags
Tags to assign to the registry record.- See Also:
-
builder
-