1. Registry
  2. Packages
  3. AWS
  4. API Docs
  5. agentregistry
  6. getRegistry
Viewing docs for AWS v7.46.0
published on Thursday, Sep 10, 2026 by Pulumi
aws logo aws logo
Viewing docs for AWS v7.46.0
published on Thursday, Sep 10, 2026 by Pulumi

    Provides details about an AWS Agent Registry registry.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = aws.agentregistry.getRegistry({
        registryId: "registry-id-12345678",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.agentregistry.get_registry(registry_id="registry-id-12345678")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/agentregistry"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := agentregistry.LookupRegistry(ctx, &agentregistry.LookupRegistryArgs{
    			RegistryId: "registry-id-12345678",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Aws.AgentRegistry.GetRegistry.Invoke(new()
        {
            RegistryId = "registry-id-12345678",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.agentregistry.AgentregistryFunctions;
    import com.pulumi.aws.agentregistry.inputs.GetRegistryArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var example = AgentregistryFunctions.getRegistry(GetRegistryArgs.builder()
                .registryId("registry-id-12345678")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: aws:agentregistry:getRegistry
          arguments:
            registryId: registry-id-12345678
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    data "aws_agentregistry_getregistry" "example" {
      registry_id = "registry-id-12345678"
    }
    

    Lookup by ARN

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = aws.agentregistry.getRegistry({
        registryId: "arn:aws:agent-registry:us-west-2:123456789012:registry/registry-id-12345678",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.agentregistry.get_registry(registry_id="arn:aws:agent-registry:us-west-2:123456789012:registry/registry-id-12345678")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/agentregistry"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := agentregistry.LookupRegistry(ctx, &agentregistry.LookupRegistryArgs{
    			RegistryId: "arn:aws:agent-registry:us-west-2:123456789012:registry/registry-id-12345678",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Aws.AgentRegistry.GetRegistry.Invoke(new()
        {
            RegistryId = "arn:aws:agent-registry:us-west-2:123456789012:registry/registry-id-12345678",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.agentregistry.AgentregistryFunctions;
    import com.pulumi.aws.agentregistry.inputs.GetRegistryArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var example = AgentregistryFunctions.getRegistry(GetRegistryArgs.builder()
                .registryId("arn:aws:agent-registry:us-west-2:123456789012:registry/registry-id-12345678")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: aws:agentregistry:getRegistry
          arguments:
            registryId: arn:aws:agent-registry:us-west-2:123456789012:registry/registry-id-12345678
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    data "aws_agentregistry_getregistry" "example" {
      registry_id = "arn:aws:agent-registry:us-west-2:123456789012:registry/registry-id-12345678"
    }
    

    Using getRegistry

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getRegistry(args: GetRegistryArgs, opts?: InvokeOptions): Promise<GetRegistryResult>
    function getRegistryOutput(args: GetRegistryOutputArgs, opts?: InvokeOutputOptions): Output<GetRegistryResult>
    def get_registry(region: Optional[str] = None,
                     registry_id: Optional[str] = None,
                     opts: Optional[InvokeOptions] = None) -> GetRegistryResult
    def get_registry_output(region: pulumi.Input[Optional[str]] = None,
                     registry_id: pulumi.Input[Optional[str]] = None,
                     opts: Optional[InvokeOutputOptions] = None) -> Output[GetRegistryResult]
    func LookupRegistry(ctx *Context, args *LookupRegistryArgs, opts ...InvokeOption) (*LookupRegistryResult, error)
    func LookupRegistryOutput(ctx *Context, args *LookupRegistryOutputArgs, opts ...InvokeOption) LookupRegistryResultOutput

    > Note: This function is named LookupRegistry in the Go SDK.

    public static class GetRegistry 
    {
        public static Task<GetRegistryResult> InvokeAsync(GetRegistryArgs args, InvokeOptions? opts = null)
        public static Output<GetRegistryResult> Invoke(GetRegistryInvokeArgs args, InvokeOptions? opts = null)
        public static Output<GetRegistryResult> Invoke(GetRegistryInvokeArgs args, InvokeOutputOptions opts)
    }
    public static CompletableFuture<GetRegistryResult> getRegistry(GetRegistryArgs args, InvokeOptions options)
    public static Output<GetRegistryResult> getRegistry(GetRegistryArgs args, InvokeOptions options)
    public static Output<GetRegistryResult> getRegistry(GetRegistryArgs args, InvokeOutputOptions options)
    
    fn::invoke:
      function: aws:agentregistry/getRegistry:getRegistry
      arguments:
        # arguments dictionary
    data "aws_agentregistry_get_registry" "name" {
        # arguments
    }

    The following arguments are supported:

    RegistryId string

    Identifier of the registry to retrieve. Accepts a registry ID or ARN.

    The following arguments are optional:

    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    RegistryId string

    Identifier of the registry to retrieve. Accepts a registry ID or ARN.

    The following arguments are optional:

    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    registry_id string

    Identifier of the registry to retrieve. Accepts a registry ID or ARN.

    The following arguments are optional:

    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    registryId String

    Identifier of the registry to retrieve. Accepts a registry ID or ARN.

    The following arguments are optional:

    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    registryId string

    Identifier of the registry to retrieve. Accepts a registry ID or ARN.

    The following arguments are optional:

    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    registry_id str

    Identifier of the registry to retrieve. Accepts a registry ID or ARN.

    The following arguments are optional:

    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    registryId String

    Identifier of the registry to retrieve. Accepts a registry ID or ARN.

    The following arguments are optional:

    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.

    getRegistry Result

    The following output properties are available:

    ApprovalConfigurations List<GetRegistryApprovalConfiguration>
    Approval configuration for registry records. See below.
    CreatedAt string
    Timestamp when the registry was created.
    Description string
    Description of the registry.
    DiscoveryConfigurations List<GetRegistryDiscoveryConfiguration>
    Discovery configuration for the registry. See below.
    Name string
    Name of the registry.
    Region string
    RegistryArn string
    ARN of the registry.
    RegistryId string
    Status string
    Current status of the registry. Valid values: CREATING, READY, UPDATING, DELETING, CREATE_FAILED, UPDATE_FAILED, DELETE_FAILED.
    Tags Dictionary<string, string>
    Map of tags assigned to the registry.
    UpdatedAt string
    Timestamp when the registry was last updated.
    ApprovalConfigurations []GetRegistryApprovalConfiguration
    Approval configuration for registry records. See below.
    CreatedAt string
    Timestamp when the registry was created.
    Description string
    Description of the registry.
    DiscoveryConfigurations []GetRegistryDiscoveryConfiguration
    Discovery configuration for the registry. See below.
    Name string
    Name of the registry.
    Region string
    RegistryArn string
    ARN of the registry.
    RegistryId string
    Status string
    Current status of the registry. Valid values: CREATING, READY, UPDATING, DELETING, CREATE_FAILED, UPDATE_FAILED, DELETE_FAILED.
    Tags map[string]string
    Map of tags assigned to the registry.
    UpdatedAt string
    Timestamp when the registry was last updated.
    approval_configurations list(object)
    Approval configuration for registry records. See below.
    created_at string
    Timestamp when the registry was created.
    description string
    Description of the registry.
    discovery_configurations list(object)
    Discovery configuration for the registry. See below.
    name string
    Name of the registry.
    region string
    registry_arn string
    ARN of the registry.
    registry_id string
    status string
    Current status of the registry. Valid values: CREATING, READY, UPDATING, DELETING, CREATE_FAILED, UPDATE_FAILED, DELETE_FAILED.
    tags map(string)
    Map of tags assigned to the registry.
    updated_at string
    Timestamp when the registry was last updated.
    approvalConfigurations List<GetRegistryApprovalConfiguration>
    Approval configuration for registry records. See below.
    createdAt String
    Timestamp when the registry was created.
    description String
    Description of the registry.
    discoveryConfigurations List<GetRegistryDiscoveryConfiguration>
    Discovery configuration for the registry. See below.
    name String
    Name of the registry.
    region String
    registryArn String
    ARN of the registry.
    registryId String
    status String
    Current status of the registry. Valid values: CREATING, READY, UPDATING, DELETING, CREATE_FAILED, UPDATE_FAILED, DELETE_FAILED.
    tags Map<String,String>
    Map of tags assigned to the registry.
    updatedAt String
    Timestamp when the registry was last updated.
    approvalConfigurations GetRegistryApprovalConfiguration[]
    Approval configuration for registry records. See below.
    createdAt string
    Timestamp when the registry was created.
    description string
    Description of the registry.
    discoveryConfigurations GetRegistryDiscoveryConfiguration[]
    Discovery configuration for the registry. See below.
    name string
    Name of the registry.
    region string
    registryArn string
    ARN of the registry.
    registryId string
    status string
    Current status of the registry. Valid values: CREATING, READY, UPDATING, DELETING, CREATE_FAILED, UPDATE_FAILED, DELETE_FAILED.
    tags {[key: string]: string}
    Map of tags assigned to the registry.
    updatedAt string
    Timestamp when the registry was last updated.
    approval_configurations Sequence[GetRegistryApprovalConfiguration]
    Approval configuration for registry records. See below.
    created_at str
    Timestamp when the registry was created.
    description str
    Description of the registry.
    discovery_configurations Sequence[GetRegistryDiscoveryConfiguration]
    Discovery configuration for the registry. See below.
    name str
    Name of the registry.
    region str
    registry_arn str
    ARN of the registry.
    registry_id str
    status str
    Current status of the registry. Valid values: CREATING, READY, UPDATING, DELETING, CREATE_FAILED, UPDATE_FAILED, DELETE_FAILED.
    tags Mapping[str, str]
    Map of tags assigned to the registry.
    updated_at str
    Timestamp when the registry was last updated.
    approvalConfigurations List<Property Map>
    Approval configuration for registry records. See below.
    createdAt String
    Timestamp when the registry was created.
    description String
    Description of the registry.
    discoveryConfigurations List<Property Map>
    Discovery configuration for the registry. See below.
    name String
    Name of the registry.
    region String
    registryArn String
    ARN of the registry.
    registryId String
    status String
    Current status of the registry. Valid values: CREATING, READY, UPDATING, DELETING, CREATE_FAILED, UPDATE_FAILED, DELETE_FAILED.
    tags Map<String>
    Map of tags assigned to the registry.
    updatedAt String
    Timestamp when the registry was last updated.

    Supporting Types

    GetRegistryApprovalConfiguration

    AutoApprovalRules List<string>
    Set of rules that determine which registry records are automatically approved on submission. When empty, submitted records require manual review.
    AutoApprovalRules []string
    Set of rules that determine which registry records are automatically approved on submission. When empty, submitted records require manual review.
    auto_approval_rules list(string)
    Set of rules that determine which registry records are automatically approved on submission. When empty, submitted records require manual review.
    autoApprovalRules List<String>
    Set of rules that determine which registry records are automatically approved on submission. When empty, submitted records require manual review.
    autoApprovalRules string[]
    Set of rules that determine which registry records are automatically approved on submission. When empty, submitted records require manual review.
    auto_approval_rules Sequence[str]
    Set of rules that determine which registry records are automatically approved on submission. When empty, submitted records require manual review.
    autoApprovalRules List<String>
    Set of rules that determine which registry records are automatically approved on submission. When empty, submitted records require manual review.

    GetRegistryDiscoveryConfiguration

    AuthorizerConfigurations List<GetRegistryDiscoveryConfigurationAuthorizerConfiguration>
    Authorizer configuration for the registry. Present when authorizerType is CUSTOM_JWT. See below.
    AuthorizerType string
    Type of authorizer that controls how consumers access the registry's search and MCP invoke operations. Valid values: AWS_IAM, CUSTOM_JWT.
    AuthorizerConfigurations []GetRegistryDiscoveryConfigurationAuthorizerConfiguration
    Authorizer configuration for the registry. Present when authorizerType is CUSTOM_JWT. See below.
    AuthorizerType string
    Type of authorizer that controls how consumers access the registry's search and MCP invoke operations. Valid values: AWS_IAM, CUSTOM_JWT.
    authorizer_configurations list(object)
    Authorizer configuration for the registry. Present when authorizerType is CUSTOM_JWT. See below.
    authorizer_type string
    Type of authorizer that controls how consumers access the registry's search and MCP invoke operations. Valid values: AWS_IAM, CUSTOM_JWT.
    authorizerConfigurations List<GetRegistryDiscoveryConfigurationAuthorizerConfiguration>
    Authorizer configuration for the registry. Present when authorizerType is CUSTOM_JWT. See below.
    authorizerType String
    Type of authorizer that controls how consumers access the registry's search and MCP invoke operations. Valid values: AWS_IAM, CUSTOM_JWT.
    authorizerConfigurations GetRegistryDiscoveryConfigurationAuthorizerConfiguration[]
    Authorizer configuration for the registry. Present when authorizerType is CUSTOM_JWT. See below.
    authorizerType string
    Type of authorizer that controls how consumers access the registry's search and MCP invoke operations. Valid values: AWS_IAM, CUSTOM_JWT.
    authorizer_configurations Sequence[GetRegistryDiscoveryConfigurationAuthorizerConfiguration]
    Authorizer configuration for the registry. Present when authorizerType is CUSTOM_JWT. See below.
    authorizer_type str
    Type of authorizer that controls how consumers access the registry's search and MCP invoke operations. Valid values: AWS_IAM, CUSTOM_JWT.
    authorizerConfigurations List<Property Map>
    Authorizer configuration for the registry. Present when authorizerType is CUSTOM_JWT. See below.
    authorizerType String
    Type of authorizer that controls how consumers access the registry's search and MCP invoke operations. Valid values: AWS_IAM, CUSTOM_JWT.

    GetRegistryDiscoveryConfigurationAuthorizerConfiguration

    custom_jwt_authorizers list(object)
    Configuration for a custom JWT authorizer. See below.
    customJwtAuthorizers List<Property Map>
    Configuration for a custom JWT authorizer. See below.

    GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizer

    AllowedAudiences List<string>
    Audience values accepted during JWT validation.
    AllowedClients List<string>
    Client identifiers accepted during JWT validation.
    AllowedScopes List<string>
    Scopes accepted during JWT validation.
    CustomClaims List<GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaim>
    Custom claims for additional JWT validation beyond standard OIDC claims. See below.
    DiscoveryUrl string
    OpenID Connect discovery URL used to retrieve the identity provider's metadata and signing keys.
    AllowedAudiences []string
    Audience values accepted during JWT validation.
    AllowedClients []string
    Client identifiers accepted during JWT validation.
    AllowedScopes []string
    Scopes accepted during JWT validation.
    CustomClaims []GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaim
    Custom claims for additional JWT validation beyond standard OIDC claims. See below.
    DiscoveryUrl string
    OpenID Connect discovery URL used to retrieve the identity provider's metadata and signing keys.
    allowed_audiences list(string)
    Audience values accepted during JWT validation.
    allowed_clients list(string)
    Client identifiers accepted during JWT validation.
    allowed_scopes list(string)
    Scopes accepted during JWT validation.
    custom_claims list(object)
    Custom claims for additional JWT validation beyond standard OIDC claims. See below.
    discovery_url string
    OpenID Connect discovery URL used to retrieve the identity provider's metadata and signing keys.
    allowedAudiences List<String>
    Audience values accepted during JWT validation.
    allowedClients List<String>
    Client identifiers accepted during JWT validation.
    allowedScopes List<String>
    Scopes accepted during JWT validation.
    customClaims List<GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaim>
    Custom claims for additional JWT validation beyond standard OIDC claims. See below.
    discoveryUrl String
    OpenID Connect discovery URL used to retrieve the identity provider's metadata and signing keys.
    allowedAudiences string[]
    Audience values accepted during JWT validation.
    allowedClients string[]
    Client identifiers accepted during JWT validation.
    allowedScopes string[]
    Scopes accepted during JWT validation.
    customClaims GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaim[]
    Custom claims for additional JWT validation beyond standard OIDC claims. See below.
    discoveryUrl string
    OpenID Connect discovery URL used to retrieve the identity provider's metadata and signing keys.
    allowed_audiences Sequence[str]
    Audience values accepted during JWT validation.
    allowed_clients Sequence[str]
    Client identifiers accepted during JWT validation.
    allowed_scopes Sequence[str]
    Scopes accepted during JWT validation.
    custom_claims Sequence[GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaim]
    Custom claims for additional JWT validation beyond standard OIDC claims. See below.
    discovery_url str
    OpenID Connect discovery URL used to retrieve the identity provider's metadata and signing keys.
    allowedAudiences List<String>
    Audience values accepted during JWT validation.
    allowedClients List<String>
    Client identifiers accepted during JWT validation.
    allowedScopes List<String>
    Scopes accepted during JWT validation.
    customClaims List<Property Map>
    Custom claims for additional JWT validation beyond standard OIDC claims. See below.
    discoveryUrl String
    OpenID Connect discovery URL used to retrieve the identity provider's metadata and signing keys.

    GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaim

    AuthorizingClaimMatchValues List<GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaimAuthorizingClaimMatchValue>
    Claim match criteria. See below.
    InboundTokenClaimName string
    Name of the claim validated in the inbound JWT token.
    InboundTokenClaimValueType string
    Type of the claim value. Valid values: STRING, STRING_ARRAY.
    AuthorizingClaimMatchValues []GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaimAuthorizingClaimMatchValue
    Claim match criteria. See below.
    InboundTokenClaimName string
    Name of the claim validated in the inbound JWT token.
    InboundTokenClaimValueType string
    Type of the claim value. Valid values: STRING, STRING_ARRAY.
    authorizing_claim_match_values list(object)
    Claim match criteria. See below.
    inbound_token_claim_name string
    Name of the claim validated in the inbound JWT token.
    inbound_token_claim_value_type string
    Type of the claim value. Valid values: STRING, STRING_ARRAY.
    authorizingClaimMatchValues List<GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaimAuthorizingClaimMatchValue>
    Claim match criteria. See below.
    inboundTokenClaimName String
    Name of the claim validated in the inbound JWT token.
    inboundTokenClaimValueType String
    Type of the claim value. Valid values: STRING, STRING_ARRAY.
    authorizingClaimMatchValues GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaimAuthorizingClaimMatchValue[]
    Claim match criteria. See below.
    inboundTokenClaimName string
    Name of the claim validated in the inbound JWT token.
    inboundTokenClaimValueType string
    Type of the claim value. Valid values: STRING, STRING_ARRAY.
    authorizing_claim_match_values Sequence[GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaimAuthorizingClaimMatchValue]
    Claim match criteria. See below.
    inbound_token_claim_name str
    Name of the claim validated in the inbound JWT token.
    inbound_token_claim_value_type str
    Type of the claim value. Valid values: STRING, STRING_ARRAY.
    authorizingClaimMatchValues List<Property Map>
    Claim match criteria. See below.
    inboundTokenClaimName String
    Name of the claim validated in the inbound JWT token.
    inboundTokenClaimValueType String
    Type of the claim value. Valid values: STRING, STRING_ARRAY.

    GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaimAuthorizingClaimMatchValue

    ClaimMatchOperator string
    Operator used to match claim values. Valid values: EQUALS, CONTAINS, CONTAINS_ANY.
    ClaimMatchValues List<GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaimAuthorizingClaimMatchValueClaimMatchValue>
    Value matched against. See below.
    ClaimMatchOperator string
    Operator used to match claim values. Valid values: EQUALS, CONTAINS, CONTAINS_ANY.
    ClaimMatchValues []GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaimAuthorizingClaimMatchValueClaimMatchValue
    Value matched against. See below.
    claim_match_operator string
    Operator used to match claim values. Valid values: EQUALS, CONTAINS, CONTAINS_ANY.
    claim_match_values list(object)
    Value matched against. See below.
    claimMatchOperator String
    Operator used to match claim values. Valid values: EQUALS, CONTAINS, CONTAINS_ANY.
    claimMatchValues List<GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaimAuthorizingClaimMatchValueClaimMatchValue>
    Value matched against. See below.
    claimMatchOperator string
    Operator used to match claim values. Valid values: EQUALS, CONTAINS, CONTAINS_ANY.
    claimMatchValues GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaimAuthorizingClaimMatchValueClaimMatchValue[]
    Value matched against. See below.
    claim_match_operator str
    Operator used to match claim values. Valid values: EQUALS, CONTAINS, CONTAINS_ANY.
    claim_match_values Sequence[GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaimAuthorizingClaimMatchValueClaimMatchValue]
    Value matched against. See below.
    claimMatchOperator String
    Operator used to match claim values. Valid values: EQUALS, CONTAINS, CONTAINS_ANY.
    claimMatchValues List<Property Map>
    Value matched against. See below.

    GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaimAuthorizingClaimMatchValueClaimMatchValue

    MatchValueString string
    Single string value to match.
    MatchValueStringLists List<string>
    Set of string values to match.
    MatchValueString string
    Single string value to match.
    MatchValueStringLists []string
    Set of string values to match.
    match_value_string string
    Single string value to match.
    match_value_string_lists list(string)
    Set of string values to match.
    matchValueString String
    Single string value to match.
    matchValueStringLists List<String>
    Set of string values to match.
    matchValueString string
    Single string value to match.
    matchValueStringLists string[]
    Set of string values to match.
    match_value_string str
    Single string value to match.
    match_value_string_lists Sequence[str]
    Set of string values to match.
    matchValueString String
    Single string value to match.
    matchValueStringLists List<String>
    Set of string values to match.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo aws logo
    Viewing docs for AWS v7.46.0
    published on Thursday, Sep 10, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial