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: