Interface CfnRegistryMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRegistryMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:22.601Z")
@Stability(Stable)
public interface CfnRegistryMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnRegistryPropsMixin.
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.*;
CfnRegistryMixinProps cfnRegistryMixinProps = CfnRegistryMixinProps.builder()
.approvalConfiguration(ApprovalConfigurationProperty.builder()
.autoApprovalRules(List.of("autoApprovalRules"))
.build())
.authorizerType("authorizerType")
.description("description")
.discoveryConfiguration(DiscoveryConfigurationProperty.builder()
.authorizerConfiguration(AuthorizerConfigurationProperty.builder()
.customJwtAuthorizer(CustomJWTAuthorizerConfigurationProperty.builder()
.allowedAudience(List.of("allowedAudience"))
.allowedClients(List.of("allowedClients"))
.allowedScopes(List.of("allowedScopes"))
.customClaims(List.of(CustomClaimValidationTypeProperty.builder()
.authorizingClaimMatchValue(AuthorizingClaimMatchValueTypeProperty.builder()
.claimMatchOperator("claimMatchOperator")
.claimMatchValue(ClaimMatchValueTypeProperty.builder()
.matchValueString("matchValueString")
.matchValueStringList(List.of("matchValueStringList"))
.build())
.build())
.inboundTokenClaimName("inboundTokenClaimName")
.inboundTokenClaimValueType("inboundTokenClaimValueType")
.build()))
.discoveryUrl("discoveryUrl")
.build())
.build())
.build())
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRegistryMixinPropsstatic final classAn implementation forCfnRegistryMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectConfiguration for the registry's record approval workflow.default StringThe type of authorizer that controls how consumers access the registry's search and MCP invoke operations.default StringThe description of the registry.default ObjectDiscovery configuration for the registry.default StringgetName()The name of the registry.getTags()Tags to assign to the registry.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApprovalConfiguration
Configuration for the registry's record approval workflow.Returns union: either
IResolvableorCfnRegistryPropsMixin.ApprovalConfigurationProperty- See Also:
-
getAuthorizerType
The type of authorizer that controls how consumers access the registry's search and MCP invoke operations.- See Also:
-
getDescription
The description of the registry.- See Also:
-
getDiscoveryConfiguration
Discovery configuration for the registry.Controls how consumers are authorized to search the registry and invoke its MCP endpoint.
Returns union: either
IResolvableorCfnRegistryPropsMixin.DiscoveryConfigurationProperty- See Also:
-
getName
The name of the registry.- See Also:
-
getTags
Tags to assign to the registry.- See Also:
-
builder
- Returns:
- a
CfnRegistryMixinProps.BuilderofCfnRegistryMixinProps
-