1. Packages
  2. AWS
  3. API Docs
  4. bedrock
  5. AgentcoreGateway
AWS v7.10.0 published on Friday, Oct 24, 2025 by Pulumi

aws.bedrock.AgentcoreGateway

Get Started
aws logo
AWS v7.10.0 published on Friday, Oct 24, 2025 by Pulumi

    Manages an AWS Bedrock AgentCore Gateway. With Gateway, developers can convert APIs, Lambda functions, and existing services into Model Context Protocol (MCP)-compatible tools.

    Example Usage

    Gateway with JWT Authorization

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const assumeRole = aws.iam.getPolicyDocument({
        statements: [{
            effect: "Allow",
            actions: ["sts:AssumeRole"],
            principals: [{
                type: "Service",
                identifiers: ["bedrock-agentcore.amazonaws.com"],
            }],
        }],
    });
    const example = new aws.iam.Role("example", {
        name: "bedrock-agentcore-gateway-role",
        assumeRolePolicy: assumeRole.then(assumeRole => assumeRole.json),
    });
    const exampleAgentcoreGateway = new aws.bedrock.AgentcoreGateway("example", {
        name: "example-gateway",
        roleArn: example.arn,
        authorizerType: "CUSTOM_JWT",
        authorizerConfiguration: {
            customJwtAuthorizer: {
                discoveryUrl: "https://accounts.google.com/.well-known/openid-configuration",
                allowedAudiences: [
                    "test1",
                    "test2",
                ],
            },
        },
        protocolType: "MCP",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    assume_role = aws.iam.get_policy_document(statements=[{
        "effect": "Allow",
        "actions": ["sts:AssumeRole"],
        "principals": [{
            "type": "Service",
            "identifiers": ["bedrock-agentcore.amazonaws.com"],
        }],
    }])
    example = aws.iam.Role("example",
        name="bedrock-agentcore-gateway-role",
        assume_role_policy=assume_role.json)
    example_agentcore_gateway = aws.bedrock.AgentcoreGateway("example",
        name="example-gateway",
        role_arn=example.arn,
        authorizer_type="CUSTOM_JWT",
        authorizer_configuration={
            "custom_jwt_authorizer": {
                "discovery_url": "https://accounts.google.com/.well-known/openid-configuration",
                "allowed_audiences": [
                    "test1",
                    "test2",
                ],
            },
        },
        protocol_type="MCP")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/bedrock"
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/iam"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		assumeRole, err := iam.GetPolicyDocument(ctx, &iam.GetPolicyDocumentArgs{
    			Statements: []iam.GetPolicyDocumentStatement{
    				{
    					Effect: pulumi.StringRef("Allow"),
    					Actions: []string{
    						"sts:AssumeRole",
    					},
    					Principals: []iam.GetPolicyDocumentStatementPrincipal{
    						{
    							Type: "Service",
    							Identifiers: []string{
    								"bedrock-agentcore.amazonaws.com",
    							},
    						},
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		example, err := iam.NewRole(ctx, "example", &iam.RoleArgs{
    			Name:             pulumi.String("bedrock-agentcore-gateway-role"),
    			AssumeRolePolicy: pulumi.String(assumeRole.Json),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = bedrock.NewAgentcoreGateway(ctx, "example", &bedrock.AgentcoreGatewayArgs{
    			Name:           pulumi.String("example-gateway"),
    			RoleArn:        example.Arn,
    			AuthorizerType: pulumi.String("CUSTOM_JWT"),
    			AuthorizerConfiguration: &bedrock.AgentcoreGatewayAuthorizerConfigurationArgs{
    				CustomJwtAuthorizer: &bedrock.AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizerArgs{
    					DiscoveryUrl: pulumi.String("https://accounts.google.com/.well-known/openid-configuration"),
    					AllowedAudiences: pulumi.StringArray{
    						pulumi.String("test1"),
    						pulumi.String("test2"),
    					},
    				},
    			},
    			ProtocolType: pulumi.String("MCP"),
    		})
    		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 assumeRole = Aws.Iam.GetPolicyDocument.Invoke(new()
        {
            Statements = new[]
            {
                new Aws.Iam.Inputs.GetPolicyDocumentStatementInputArgs
                {
                    Effect = "Allow",
                    Actions = new[]
                    {
                        "sts:AssumeRole",
                    },
                    Principals = new[]
                    {
                        new Aws.Iam.Inputs.GetPolicyDocumentStatementPrincipalInputArgs
                        {
                            Type = "Service",
                            Identifiers = new[]
                            {
                                "bedrock-agentcore.amazonaws.com",
                            },
                        },
                    },
                },
            },
        });
    
        var example = new Aws.Iam.Role("example", new()
        {
            Name = "bedrock-agentcore-gateway-role",
            AssumeRolePolicy = assumeRole.Apply(getPolicyDocumentResult => getPolicyDocumentResult.Json),
        });
    
        var exampleAgentcoreGateway = new Aws.Bedrock.AgentcoreGateway("example", new()
        {
            Name = "example-gateway",
            RoleArn = example.Arn,
            AuthorizerType = "CUSTOM_JWT",
            AuthorizerConfiguration = new Aws.Bedrock.Inputs.AgentcoreGatewayAuthorizerConfigurationArgs
            {
                CustomJwtAuthorizer = new Aws.Bedrock.Inputs.AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizerArgs
                {
                    DiscoveryUrl = "https://accounts.google.com/.well-known/openid-configuration",
                    AllowedAudiences = new[]
                    {
                        "test1",
                        "test2",
                    },
                },
            },
            ProtocolType = "MCP",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.iam.IamFunctions;
    import com.pulumi.aws.iam.inputs.GetPolicyDocumentArgs;
    import com.pulumi.aws.iam.Role;
    import com.pulumi.aws.iam.RoleArgs;
    import com.pulumi.aws.bedrock.AgentcoreGateway;
    import com.pulumi.aws.bedrock.AgentcoreGatewayArgs;
    import com.pulumi.aws.bedrock.inputs.AgentcoreGatewayAuthorizerConfigurationArgs;
    import com.pulumi.aws.bedrock.inputs.AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizerArgs;
    import java.util.List;
    import java.util.ArrayList;
    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 assumeRole = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
                .statements(GetPolicyDocumentStatementArgs.builder()
                    .effect("Allow")
                    .actions("sts:AssumeRole")
                    .principals(GetPolicyDocumentStatementPrincipalArgs.builder()
                        .type("Service")
                        .identifiers("bedrock-agentcore.amazonaws.com")
                        .build())
                    .build())
                .build());
    
            var example = new Role("example", RoleArgs.builder()
                .name("bedrock-agentcore-gateway-role")
                .assumeRolePolicy(assumeRole.json())
                .build());
    
            var exampleAgentcoreGateway = new AgentcoreGateway("exampleAgentcoreGateway", AgentcoreGatewayArgs.builder()
                .name("example-gateway")
                .roleArn(example.arn())
                .authorizerType("CUSTOM_JWT")
                .authorizerConfiguration(AgentcoreGatewayAuthorizerConfigurationArgs.builder()
                    .customJwtAuthorizer(AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizerArgs.builder()
                        .discoveryUrl("https://accounts.google.com/.well-known/openid-configuration")
                        .allowedAudiences(                    
                            "test1",
                            "test2")
                        .build())
                    .build())
                .protocolType("MCP")
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:iam:Role
        properties:
          name: bedrock-agentcore-gateway-role
          assumeRolePolicy: ${assumeRole.json}
      exampleAgentcoreGateway:
        type: aws:bedrock:AgentcoreGateway
        name: example
        properties:
          name: example-gateway
          roleArn: ${example.arn}
          authorizerType: CUSTOM_JWT
          authorizerConfiguration:
            customJwtAuthorizer:
              discoveryUrl: https://accounts.google.com/.well-known/openid-configuration
              allowedAudiences:
                - test1
                - test2
          protocolType: MCP
    variables:
      assumeRole:
        fn::invoke:
          function: aws:iam:getPolicyDocument
          arguments:
            statements:
              - effect: Allow
                actions:
                  - sts:AssumeRole
                principals:
                  - type: Service
                    identifiers:
                      - bedrock-agentcore.amazonaws.com
    

    Gateway with advanced JWT Authorization and MCP Configuration

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.bedrock.AgentcoreGateway("example", {
        name: "mcp-gateway",
        description: "Gateway for MCP communication",
        roleArn: exampleAwsIamRole.arn,
        authorizerType: "CUSTOM_JWT",
        authorizerConfiguration: {
            customJwtAuthorizer: {
                discoveryUrl: "https://auth.example.com/.well-known/openid-configuration",
                allowedAudiences: [
                    "app-client",
                    "web-client",
                ],
                allowedClients: [
                    "client-123",
                    "client-456",
                ],
            },
        },
        protocolType: "MCP",
        protocolConfiguration: {
            mcp: {
                instructions: "Gateway for handling MCP requests",
                searchType: "HYBRID",
                supportedVersions: [
                    "2025-03-26",
                    "2025-06-18",
                ],
            },
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.bedrock.AgentcoreGateway("example",
        name="mcp-gateway",
        description="Gateway for MCP communication",
        role_arn=example_aws_iam_role["arn"],
        authorizer_type="CUSTOM_JWT",
        authorizer_configuration={
            "custom_jwt_authorizer": {
                "discovery_url": "https://auth.example.com/.well-known/openid-configuration",
                "allowed_audiences": [
                    "app-client",
                    "web-client",
                ],
                "allowed_clients": [
                    "client-123",
                    "client-456",
                ],
            },
        },
        protocol_type="MCP",
        protocol_configuration={
            "mcp": {
                "instructions": "Gateway for handling MCP requests",
                "search_type": "HYBRID",
                "supported_versions": [
                    "2025-03-26",
                    "2025-06-18",
                ],
            },
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/bedrock"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := bedrock.NewAgentcoreGateway(ctx, "example", &bedrock.AgentcoreGatewayArgs{
    			Name:           pulumi.String("mcp-gateway"),
    			Description:    pulumi.String("Gateway for MCP communication"),
    			RoleArn:        pulumi.Any(exampleAwsIamRole.Arn),
    			AuthorizerType: pulumi.String("CUSTOM_JWT"),
    			AuthorizerConfiguration: &bedrock.AgentcoreGatewayAuthorizerConfigurationArgs{
    				CustomJwtAuthorizer: &bedrock.AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizerArgs{
    					DiscoveryUrl: pulumi.String("https://auth.example.com/.well-known/openid-configuration"),
    					AllowedAudiences: pulumi.StringArray{
    						pulumi.String("app-client"),
    						pulumi.String("web-client"),
    					},
    					AllowedClients: pulumi.StringArray{
    						pulumi.String("client-123"),
    						pulumi.String("client-456"),
    					},
    				},
    			},
    			ProtocolType: pulumi.String("MCP"),
    			ProtocolConfiguration: &bedrock.AgentcoreGatewayProtocolConfigurationArgs{
    				Mcp: &bedrock.AgentcoreGatewayProtocolConfigurationMcpArgs{
    					Instructions: pulumi.String("Gateway for handling MCP requests"),
    					SearchType:   pulumi.String("HYBRID"),
    					SupportedVersions: pulumi.StringArray{
    						pulumi.String("2025-03-26"),
    						pulumi.String("2025-06-18"),
    					},
    				},
    			},
    		})
    		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 = new Aws.Bedrock.AgentcoreGateway("example", new()
        {
            Name = "mcp-gateway",
            Description = "Gateway for MCP communication",
            RoleArn = exampleAwsIamRole.Arn,
            AuthorizerType = "CUSTOM_JWT",
            AuthorizerConfiguration = new Aws.Bedrock.Inputs.AgentcoreGatewayAuthorizerConfigurationArgs
            {
                CustomJwtAuthorizer = new Aws.Bedrock.Inputs.AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizerArgs
                {
                    DiscoveryUrl = "https://auth.example.com/.well-known/openid-configuration",
                    AllowedAudiences = new[]
                    {
                        "app-client",
                        "web-client",
                    },
                    AllowedClients = new[]
                    {
                        "client-123",
                        "client-456",
                    },
                },
            },
            ProtocolType = "MCP",
            ProtocolConfiguration = new Aws.Bedrock.Inputs.AgentcoreGatewayProtocolConfigurationArgs
            {
                Mcp = new Aws.Bedrock.Inputs.AgentcoreGatewayProtocolConfigurationMcpArgs
                {
                    Instructions = "Gateway for handling MCP requests",
                    SearchType = "HYBRID",
                    SupportedVersions = new[]
                    {
                        "2025-03-26",
                        "2025-06-18",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.bedrock.AgentcoreGateway;
    import com.pulumi.aws.bedrock.AgentcoreGatewayArgs;
    import com.pulumi.aws.bedrock.inputs.AgentcoreGatewayAuthorizerConfigurationArgs;
    import com.pulumi.aws.bedrock.inputs.AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizerArgs;
    import com.pulumi.aws.bedrock.inputs.AgentcoreGatewayProtocolConfigurationArgs;
    import com.pulumi.aws.bedrock.inputs.AgentcoreGatewayProtocolConfigurationMcpArgs;
    import java.util.List;
    import java.util.ArrayList;
    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) {
            var example = new AgentcoreGateway("example", AgentcoreGatewayArgs.builder()
                .name("mcp-gateway")
                .description("Gateway for MCP communication")
                .roleArn(exampleAwsIamRole.arn())
                .authorizerType("CUSTOM_JWT")
                .authorizerConfiguration(AgentcoreGatewayAuthorizerConfigurationArgs.builder()
                    .customJwtAuthorizer(AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizerArgs.builder()
                        .discoveryUrl("https://auth.example.com/.well-known/openid-configuration")
                        .allowedAudiences(                    
                            "app-client",
                            "web-client")
                        .allowedClients(                    
                            "client-123",
                            "client-456")
                        .build())
                    .build())
                .protocolType("MCP")
                .protocolConfiguration(AgentcoreGatewayProtocolConfigurationArgs.builder()
                    .mcp(AgentcoreGatewayProtocolConfigurationMcpArgs.builder()
                        .instructions("Gateway for handling MCP requests")
                        .searchType("HYBRID")
                        .supportedVersions(                    
                            "2025-03-26",
                            "2025-06-18")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:bedrock:AgentcoreGateway
        properties:
          name: mcp-gateway
          description: Gateway for MCP communication
          roleArn: ${exampleAwsIamRole.arn}
          authorizerType: CUSTOM_JWT
          authorizerConfiguration:
            customJwtAuthorizer:
              discoveryUrl: https://auth.example.com/.well-known/openid-configuration
              allowedAudiences:
                - app-client
                - web-client
              allowedClients:
                - client-123
                - client-456
          protocolType: MCP
          protocolConfiguration:
            mcp:
              instructions: Gateway for handling MCP requests
              searchType: HYBRID
              supportedVersions:
                - 2025-03-26
                - 2025-06-18
    

    Create AgentcoreGateway Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AgentcoreGateway(name: string, args: AgentcoreGatewayArgs, opts?: CustomResourceOptions);
    @overload
    def AgentcoreGateway(resource_name: str,
                         args: AgentcoreGatewayArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def AgentcoreGateway(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         authorizer_type: Optional[str] = None,
                         protocol_type: Optional[str] = None,
                         role_arn: Optional[str] = None,
                         authorizer_configuration: Optional[AgentcoreGatewayAuthorizerConfigurationArgs] = None,
                         description: Optional[str] = None,
                         exception_level: Optional[str] = None,
                         kms_key_arn: Optional[str] = None,
                         name: Optional[str] = None,
                         protocol_configuration: Optional[AgentcoreGatewayProtocolConfigurationArgs] = None,
                         region: Optional[str] = None,
                         tags: Optional[Mapping[str, str]] = None,
                         timeouts: Optional[AgentcoreGatewayTimeoutsArgs] = None)
    func NewAgentcoreGateway(ctx *Context, name string, args AgentcoreGatewayArgs, opts ...ResourceOption) (*AgentcoreGateway, error)
    public AgentcoreGateway(string name, AgentcoreGatewayArgs args, CustomResourceOptions? opts = null)
    public AgentcoreGateway(String name, AgentcoreGatewayArgs args)
    public AgentcoreGateway(String name, AgentcoreGatewayArgs args, CustomResourceOptions options)
    
    type: aws:bedrock:AgentcoreGateway
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AgentcoreGatewayArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AgentcoreGatewayArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AgentcoreGatewayArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AgentcoreGatewayArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AgentcoreGatewayArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var agentcoreGatewayResource = new Aws.Bedrock.AgentcoreGateway("agentcoreGatewayResource", new()
    {
        AuthorizerType = "string",
        ProtocolType = "string",
        RoleArn = "string",
        AuthorizerConfiguration = new Aws.Bedrock.Inputs.AgentcoreGatewayAuthorizerConfigurationArgs
        {
            CustomJwtAuthorizer = new Aws.Bedrock.Inputs.AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizerArgs
            {
                DiscoveryUrl = "string",
                AllowedAudiences = new[]
                {
                    "string",
                },
                AllowedClients = new[]
                {
                    "string",
                },
            },
        },
        Description = "string",
        ExceptionLevel = "string",
        KmsKeyArn = "string",
        Name = "string",
        ProtocolConfiguration = new Aws.Bedrock.Inputs.AgentcoreGatewayProtocolConfigurationArgs
        {
            Mcp = new Aws.Bedrock.Inputs.AgentcoreGatewayProtocolConfigurationMcpArgs
            {
                Instructions = "string",
                SearchType = "string",
                SupportedVersions = new[]
                {
                    "string",
                },
            },
        },
        Region = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.Bedrock.Inputs.AgentcoreGatewayTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := bedrock.NewAgentcoreGateway(ctx, "agentcoreGatewayResource", &bedrock.AgentcoreGatewayArgs{
    	AuthorizerType: pulumi.String("string"),
    	ProtocolType:   pulumi.String("string"),
    	RoleArn:        pulumi.String("string"),
    	AuthorizerConfiguration: &bedrock.AgentcoreGatewayAuthorizerConfigurationArgs{
    		CustomJwtAuthorizer: &bedrock.AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizerArgs{
    			DiscoveryUrl: pulumi.String("string"),
    			AllowedAudiences: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			AllowedClients: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	Description:    pulumi.String("string"),
    	ExceptionLevel: pulumi.String("string"),
    	KmsKeyArn:      pulumi.String("string"),
    	Name:           pulumi.String("string"),
    	ProtocolConfiguration: &bedrock.AgentcoreGatewayProtocolConfigurationArgs{
    		Mcp: &bedrock.AgentcoreGatewayProtocolConfigurationMcpArgs{
    			Instructions: pulumi.String("string"),
    			SearchType:   pulumi.String("string"),
    			SupportedVersions: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	Region: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &bedrock.AgentcoreGatewayTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var agentcoreGatewayResource = new AgentcoreGateway("agentcoreGatewayResource", AgentcoreGatewayArgs.builder()
        .authorizerType("string")
        .protocolType("string")
        .roleArn("string")
        .authorizerConfiguration(AgentcoreGatewayAuthorizerConfigurationArgs.builder()
            .customJwtAuthorizer(AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizerArgs.builder()
                .discoveryUrl("string")
                .allowedAudiences("string")
                .allowedClients("string")
                .build())
            .build())
        .description("string")
        .exceptionLevel("string")
        .kmsKeyArn("string")
        .name("string")
        .protocolConfiguration(AgentcoreGatewayProtocolConfigurationArgs.builder()
            .mcp(AgentcoreGatewayProtocolConfigurationMcpArgs.builder()
                .instructions("string")
                .searchType("string")
                .supportedVersions("string")
                .build())
            .build())
        .region("string")
        .tags(Map.of("string", "string"))
        .timeouts(AgentcoreGatewayTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    agentcore_gateway_resource = aws.bedrock.AgentcoreGateway("agentcoreGatewayResource",
        authorizer_type="string",
        protocol_type="string",
        role_arn="string",
        authorizer_configuration={
            "custom_jwt_authorizer": {
                "discovery_url": "string",
                "allowed_audiences": ["string"],
                "allowed_clients": ["string"],
            },
        },
        description="string",
        exception_level="string",
        kms_key_arn="string",
        name="string",
        protocol_configuration={
            "mcp": {
                "instructions": "string",
                "search_type": "string",
                "supported_versions": ["string"],
            },
        },
        region="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const agentcoreGatewayResource = new aws.bedrock.AgentcoreGateway("agentcoreGatewayResource", {
        authorizerType: "string",
        protocolType: "string",
        roleArn: "string",
        authorizerConfiguration: {
            customJwtAuthorizer: {
                discoveryUrl: "string",
                allowedAudiences: ["string"],
                allowedClients: ["string"],
            },
        },
        description: "string",
        exceptionLevel: "string",
        kmsKeyArn: "string",
        name: "string",
        protocolConfiguration: {
            mcp: {
                instructions: "string",
                searchType: "string",
                supportedVersions: ["string"],
            },
        },
        region: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: aws:bedrock:AgentcoreGateway
    properties:
        authorizerConfiguration:
            customJwtAuthorizer:
                allowedAudiences:
                    - string
                allowedClients:
                    - string
                discoveryUrl: string
        authorizerType: string
        description: string
        exceptionLevel: string
        kmsKeyArn: string
        name: string
        protocolConfiguration:
            mcp:
                instructions: string
                searchType: string
                supportedVersions:
                    - string
        protocolType: string
        region: string
        roleArn: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
    

    AgentcoreGateway Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The AgentcoreGateway resource accepts the following input properties:

    AuthorizerType string
    Type of authorizer to use. Valid values: CUSTOM_JWT, AWS_IAM.
    ProtocolType string
    Protocol type for the gateway. Valid values: MCP.
    RoleArn string

    ARN of the IAM role that the gateway assumes to access AWS services.

    The following arguments are optional:

    AuthorizerConfiguration AgentcoreGatewayAuthorizerConfiguration
    Configuration for request authorization. See authorizer_configuration below.
    Description string
    Description of the gateway.
    ExceptionLevel string
    Exception level for the gateway. Valid values: INFO, WARN, ERROR.
    KmsKeyArn string
    ARN of the KMS key used to encrypt the gateway data.
    Name string
    Name of the gateway.
    ProtocolConfiguration AgentcoreGatewayProtocolConfiguration
    Protocol-specific configuration for the gateway. See protocol_configuration below.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Tags Dictionary<string, string>
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts AgentcoreGatewayTimeouts
    AuthorizerType string
    Type of authorizer to use. Valid values: CUSTOM_JWT, AWS_IAM.
    ProtocolType string
    Protocol type for the gateway. Valid values: MCP.
    RoleArn string

    ARN of the IAM role that the gateway assumes to access AWS services.

    The following arguments are optional:

    AuthorizerConfiguration AgentcoreGatewayAuthorizerConfigurationArgs
    Configuration for request authorization. See authorizer_configuration below.
    Description string
    Description of the gateway.
    ExceptionLevel string
    Exception level for the gateway. Valid values: INFO, WARN, ERROR.
    KmsKeyArn string
    ARN of the KMS key used to encrypt the gateway data.
    Name string
    Name of the gateway.
    ProtocolConfiguration AgentcoreGatewayProtocolConfigurationArgs
    Protocol-specific configuration for the gateway. See protocol_configuration below.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Tags map[string]string
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts AgentcoreGatewayTimeoutsArgs
    authorizerType String
    Type of authorizer to use. Valid values: CUSTOM_JWT, AWS_IAM.
    protocolType String
    Protocol type for the gateway. Valid values: MCP.
    roleArn String

    ARN of the IAM role that the gateway assumes to access AWS services.

    The following arguments are optional:

    authorizerConfiguration AgentcoreGatewayAuthorizerConfiguration
    Configuration for request authorization. See authorizer_configuration below.
    description String
    Description of the gateway.
    exceptionLevel String
    Exception level for the gateway. Valid values: INFO, WARN, ERROR.
    kmsKeyArn String
    ARN of the KMS key used to encrypt the gateway data.
    name String
    Name of the gateway.
    protocolConfiguration AgentcoreGatewayProtocolConfiguration
    Protocol-specific configuration for the gateway. See protocol_configuration below.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Map<String,String>
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts AgentcoreGatewayTimeouts
    authorizerType string
    Type of authorizer to use. Valid values: CUSTOM_JWT, AWS_IAM.
    protocolType string
    Protocol type for the gateway. Valid values: MCP.
    roleArn string

    ARN of the IAM role that the gateway assumes to access AWS services.

    The following arguments are optional:

    authorizerConfiguration AgentcoreGatewayAuthorizerConfiguration
    Configuration for request authorization. See authorizer_configuration below.
    description string
    Description of the gateway.
    exceptionLevel string
    Exception level for the gateway. Valid values: INFO, WARN, ERROR.
    kmsKeyArn string
    ARN of the KMS key used to encrypt the gateway data.
    name string
    Name of the gateway.
    protocolConfiguration AgentcoreGatewayProtocolConfiguration
    Protocol-specific configuration for the gateway. See protocol_configuration below.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags {[key: string]: string}
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts AgentcoreGatewayTimeouts
    authorizer_type str
    Type of authorizer to use. Valid values: CUSTOM_JWT, AWS_IAM.
    protocol_type str
    Protocol type for the gateway. Valid values: MCP.
    role_arn str

    ARN of the IAM role that the gateway assumes to access AWS services.

    The following arguments are optional:

    authorizer_configuration AgentcoreGatewayAuthorizerConfigurationArgs
    Configuration for request authorization. See authorizer_configuration below.
    description str
    Description of the gateway.
    exception_level str
    Exception level for the gateway. Valid values: INFO, WARN, ERROR.
    kms_key_arn str
    ARN of the KMS key used to encrypt the gateway data.
    name str
    Name of the gateway.
    protocol_configuration AgentcoreGatewayProtocolConfigurationArgs
    Protocol-specific configuration for the gateway. See protocol_configuration below.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Mapping[str, str]
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts AgentcoreGatewayTimeoutsArgs
    authorizerType String
    Type of authorizer to use. Valid values: CUSTOM_JWT, AWS_IAM.
    protocolType String
    Protocol type for the gateway. Valid values: MCP.
    roleArn String

    ARN of the IAM role that the gateway assumes to access AWS services.

    The following arguments are optional:

    authorizerConfiguration Property Map
    Configuration for request authorization. See authorizer_configuration below.
    description String
    Description of the gateway.
    exceptionLevel String
    Exception level for the gateway. Valid values: INFO, WARN, ERROR.
    kmsKeyArn String
    ARN of the KMS key used to encrypt the gateway data.
    name String
    Name of the gateway.
    protocolConfiguration Property Map
    Protocol-specific configuration for the gateway. See protocol_configuration below.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Map<String>
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AgentcoreGateway resource produces the following output properties:

    GatewayArn string
    ARN of the Gateway.
    GatewayId string
    Unique identifier of the Gateway.
    GatewayUrl string
    URL endpoint for the gateway.
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    WorkloadIdentityDetails List<AgentcoreGatewayWorkloadIdentityDetail>
    Workload identity details for the gateway. See workload_identity_details below.
    GatewayArn string
    ARN of the Gateway.
    GatewayId string
    Unique identifier of the Gateway.
    GatewayUrl string
    URL endpoint for the gateway.
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    WorkloadIdentityDetails []AgentcoreGatewayWorkloadIdentityDetail
    Workload identity details for the gateway. See workload_identity_details below.
    gatewayArn String
    ARN of the Gateway.
    gatewayId String
    Unique identifier of the Gateway.
    gatewayUrl String
    URL endpoint for the gateway.
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    workloadIdentityDetails List<AgentcoreGatewayWorkloadIdentityDetail>
    Workload identity details for the gateway. See workload_identity_details below.
    gatewayArn string
    ARN of the Gateway.
    gatewayId string
    Unique identifier of the Gateway.
    gatewayUrl string
    URL endpoint for the gateway.
    id string
    The provider-assigned unique ID for this managed resource.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    workloadIdentityDetails AgentcoreGatewayWorkloadIdentityDetail[]
    Workload identity details for the gateway. See workload_identity_details below.
    gateway_arn str
    ARN of the Gateway.
    gateway_id str
    Unique identifier of the Gateway.
    gateway_url str
    URL endpoint for the gateway.
    id str
    The provider-assigned unique ID for this managed resource.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    workload_identity_details Sequence[AgentcoreGatewayWorkloadIdentityDetail]
    Workload identity details for the gateway. See workload_identity_details below.
    gatewayArn String
    ARN of the Gateway.
    gatewayId String
    Unique identifier of the Gateway.
    gatewayUrl String
    URL endpoint for the gateway.
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    workloadIdentityDetails List<Property Map>
    Workload identity details for the gateway. See workload_identity_details below.

    Look up Existing AgentcoreGateway Resource

    Get an existing AgentcoreGateway resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AgentcoreGatewayState, opts?: CustomResourceOptions): AgentcoreGateway
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            authorizer_configuration: Optional[AgentcoreGatewayAuthorizerConfigurationArgs] = None,
            authorizer_type: Optional[str] = None,
            description: Optional[str] = None,
            exception_level: Optional[str] = None,
            gateway_arn: Optional[str] = None,
            gateway_id: Optional[str] = None,
            gateway_url: Optional[str] = None,
            kms_key_arn: Optional[str] = None,
            name: Optional[str] = None,
            protocol_configuration: Optional[AgentcoreGatewayProtocolConfigurationArgs] = None,
            protocol_type: Optional[str] = None,
            region: Optional[str] = None,
            role_arn: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[AgentcoreGatewayTimeoutsArgs] = None,
            workload_identity_details: Optional[Sequence[AgentcoreGatewayWorkloadIdentityDetailArgs]] = None) -> AgentcoreGateway
    func GetAgentcoreGateway(ctx *Context, name string, id IDInput, state *AgentcoreGatewayState, opts ...ResourceOption) (*AgentcoreGateway, error)
    public static AgentcoreGateway Get(string name, Input<string> id, AgentcoreGatewayState? state, CustomResourceOptions? opts = null)
    public static AgentcoreGateway get(String name, Output<String> id, AgentcoreGatewayState state, CustomResourceOptions options)
    resources:  _:    type: aws:bedrock:AgentcoreGateway    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AuthorizerConfiguration AgentcoreGatewayAuthorizerConfiguration
    Configuration for request authorization. See authorizer_configuration below.
    AuthorizerType string
    Type of authorizer to use. Valid values: CUSTOM_JWT, AWS_IAM.
    Description string
    Description of the gateway.
    ExceptionLevel string
    Exception level for the gateway. Valid values: INFO, WARN, ERROR.
    GatewayArn string
    ARN of the Gateway.
    GatewayId string
    Unique identifier of the Gateway.
    GatewayUrl string
    URL endpoint for the gateway.
    KmsKeyArn string
    ARN of the KMS key used to encrypt the gateway data.
    Name string
    Name of the gateway.
    ProtocolConfiguration AgentcoreGatewayProtocolConfiguration
    Protocol-specific configuration for the gateway. See protocol_configuration below.
    ProtocolType string
    Protocol type for the gateway. Valid values: MCP.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    RoleArn string

    ARN of the IAM role that the gateway assumes to access AWS services.

    The following arguments are optional:

    Tags Dictionary<string, string>
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    Timeouts AgentcoreGatewayTimeouts
    WorkloadIdentityDetails List<AgentcoreGatewayWorkloadIdentityDetail>
    Workload identity details for the gateway. See workload_identity_details below.
    AuthorizerConfiguration AgentcoreGatewayAuthorizerConfigurationArgs
    Configuration for request authorization. See authorizer_configuration below.
    AuthorizerType string
    Type of authorizer to use. Valid values: CUSTOM_JWT, AWS_IAM.
    Description string
    Description of the gateway.
    ExceptionLevel string
    Exception level for the gateway. Valid values: INFO, WARN, ERROR.
    GatewayArn string
    ARN of the Gateway.
    GatewayId string
    Unique identifier of the Gateway.
    GatewayUrl string
    URL endpoint for the gateway.
    KmsKeyArn string
    ARN of the KMS key used to encrypt the gateway data.
    Name string
    Name of the gateway.
    ProtocolConfiguration AgentcoreGatewayProtocolConfigurationArgs
    Protocol-specific configuration for the gateway. See protocol_configuration below.
    ProtocolType string
    Protocol type for the gateway. Valid values: MCP.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    RoleArn string

    ARN of the IAM role that the gateway assumes to access AWS services.

    The following arguments are optional:

    Tags map[string]string
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    Timeouts AgentcoreGatewayTimeoutsArgs
    WorkloadIdentityDetails []AgentcoreGatewayWorkloadIdentityDetailArgs
    Workload identity details for the gateway. See workload_identity_details below.
    authorizerConfiguration AgentcoreGatewayAuthorizerConfiguration
    Configuration for request authorization. See authorizer_configuration below.
    authorizerType String
    Type of authorizer to use. Valid values: CUSTOM_JWT, AWS_IAM.
    description String
    Description of the gateway.
    exceptionLevel String
    Exception level for the gateway. Valid values: INFO, WARN, ERROR.
    gatewayArn String
    ARN of the Gateway.
    gatewayId String
    Unique identifier of the Gateway.
    gatewayUrl String
    URL endpoint for the gateway.
    kmsKeyArn String
    ARN of the KMS key used to encrypt the gateway data.
    name String
    Name of the gateway.
    protocolConfiguration AgentcoreGatewayProtocolConfiguration
    Protocol-specific configuration for the gateway. See protocol_configuration below.
    protocolType String
    Protocol type for the gateway. Valid values: MCP.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    roleArn String

    ARN of the IAM role that the gateway assumes to access AWS services.

    The following arguments are optional:

    tags Map<String,String>
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    timeouts AgentcoreGatewayTimeouts
    workloadIdentityDetails List<AgentcoreGatewayWorkloadIdentityDetail>
    Workload identity details for the gateway. See workload_identity_details below.
    authorizerConfiguration AgentcoreGatewayAuthorizerConfiguration
    Configuration for request authorization. See authorizer_configuration below.
    authorizerType string
    Type of authorizer to use. Valid values: CUSTOM_JWT, AWS_IAM.
    description string
    Description of the gateway.
    exceptionLevel string
    Exception level for the gateway. Valid values: INFO, WARN, ERROR.
    gatewayArn string
    ARN of the Gateway.
    gatewayId string
    Unique identifier of the Gateway.
    gatewayUrl string
    URL endpoint for the gateway.
    kmsKeyArn string
    ARN of the KMS key used to encrypt the gateway data.
    name string
    Name of the gateway.
    protocolConfiguration AgentcoreGatewayProtocolConfiguration
    Protocol-specific configuration for the gateway. See protocol_configuration below.
    protocolType string
    Protocol type for the gateway. Valid values: MCP.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    roleArn string

    ARN of the IAM role that the gateway assumes to access AWS services.

    The following arguments are optional:

    tags {[key: string]: string}
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    timeouts AgentcoreGatewayTimeouts
    workloadIdentityDetails AgentcoreGatewayWorkloadIdentityDetail[]
    Workload identity details for the gateway. See workload_identity_details below.
    authorizer_configuration AgentcoreGatewayAuthorizerConfigurationArgs
    Configuration for request authorization. See authorizer_configuration below.
    authorizer_type str
    Type of authorizer to use. Valid values: CUSTOM_JWT, AWS_IAM.
    description str
    Description of the gateway.
    exception_level str
    Exception level for the gateway. Valid values: INFO, WARN, ERROR.
    gateway_arn str
    ARN of the Gateway.
    gateway_id str
    Unique identifier of the Gateway.
    gateway_url str
    URL endpoint for the gateway.
    kms_key_arn str
    ARN of the KMS key used to encrypt the gateway data.
    name str
    Name of the gateway.
    protocol_configuration AgentcoreGatewayProtocolConfigurationArgs
    Protocol-specific configuration for the gateway. See protocol_configuration below.
    protocol_type str
    Protocol type for the gateway. Valid values: MCP.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    role_arn str

    ARN of the IAM role that the gateway assumes to access AWS services.

    The following arguments are optional:

    tags Mapping[str, str]
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    timeouts AgentcoreGatewayTimeoutsArgs
    workload_identity_details Sequence[AgentcoreGatewayWorkloadIdentityDetailArgs]
    Workload identity details for the gateway. See workload_identity_details below.
    authorizerConfiguration Property Map
    Configuration for request authorization. See authorizer_configuration below.
    authorizerType String
    Type of authorizer to use. Valid values: CUSTOM_JWT, AWS_IAM.
    description String
    Description of the gateway.
    exceptionLevel String
    Exception level for the gateway. Valid values: INFO, WARN, ERROR.
    gatewayArn String
    ARN of the Gateway.
    gatewayId String
    Unique identifier of the Gateway.
    gatewayUrl String
    URL endpoint for the gateway.
    kmsKeyArn String
    ARN of the KMS key used to encrypt the gateway data.
    name String
    Name of the gateway.
    protocolConfiguration Property Map
    Protocol-specific configuration for the gateway. See protocol_configuration below.
    protocolType String
    Protocol type for the gateway. Valid values: MCP.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    roleArn String

    ARN of the IAM role that the gateway assumes to access AWS services.

    The following arguments are optional:

    tags Map<String>
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    timeouts Property Map
    workloadIdentityDetails List<Property Map>
    Workload identity details for the gateway. See workload_identity_details below.

    Supporting Types

    AgentcoreGatewayAuthorizerConfiguration, AgentcoreGatewayAuthorizerConfigurationArgs

    CustomJwtAuthorizer AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizer
    JWT-based authorization configuration block. See custom_jwt_authorizer below.
    CustomJwtAuthorizer AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizer
    JWT-based authorization configuration block. See custom_jwt_authorizer below.
    customJwtAuthorizer AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizer
    JWT-based authorization configuration block. See custom_jwt_authorizer below.
    customJwtAuthorizer AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizer
    JWT-based authorization configuration block. See custom_jwt_authorizer below.
    custom_jwt_authorizer AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizer
    JWT-based authorization configuration block. See custom_jwt_authorizer below.
    customJwtAuthorizer Property Map
    JWT-based authorization configuration block. See custom_jwt_authorizer below.

    AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizer, AgentcoreGatewayAuthorizerConfigurationCustomJwtAuthorizerArgs

    DiscoveryUrl string
    URL used to fetch OpenID Connect configuration or authorization server metadata. Must end with .well-known/openid-configuration.
    AllowedAudiences List<string>
    Set of allowed audience values for JWT token validation.
    AllowedClients List<string>
    Set of allowed client IDs for JWT token validation.
    DiscoveryUrl string
    URL used to fetch OpenID Connect configuration or authorization server metadata. Must end with .well-known/openid-configuration.
    AllowedAudiences []string
    Set of allowed audience values for JWT token validation.
    AllowedClients []string
    Set of allowed client IDs for JWT token validation.
    discoveryUrl String
    URL used to fetch OpenID Connect configuration or authorization server metadata. Must end with .well-known/openid-configuration.
    allowedAudiences List<String>
    Set of allowed audience values for JWT token validation.
    allowedClients List<String>
    Set of allowed client IDs for JWT token validation.
    discoveryUrl string
    URL used to fetch OpenID Connect configuration or authorization server metadata. Must end with .well-known/openid-configuration.
    allowedAudiences string[]
    Set of allowed audience values for JWT token validation.
    allowedClients string[]
    Set of allowed client IDs for JWT token validation.
    discovery_url str
    URL used to fetch OpenID Connect configuration or authorization server metadata. Must end with .well-known/openid-configuration.
    allowed_audiences Sequence[str]
    Set of allowed audience values for JWT token validation.
    allowed_clients Sequence[str]
    Set of allowed client IDs for JWT token validation.
    discoveryUrl String
    URL used to fetch OpenID Connect configuration or authorization server metadata. Must end with .well-known/openid-configuration.
    allowedAudiences List<String>
    Set of allowed audience values for JWT token validation.
    allowedClients List<String>
    Set of allowed client IDs for JWT token validation.

    AgentcoreGatewayProtocolConfiguration, AgentcoreGatewayProtocolConfigurationArgs

    Mcp AgentcoreGatewayProtocolConfigurationMcp
    Model Context Protocol (MCP) configuration block. See mcp below.
    Mcp AgentcoreGatewayProtocolConfigurationMcp
    Model Context Protocol (MCP) configuration block. See mcp below.
    mcp AgentcoreGatewayProtocolConfigurationMcp
    Model Context Protocol (MCP) configuration block. See mcp below.
    mcp AgentcoreGatewayProtocolConfigurationMcp
    Model Context Protocol (MCP) configuration block. See mcp below.
    mcp AgentcoreGatewayProtocolConfigurationMcp
    Model Context Protocol (MCP) configuration block. See mcp below.
    mcp Property Map
    Model Context Protocol (MCP) configuration block. See mcp below.

    AgentcoreGatewayProtocolConfigurationMcp, AgentcoreGatewayProtocolConfigurationMcpArgs

    Instructions string
    Instructions for the MCP protocol configuration.
    SearchType string
    Search type for MCP. Valid values: SEMANTIC, HYBRID.
    SupportedVersions List<string>
    Set of supported MCP protocol versions.
    Instructions string
    Instructions for the MCP protocol configuration.
    SearchType string
    Search type for MCP. Valid values: SEMANTIC, HYBRID.
    SupportedVersions []string
    Set of supported MCP protocol versions.
    instructions String
    Instructions for the MCP protocol configuration.
    searchType String
    Search type for MCP. Valid values: SEMANTIC, HYBRID.
    supportedVersions List<String>
    Set of supported MCP protocol versions.
    instructions string
    Instructions for the MCP protocol configuration.
    searchType string
    Search type for MCP. Valid values: SEMANTIC, HYBRID.
    supportedVersions string[]
    Set of supported MCP protocol versions.
    instructions str
    Instructions for the MCP protocol configuration.
    search_type str
    Search type for MCP. Valid values: SEMANTIC, HYBRID.
    supported_versions Sequence[str]
    Set of supported MCP protocol versions.
    instructions String
    Instructions for the MCP protocol configuration.
    searchType String
    Search type for MCP. Valid values: SEMANTIC, HYBRID.
    supportedVersions List<String>
    Set of supported MCP protocol versions.

    AgentcoreGatewayTimeouts, AgentcoreGatewayTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    AgentcoreGatewayWorkloadIdentityDetail, AgentcoreGatewayWorkloadIdentityDetailArgs

    WorkloadIdentityArn string
    ARN of the workload identity.
    WorkloadIdentityArn string
    ARN of the workload identity.
    workloadIdentityArn String
    ARN of the workload identity.
    workloadIdentityArn string
    ARN of the workload identity.
    workload_identity_arn str
    ARN of the workload identity.
    workloadIdentityArn String
    ARN of the workload identity.

    Import

    Using pulumi import, import Bedrock AgentCore Gateway using the gateway ID. For example:

    $ pulumi import aws:bedrock/agentcoreGateway:AgentcoreGateway example GATEWAY1234567890
    

    To learn more about importing existing cloud resources, see Importing resources.

    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 v7.10.0 published on Friday, Oct 24, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate