published on Thursday, Sep 10, 2026 by Pulumi
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 dictionarydata "aws_agentregistry_get_registry" "name" {
# arguments
}The following arguments are supported:
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
getRegistry Result
The following output properties are available:
- Approval
Configurations List<GetRegistry Approval Configuration> - 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<GetRegistry Discovery Configuration> - 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. - Dictionary<string, string>
- Map of tags assigned to the registry.
- Updated
At string - Timestamp when the registry was last updated.
- Approval
Configurations []GetRegistry Approval Configuration - Approval configuration for registry records. See below.
- Created
At string - Timestamp when the registry was created.
- Description string
- Description of the registry.
- Discovery
Configurations []GetRegistry Discovery Configuration - 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. - map[string]string
- Map of tags assigned to the registry.
- Updated
At 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. - map(string)
- Map of tags assigned to the registry.
- updated_
at string - Timestamp when the registry was last updated.
- approval
Configurations List<GetRegistry Approval Configuration> - 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<GetRegistry Discovery Configuration> - 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. - Map<String,String>
- Map of tags assigned to the registry.
- updated
At String - Timestamp when the registry was last updated.
- approval
Configurations GetRegistry Approval Configuration[] - Approval configuration for registry records. See below.
- created
At string - Timestamp when the registry was created.
- description string
- Description of the registry.
- discovery
Configurations GetRegistry Discovery Configuration[] - 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. - {[key: string]: string}
- Map of tags assigned to the registry.
- updated
At string - Timestamp when the registry was last updated.
- approval_
configurations Sequence[GetRegistry Approval Configuration] - 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[GetRegistry Discovery Configuration] - 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. - Mapping[str, str]
- Map of tags assigned to the registry.
- updated_
at str - Timestamp when the registry was last updated.
- approval
Configurations List<Property Map> - 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<Property Map> - 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. - Map<String>
- Map of tags assigned to the registry.
- updated
At String - Timestamp when the registry was last updated.
Supporting Types
GetRegistryApprovalConfiguration
- Auto
Approval List<string>Rules - Set of rules that determine which registry records are automatically approved on submission. When empty, submitted records require manual review.
- Auto
Approval []stringRules - Set of rules that determine which registry records are automatically approved on submission. When empty, submitted records require manual review.
- auto_
approval_ list(string)rules - Set of rules that determine which registry records are automatically approved on submission. When empty, submitted records require manual review.
- auto
Approval List<String>Rules - Set of rules that determine which registry records are automatically approved on submission. When empty, submitted records require manual review.
- auto
Approval string[]Rules - Set of rules that determine which registry records are automatically approved on submission. When empty, submitted records require manual review.
- auto_
approval_ Sequence[str]rules - Set of rules that determine which registry records are automatically approved on submission. When empty, submitted records require manual review.
- auto
Approval List<String>Rules - Set of rules that determine which registry records are automatically approved on submission. When empty, submitted records require manual review.
GetRegistryDiscoveryConfiguration
-
List<Get
Registry Discovery Configuration Authorizer Configuration> - Authorizer configuration for the registry. Present when
authorizerTypeisCUSTOM_JWT. See below. - string
- Type of authorizer that controls how consumers access the registry's search and MCP invoke operations. Valid values:
AWS_IAM,CUSTOM_JWT.
-
[]Get
Registry Discovery Configuration Authorizer Configuration - Authorizer configuration for the registry. Present when
authorizerTypeisCUSTOM_JWT. See below. - string
- Type of authorizer that controls how consumers access the registry's search and MCP invoke operations. Valid values:
AWS_IAM,CUSTOM_JWT.
- list(object)
- Authorizer configuration for the registry. Present when
authorizerTypeisCUSTOM_JWT. See below. - string
- Type of authorizer that controls how consumers access the registry's search and MCP invoke operations. Valid values:
AWS_IAM,CUSTOM_JWT.
-
List<Get
Registry Discovery Configuration Authorizer Configuration> - Authorizer configuration for the registry. Present when
authorizerTypeisCUSTOM_JWT. See below. - String
- Type of authorizer that controls how consumers access the registry's search and MCP invoke operations. Valid values:
AWS_IAM,CUSTOM_JWT.
-
Get
Registry Discovery Configuration Authorizer Configuration[] - Authorizer configuration for the registry. Present when
authorizerTypeisCUSTOM_JWT. See below. - string
- Type of authorizer that controls how consumers access the registry's search and MCP invoke operations. Valid values:
AWS_IAM,CUSTOM_JWT.
-
Sequence[Get
Registry Discovery Configuration Authorizer Configuration] - Authorizer configuration for the registry. Present when
authorizerTypeisCUSTOM_JWT. See below. - str
- Type of authorizer that controls how consumers access the registry's search and MCP invoke operations. Valid values:
AWS_IAM,CUSTOM_JWT.
- List<Property Map>
- Authorizer configuration for the registry. Present when
authorizerTypeisCUSTOM_JWT. See below. - String
- Type of authorizer that controls how consumers access the registry's search and MCP invoke operations. Valid values:
AWS_IAM,CUSTOM_JWT.
GetRegistryDiscoveryConfigurationAuthorizerConfiguration
-
List<Get
Registry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer> - Configuration for a custom JWT authorizer. See below.
-
[]Get
Registry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer - Configuration for a custom JWT authorizer. See below.
- list(object)
- Configuration for a custom JWT authorizer. See below.
-
List<Get
Registry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer> - Configuration for a custom JWT authorizer. See below.
-
Get
Registry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer[] - Configuration for a custom JWT authorizer. See below.
-
Sequence[Get
Registry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer] - Configuration for a custom JWT authorizer. See below.
- List<Property Map>
- Configuration for a custom JWT authorizer. See below.
GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizer
- 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<GetRegistry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer Custom Claim> - 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.
- Allowed
Audiences []string - Audience values accepted during JWT validation.
- Allowed
Clients []string - Client identifiers accepted during JWT validation.
- Allowed
Scopes []string - Scopes accepted during JWT validation.
- Custom
Claims []GetRegistry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer Custom Claim - 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.
- 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.
- 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<GetRegistry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer Custom Claim> - 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.
- allowed
Audiences string[] - Audience values accepted during JWT validation.
- allowed
Clients string[] - Client identifiers accepted during JWT validation.
- allowed
Scopes string[] - Scopes accepted during JWT validation.
- custom
Claims GetRegistry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer Custom Claim[] - 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.
- 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[GetRegistry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer Custom Claim] - 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.
- 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<Property Map> - 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.
GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaim
-
List<Get
Registry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer Custom Claim Authorizing Claim Match Value> - Claim match criteria. See below.
- Inbound
Token stringClaim Name - Name of the claim validated in the inbound JWT token.
- Inbound
Token stringClaim Value Type - Type of the claim value. Valid values:
STRING,STRING_ARRAY.
-
[]Get
Registry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer Custom Claim Authorizing Claim Match Value - Claim match criteria. See below.
- Inbound
Token stringClaim Name - Name of the claim validated in the inbound JWT token.
- Inbound
Token stringClaim Value Type - Type of the claim value. Valid values:
STRING,STRING_ARRAY.
- list(object)
- Claim match criteria. See below.
- inbound_
token_ stringclaim_ name - Name of the claim validated in the inbound JWT token.
- inbound_
token_ stringclaim_ value_ type - Type of the claim value. Valid values:
STRING,STRING_ARRAY.
-
List<Get
Registry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer Custom Claim Authorizing Claim Match Value> - Claim match criteria. See below.
- inbound
Token StringClaim Name - Name of the claim validated in the inbound JWT token.
- inbound
Token StringClaim Value Type - Type of the claim value. Valid values:
STRING,STRING_ARRAY.
-
Get
Registry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer Custom Claim Authorizing Claim Match Value[] - Claim match criteria. See below.
- inbound
Token stringClaim Name - Name of the claim validated in the inbound JWT token.
- inbound
Token stringClaim Value Type - Type of the claim value. Valid values:
STRING,STRING_ARRAY.
-
Sequence[Get
Registry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer Custom Claim Authorizing Claim Match Value] - Claim match criteria. See below.
- inbound_
token_ strclaim_ name - Name of the claim validated in the inbound JWT token.
- inbound_
token_ strclaim_ value_ type - Type of the claim value. Valid values:
STRING,STRING_ARRAY.
- List<Property Map>
- Claim match criteria. See below.
- inbound
Token StringClaim Name - Name of the claim validated in the inbound JWT token.
- inbound
Token StringClaim Value Type - Type of the claim value. Valid values:
STRING,STRING_ARRAY.
GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaimAuthorizingClaimMatchValue
- Claim
Match stringOperator - Operator used to match claim values. Valid values:
EQUALS,CONTAINS,CONTAINS_ANY. - Claim
Match List<GetValues Registry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer Custom Claim Authorizing Claim Match Value Claim Match Value> - Value matched against. See below.
- Claim
Match stringOperator - Operator used to match claim values. Valid values:
EQUALS,CONTAINS,CONTAINS_ANY. - Claim
Match []GetValues Registry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer Custom Claim Authorizing Claim Match Value Claim Match Value - Value matched against. See below.
- claim_
match_ stringoperator - Operator used to match claim values. Valid values:
EQUALS,CONTAINS,CONTAINS_ANY. - claim_
match_ list(object)values - Value matched against. See below.
- claim
Match StringOperator - Operator used to match claim values. Valid values:
EQUALS,CONTAINS,CONTAINS_ANY. - claim
Match List<GetValues Registry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer Custom Claim Authorizing Claim Match Value Claim Match Value> - Value matched against. See below.
- claim
Match stringOperator - Operator used to match claim values. Valid values:
EQUALS,CONTAINS,CONTAINS_ANY. - claim
Match GetValues Registry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer Custom Claim Authorizing Claim Match Value Claim Match Value[] - Value matched against. See below.
- claim_
match_ stroperator - Operator used to match claim values. Valid values:
EQUALS,CONTAINS,CONTAINS_ANY. - claim_
match_ Sequence[Getvalues Registry Discovery Configuration Authorizer Configuration Custom Jwt Authorizer Custom Claim Authorizing Claim Match Value Claim Match Value] - Value matched against. See below.
- claim
Match StringOperator - Operator used to match claim values. Valid values:
EQUALS,CONTAINS,CONTAINS_ANY. - claim
Match List<Property Map>Values - Value matched against. See below.
GetRegistryDiscoveryConfigurationAuthorizerConfigurationCustomJwtAuthorizerCustomClaimAuthorizingClaimMatchValueClaimMatchValue
- Match
Value stringString - Single string value to match.
- Match
Value List<string>String Lists - Set of string values to match.
- Match
Value stringString - Single string value to match.
- Match
Value []stringString Lists - Set of string values to match.
- match_
value_ stringstring - Single string value to match.
- match_
value_ list(string)string_ lists - Set of string values to match.
- match
Value StringString - Single string value to match.
- match
Value List<String>String Lists - Set of string values to match.
- match
Value stringString - Single string value to match.
- match
Value string[]String Lists - Set of string values to match.
- match_
value_ strstring - Single string value to match.
- match_
value_ Sequence[str]string_ lists - Set of string values to match.
- match
Value StringString - Single string value to match.
- match
Value List<String>String Lists - 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
awsTerraform Provider.
published on Thursday, Sep 10, 2026 by Pulumi