1. Packages
  2. AWS
  3. API Docs
  4. bedrock
  5. AgentcoreAgentRuntimeEndpoint
AWS v7.11.0 published on Wednesday, Nov 5, 2025 by Pulumi

aws.bedrock.AgentcoreAgentRuntimeEndpoint

Start a Neo task
Explain and create an aws.bedrock.AgentcoreAgentRuntimeEndpoint resource
aws logo
AWS v7.11.0 published on Wednesday, Nov 5, 2025 by Pulumi

    Manages an AWS Bedrock AgentCore Agent Runtime Endpoint. Agent Runtime Endpoints provide a network-accessible interface for interacting with agent runtimes, enabling external systems to communicate with and invoke agent capabilities.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.bedrock.AgentcoreAgentRuntimeEndpoint("example", {
        name: "example-endpoint",
        agentRuntimeId: exampleAwsBedrockagentcoreAgentRuntime.agentRuntimeId,
        description: "Endpoint for agent runtime communication",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.bedrock.AgentcoreAgentRuntimeEndpoint("example",
        name="example-endpoint",
        agent_runtime_id=example_aws_bedrockagentcore_agent_runtime["agentRuntimeId"],
        description="Endpoint for agent runtime communication")
    
    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.NewAgentcoreAgentRuntimeEndpoint(ctx, "example", &bedrock.AgentcoreAgentRuntimeEndpointArgs{
    			Name:           pulumi.String("example-endpoint"),
    			AgentRuntimeId: pulumi.Any(exampleAwsBedrockagentcoreAgentRuntime.AgentRuntimeId),
    			Description:    pulumi.String("Endpoint for agent runtime communication"),
    		})
    		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.AgentcoreAgentRuntimeEndpoint("example", new()
        {
            Name = "example-endpoint",
            AgentRuntimeId = exampleAwsBedrockagentcoreAgentRuntime.AgentRuntimeId,
            Description = "Endpoint for agent runtime communication",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.bedrock.AgentcoreAgentRuntimeEndpoint;
    import com.pulumi.aws.bedrock.AgentcoreAgentRuntimeEndpointArgs;
    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 AgentcoreAgentRuntimeEndpoint("example", AgentcoreAgentRuntimeEndpointArgs.builder()
                .name("example-endpoint")
                .agentRuntimeId(exampleAwsBedrockagentcoreAgentRuntime.agentRuntimeId())
                .description("Endpoint for agent runtime communication")
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:bedrock:AgentcoreAgentRuntimeEndpoint
        properties:
          name: example-endpoint
          agentRuntimeId: ${exampleAwsBedrockagentcoreAgentRuntime.agentRuntimeId}
          description: Endpoint for agent runtime communication
    

    Create AgentcoreAgentRuntimeEndpoint Resource

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

    Constructor syntax

    new AgentcoreAgentRuntimeEndpoint(name: string, args: AgentcoreAgentRuntimeEndpointArgs, opts?: CustomResourceOptions);
    @overload
    def AgentcoreAgentRuntimeEndpoint(resource_name: str,
                                      args: AgentcoreAgentRuntimeEndpointArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def AgentcoreAgentRuntimeEndpoint(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      agent_runtime_id: Optional[str] = None,
                                      agent_runtime_version: Optional[str] = None,
                                      description: Optional[str] = None,
                                      name: Optional[str] = None,
                                      region: Optional[str] = None,
                                      tags: Optional[Mapping[str, str]] = None,
                                      timeouts: Optional[AgentcoreAgentRuntimeEndpointTimeoutsArgs] = None)
    func NewAgentcoreAgentRuntimeEndpoint(ctx *Context, name string, args AgentcoreAgentRuntimeEndpointArgs, opts ...ResourceOption) (*AgentcoreAgentRuntimeEndpoint, error)
    public AgentcoreAgentRuntimeEndpoint(string name, AgentcoreAgentRuntimeEndpointArgs args, CustomResourceOptions? opts = null)
    public AgentcoreAgentRuntimeEndpoint(String name, AgentcoreAgentRuntimeEndpointArgs args)
    public AgentcoreAgentRuntimeEndpoint(String name, AgentcoreAgentRuntimeEndpointArgs args, CustomResourceOptions options)
    
    type: aws:bedrock:AgentcoreAgentRuntimeEndpoint
    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 AgentcoreAgentRuntimeEndpointArgs
    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 AgentcoreAgentRuntimeEndpointArgs
    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 AgentcoreAgentRuntimeEndpointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AgentcoreAgentRuntimeEndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AgentcoreAgentRuntimeEndpointArgs
    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 agentcoreAgentRuntimeEndpointResource = new Aws.Bedrock.AgentcoreAgentRuntimeEndpoint("agentcoreAgentRuntimeEndpointResource", new()
    {
        AgentRuntimeId = "string",
        AgentRuntimeVersion = "string",
        Description = "string",
        Name = "string",
        Region = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.Bedrock.Inputs.AgentcoreAgentRuntimeEndpointTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := bedrock.NewAgentcoreAgentRuntimeEndpoint(ctx, "agentcoreAgentRuntimeEndpointResource", &bedrock.AgentcoreAgentRuntimeEndpointArgs{
    	AgentRuntimeId:      pulumi.String("string"),
    	AgentRuntimeVersion: pulumi.String("string"),
    	Description:         pulumi.String("string"),
    	Name:                pulumi.String("string"),
    	Region:              pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &bedrock.AgentcoreAgentRuntimeEndpointTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var agentcoreAgentRuntimeEndpointResource = new AgentcoreAgentRuntimeEndpoint("agentcoreAgentRuntimeEndpointResource", AgentcoreAgentRuntimeEndpointArgs.builder()
        .agentRuntimeId("string")
        .agentRuntimeVersion("string")
        .description("string")
        .name("string")
        .region("string")
        .tags(Map.of("string", "string"))
        .timeouts(AgentcoreAgentRuntimeEndpointTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    agentcore_agent_runtime_endpoint_resource = aws.bedrock.AgentcoreAgentRuntimeEndpoint("agentcoreAgentRuntimeEndpointResource",
        agent_runtime_id="string",
        agent_runtime_version="string",
        description="string",
        name="string",
        region="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const agentcoreAgentRuntimeEndpointResource = new aws.bedrock.AgentcoreAgentRuntimeEndpoint("agentcoreAgentRuntimeEndpointResource", {
        agentRuntimeId: "string",
        agentRuntimeVersion: "string",
        description: "string",
        name: "string",
        region: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: aws:bedrock:AgentcoreAgentRuntimeEndpoint
    properties:
        agentRuntimeId: string
        agentRuntimeVersion: string
        description: string
        name: string
        region: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
    

    AgentcoreAgentRuntimeEndpoint 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 AgentcoreAgentRuntimeEndpoint resource accepts the following input properties:

    AgentRuntimeId string

    ID of the agent runtime this endpoint belongs to.

    The following arguments are optional:

    AgentRuntimeVersion string
    Version of the agent runtime to use for this endpoint.
    Description string
    Description of the agent runtime endpoint.
    Name string
    Name of the agent runtime endpoint.
    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 AgentcoreAgentRuntimeEndpointTimeouts
    AgentRuntimeId string

    ID of the agent runtime this endpoint belongs to.

    The following arguments are optional:

    AgentRuntimeVersion string
    Version of the agent runtime to use for this endpoint.
    Description string
    Description of the agent runtime endpoint.
    Name string
    Name of the agent runtime endpoint.
    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 AgentcoreAgentRuntimeEndpointTimeoutsArgs
    agentRuntimeId String

    ID of the agent runtime this endpoint belongs to.

    The following arguments are optional:

    agentRuntimeVersion String
    Version of the agent runtime to use for this endpoint.
    description String
    Description of the agent runtime endpoint.
    name String
    Name of the agent runtime endpoint.
    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 AgentcoreAgentRuntimeEndpointTimeouts
    agentRuntimeId string

    ID of the agent runtime this endpoint belongs to.

    The following arguments are optional:

    agentRuntimeVersion string
    Version of the agent runtime to use for this endpoint.
    description string
    Description of the agent runtime endpoint.
    name string
    Name of the agent runtime endpoint.
    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 AgentcoreAgentRuntimeEndpointTimeouts
    agent_runtime_id str

    ID of the agent runtime this endpoint belongs to.

    The following arguments are optional:

    agent_runtime_version str
    Version of the agent runtime to use for this endpoint.
    description str
    Description of the agent runtime endpoint.
    name str
    Name of the agent runtime endpoint.
    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 AgentcoreAgentRuntimeEndpointTimeoutsArgs
    agentRuntimeId String

    ID of the agent runtime this endpoint belongs to.

    The following arguments are optional:

    agentRuntimeVersion String
    Version of the agent runtime to use for this endpoint.
    description String
    Description of the agent runtime endpoint.
    name String
    Name of the agent runtime endpoint.
    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 AgentcoreAgentRuntimeEndpoint resource produces the following output properties:

    AgentRuntimeArn string
    ARN of the associated Agent Runtime.
    AgentRuntimeEndpointArn string
    ARN of the Agent Runtime Endpoint.
    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.
    AgentRuntimeArn string
    ARN of the associated Agent Runtime.
    AgentRuntimeEndpointArn string
    ARN of the Agent Runtime Endpoint.
    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.
    agentRuntimeArn String
    ARN of the associated Agent Runtime.
    agentRuntimeEndpointArn String
    ARN of the Agent Runtime Endpoint.
    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.
    agentRuntimeArn string
    ARN of the associated Agent Runtime.
    agentRuntimeEndpointArn string
    ARN of the Agent Runtime Endpoint.
    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.
    agent_runtime_arn str
    ARN of the associated Agent Runtime.
    agent_runtime_endpoint_arn str
    ARN of the Agent Runtime Endpoint.
    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.
    agentRuntimeArn String
    ARN of the associated Agent Runtime.
    agentRuntimeEndpointArn String
    ARN of the Agent Runtime Endpoint.
    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.

    Look up Existing AgentcoreAgentRuntimeEndpoint Resource

    Get an existing AgentcoreAgentRuntimeEndpoint 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?: AgentcoreAgentRuntimeEndpointState, opts?: CustomResourceOptions): AgentcoreAgentRuntimeEndpoint
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            agent_runtime_arn: Optional[str] = None,
            agent_runtime_endpoint_arn: Optional[str] = None,
            agent_runtime_id: Optional[str] = None,
            agent_runtime_version: Optional[str] = None,
            description: Optional[str] = None,
            name: Optional[str] = None,
            region: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[AgentcoreAgentRuntimeEndpointTimeoutsArgs] = None) -> AgentcoreAgentRuntimeEndpoint
    func GetAgentcoreAgentRuntimeEndpoint(ctx *Context, name string, id IDInput, state *AgentcoreAgentRuntimeEndpointState, opts ...ResourceOption) (*AgentcoreAgentRuntimeEndpoint, error)
    public static AgentcoreAgentRuntimeEndpoint Get(string name, Input<string> id, AgentcoreAgentRuntimeEndpointState? state, CustomResourceOptions? opts = null)
    public static AgentcoreAgentRuntimeEndpoint get(String name, Output<String> id, AgentcoreAgentRuntimeEndpointState state, CustomResourceOptions options)
    resources:  _:    type: aws:bedrock:AgentcoreAgentRuntimeEndpoint    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:
    AgentRuntimeArn string
    ARN of the associated Agent Runtime.
    AgentRuntimeEndpointArn string
    ARN of the Agent Runtime Endpoint.
    AgentRuntimeId string

    ID of the agent runtime this endpoint belongs to.

    The following arguments are optional:

    AgentRuntimeVersion string
    Version of the agent runtime to use for this endpoint.
    Description string
    Description of the agent runtime endpoint.
    Name string
    Name of the agent runtime endpoint.
    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.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    Timeouts AgentcoreAgentRuntimeEndpointTimeouts
    AgentRuntimeArn string
    ARN of the associated Agent Runtime.
    AgentRuntimeEndpointArn string
    ARN of the Agent Runtime Endpoint.
    AgentRuntimeId string

    ID of the agent runtime this endpoint belongs to.

    The following arguments are optional:

    AgentRuntimeVersion string
    Version of the agent runtime to use for this endpoint.
    Description string
    Description of the agent runtime endpoint.
    Name string
    Name of the agent runtime endpoint.
    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.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    Timeouts AgentcoreAgentRuntimeEndpointTimeoutsArgs
    agentRuntimeArn String
    ARN of the associated Agent Runtime.
    agentRuntimeEndpointArn String
    ARN of the Agent Runtime Endpoint.
    agentRuntimeId String

    ID of the agent runtime this endpoint belongs to.

    The following arguments are optional:

    agentRuntimeVersion String
    Version of the agent runtime to use for this endpoint.
    description String
    Description of the agent runtime endpoint.
    name String
    Name of the agent runtime endpoint.
    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.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    timeouts AgentcoreAgentRuntimeEndpointTimeouts
    agentRuntimeArn string
    ARN of the associated Agent Runtime.
    agentRuntimeEndpointArn string
    ARN of the Agent Runtime Endpoint.
    agentRuntimeId string

    ID of the agent runtime this endpoint belongs to.

    The following arguments are optional:

    agentRuntimeVersion string
    Version of the agent runtime to use for this endpoint.
    description string
    Description of the agent runtime endpoint.
    name string
    Name of the agent runtime endpoint.
    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.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    timeouts AgentcoreAgentRuntimeEndpointTimeouts
    agent_runtime_arn str
    ARN of the associated Agent Runtime.
    agent_runtime_endpoint_arn str
    ARN of the Agent Runtime Endpoint.
    agent_runtime_id str

    ID of the agent runtime this endpoint belongs to.

    The following arguments are optional:

    agent_runtime_version str
    Version of the agent runtime to use for this endpoint.
    description str
    Description of the agent runtime endpoint.
    name str
    Name of the agent runtime endpoint.
    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.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    timeouts AgentcoreAgentRuntimeEndpointTimeoutsArgs
    agentRuntimeArn String
    ARN of the associated Agent Runtime.
    agentRuntimeEndpointArn String
    ARN of the Agent Runtime Endpoint.
    agentRuntimeId String

    ID of the agent runtime this endpoint belongs to.

    The following arguments are optional:

    agentRuntimeVersion String
    Version of the agent runtime to use for this endpoint.
    description String
    Description of the agent runtime endpoint.
    name String
    Name of the agent runtime endpoint.
    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.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    timeouts Property Map

    Supporting Types

    AgentcoreAgentRuntimeEndpointTimeouts, AgentcoreAgentRuntimeEndpointTimeoutsArgs

    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).

    Import

    Using pulumi import, import Bedrock AgentCore Agent Runtime Endpoint using the agent_runtime_id and name separated by a comma. For example:

    $ pulumi import aws:bedrock/agentcoreAgentRuntimeEndpoint:AgentcoreAgentRuntimeEndpoint example AGENTRUNTIME1234567890,example-endpoint
    

    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.11.0 published on Wednesday, Nov 5, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate