1. Packages
  2. Packages
  3. AWS
  4. API Docs
  5. bedrock
  6. AgentcoreBrowserProfile
Viewing docs for AWS v7.41.0
published on Friday, Aug 7, 2026 by Pulumi
aws logo aws logo
Viewing docs for AWS v7.41.0
published on Friday, Aug 7, 2026 by Pulumi

    Manages an AWS Bedrock AgentCore Browser Profile. Browser profiles define browser state that can be re-used across different browser sessions within AgentCore Browser. Browser state includes cookies and local storage.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.bedrock.AgentcoreBrowserProfile("example", {name: "example"});
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.bedrock.AgentcoreBrowserProfile("example", name="example")
    
    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.NewAgentcoreBrowserProfile(ctx, "example", &bedrock.AgentcoreBrowserProfileArgs{
    			Name: pulumi.String("example"),
    		})
    		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.AgentcoreBrowserProfile("example", new()
        {
            Name = "example",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.bedrock.AgentcoreBrowserProfile;
    import com.pulumi.aws.bedrock.AgentcoreBrowserProfileArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new AgentcoreBrowserProfile("example", AgentcoreBrowserProfileArgs.builder()
                .name("example")
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:bedrock:AgentcoreBrowserProfile
        properties:
          name: example
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    resource "aws_bedrock_agentcorebrowserprofile" "example" {
      name = "example"
    }
    

    With Description

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.bedrock.AgentcoreBrowserProfile("example", {
        name: "example",
        description: "Example browser profile for web data extraction",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.bedrock.AgentcoreBrowserProfile("example",
        name="example",
        description="Example browser profile for web data extraction")
    
    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.NewAgentcoreBrowserProfile(ctx, "example", &bedrock.AgentcoreBrowserProfileArgs{
    			Name:        pulumi.String("example"),
    			Description: pulumi.String("Example browser profile for web data extraction"),
    		})
    		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.AgentcoreBrowserProfile("example", new()
        {
            Name = "example",
            Description = "Example browser profile for web data extraction",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.bedrock.AgentcoreBrowserProfile;
    import com.pulumi.aws.bedrock.AgentcoreBrowserProfileArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new AgentcoreBrowserProfile("example", AgentcoreBrowserProfileArgs.builder()
                .name("example")
                .description("Example browser profile for web data extraction")
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:bedrock:AgentcoreBrowserProfile
        properties:
          name: example
          description: Example browser profile for web data extraction
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    resource "aws_bedrock_agentcorebrowserprofile" "example" {
      name        = "example"
      description = "Example browser profile for web data extraction"
    }
    

    With Tags

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.bedrock.AgentcoreBrowserProfile("example", {
        name: "example",
        description: "Browser profile with tags",
        tags: {
            Environment: "production",
            Team: "data-engineering",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.bedrock.AgentcoreBrowserProfile("example",
        name="example",
        description="Browser profile with tags",
        tags={
            "Environment": "production",
            "Team": "data-engineering",
        })
    
    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.NewAgentcoreBrowserProfile(ctx, "example", &bedrock.AgentcoreBrowserProfileArgs{
    			Name:        pulumi.String("example"),
    			Description: pulumi.String("Browser profile with tags"),
    			Tags: pulumi.StringMap{
    				"Environment": pulumi.String("production"),
    				"Team":        pulumi.String("data-engineering"),
    			},
    		})
    		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.AgentcoreBrowserProfile("example", new()
        {
            Name = "example",
            Description = "Browser profile with tags",
            Tags = 
            {
                { "Environment", "production" },
                { "Team", "data-engineering" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.bedrock.AgentcoreBrowserProfile;
    import com.pulumi.aws.bedrock.AgentcoreBrowserProfileArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new AgentcoreBrowserProfile("example", AgentcoreBrowserProfileArgs.builder()
                .name("example")
                .description("Browser profile with tags")
                .tags(Map.ofEntries(
                    Map.entry("Environment", "production"),
                    Map.entry("Team", "data-engineering")
                ))
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:bedrock:AgentcoreBrowserProfile
        properties:
          name: example
          description: Browser profile with tags
          tags:
            Environment: production
            Team: data-engineering
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    resource "aws_bedrock_agentcorebrowserprofile" "example" {
      name        = "example"
      description = "Browser profile with tags"
      tags = {
        "Environment" = "production"
        "Team"        = "data-engineering"
      }
    }
    

    Create AgentcoreBrowserProfile Resource

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

    Constructor syntax

    new AgentcoreBrowserProfile(name: string, args?: AgentcoreBrowserProfileArgs, opts?: CustomResourceOptions);
    @overload
    def AgentcoreBrowserProfile(resource_name: str,
                                args: Optional[AgentcoreBrowserProfileArgs] = None,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def AgentcoreBrowserProfile(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                description: Optional[str] = None,
                                name: Optional[str] = None,
                                region: Optional[str] = None,
                                tags: Optional[Mapping[str, str]] = None,
                                timeouts: Optional[AgentcoreBrowserProfileTimeoutsArgs] = None)
    func NewAgentcoreBrowserProfile(ctx *Context, name string, args *AgentcoreBrowserProfileArgs, opts ...ResourceOption) (*AgentcoreBrowserProfile, error)
    public AgentcoreBrowserProfile(string name, AgentcoreBrowserProfileArgs? args = null, CustomResourceOptions? opts = null)
    public AgentcoreBrowserProfile(String name, AgentcoreBrowserProfileArgs args)
    public AgentcoreBrowserProfile(String name, AgentcoreBrowserProfileArgs args, CustomResourceOptions options)
    
    type: aws:bedrock:AgentcoreBrowserProfile
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "aws_bedrock_agentcore_browser_profile" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args AgentcoreBrowserProfileArgs
    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 AgentcoreBrowserProfileArgs
    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 AgentcoreBrowserProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AgentcoreBrowserProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AgentcoreBrowserProfileArgs
    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 agentcoreBrowserProfileResource = new Aws.Bedrock.AgentcoreBrowserProfile("agentcoreBrowserProfileResource", new()
    {
        Description = "string",
        Name = "string",
        Region = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.Bedrock.Inputs.AgentcoreBrowserProfileTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
        },
    });
    
    example, err := bedrock.NewAgentcoreBrowserProfile(ctx, "agentcoreBrowserProfileResource", &bedrock.AgentcoreBrowserProfileArgs{
    	Description: pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	Region:      pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &bedrock.AgentcoreBrowserProfileTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    	},
    })
    
    resource "aws_bedrock_agentcore_browser_profile" "agentcoreBrowserProfileResource" {
      lifecycle {
        create_before_destroy = true
      }
      description = "string"
      name        = "string"
      region      = "string"
      tags = {
        "string" = "string"
      }
      timeouts = {
        create = "string"
        delete = "string"
      }
    }
    
    var agentcoreBrowserProfileResource = new AgentcoreBrowserProfile("agentcoreBrowserProfileResource", AgentcoreBrowserProfileArgs.builder()
        .description("string")
        .name("string")
        .region("string")
        .tags(Map.of("string", "string"))
        .timeouts(AgentcoreBrowserProfileTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .build())
        .build());
    
    agentcore_browser_profile_resource = aws.bedrock.AgentcoreBrowserProfile("agentcoreBrowserProfileResource",
        description="string",
        name="string",
        region="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
        })
    
    const agentcoreBrowserProfileResource = new aws.bedrock.AgentcoreBrowserProfile("agentcoreBrowserProfileResource", {
        description: "string",
        name: "string",
        region: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
        },
    });
    
    type: aws:bedrock:AgentcoreBrowserProfile
    properties:
        description: string
        name: string
        region: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
    

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

    Description string
    Description of the browser profile. Must be between 1 and 4096 characters.
    Name string

    Name of the browser profile. Must start with a letter and can contain alphanumeric characters and underscores, up to 48 characters.

    The following arguments are optional:

    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Tags Dictionary<string, string>
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts AgentcoreBrowserProfileTimeouts
    Description string
    Description of the browser profile. Must be between 1 and 4096 characters.
    Name string

    Name of the browser profile. Must start with a letter and can contain alphanumeric characters and underscores, up to 48 characters.

    The following arguments are optional:

    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Tags map[string]string
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts AgentcoreBrowserProfileTimeoutsArgs
    description string
    Description of the browser profile. Must be between 1 and 4096 characters.
    name string

    Name of the browser profile. Must start with a letter and can contain alphanumeric characters and underscores, up to 48 characters.

    The following arguments are optional:

    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags map(string)
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts object
    description String
    Description of the browser profile. Must be between 1 and 4096 characters.
    name String

    Name of the browser profile. Must start with a letter and can contain alphanumeric characters and underscores, up to 48 characters.

    The following arguments are optional:

    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Map<String,String>
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts AgentcoreBrowserProfileTimeouts
    description string
    Description of the browser profile. Must be between 1 and 4096 characters.
    name string

    Name of the browser profile. Must start with a letter and can contain alphanumeric characters and underscores, up to 48 characters.

    The following arguments are optional:

    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags {[key: string]: string}
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts AgentcoreBrowserProfileTimeouts
    description str
    Description of the browser profile. Must be between 1 and 4096 characters.
    name str

    Name of the browser profile. Must start with a letter and can contain alphanumeric characters and underscores, up to 48 characters.

    The following arguments are optional:

    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Mapping[str, str]
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts AgentcoreBrowserProfileTimeoutsArgs
    description String
    Description of the browser profile. Must be between 1 and 4096 characters.
    name String

    Name of the browser profile. Must start with a letter and can contain alphanumeric characters and underscores, up to 48 characters.

    The following arguments are optional:

    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Map<String>
    Map of tags assigned to the resource. If configured with a provider defaultTags 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 AgentcoreBrowserProfile resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    ProfileArn string
    ARN of the Browser Profile.
    ProfileId string
    Unique identifier of the Browser Profile.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    Id string
    The provider-assigned unique ID for this managed resource.
    ProfileArn string
    ARN of the Browser Profile.
    ProfileId string
    Unique identifier of the Browser Profile.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    id string
    The provider-assigned unique ID for this managed resource.
    profile_arn string
    ARN of the Browser Profile.
    profile_id string
    Unique identifier of the Browser Profile.
    tags_all map(string)
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    id String
    The provider-assigned unique ID for this managed resource.
    profileArn String
    ARN of the Browser Profile.
    profileId String
    Unique identifier of the Browser Profile.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    id string
    The provider-assigned unique ID for this managed resource.
    profileArn string
    ARN of the Browser Profile.
    profileId string
    Unique identifier of the Browser Profile.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    id str
    The provider-assigned unique ID for this managed resource.
    profile_arn str
    ARN of the Browser Profile.
    profile_id str
    Unique identifier of the Browser Profile.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    id String
    The provider-assigned unique ID for this managed resource.
    profileArn String
    ARN of the Browser Profile.
    profileId String
    Unique identifier of the Browser Profile.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.

    Look up Existing AgentcoreBrowserProfile Resource

    Get an existing AgentcoreBrowserProfile 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?: AgentcoreBrowserProfileState, opts?: CustomResourceOptions): AgentcoreBrowserProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            name: Optional[str] = None,
            profile_arn: Optional[str] = None,
            profile_id: Optional[str] = None,
            region: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[AgentcoreBrowserProfileTimeoutsArgs] = None) -> AgentcoreBrowserProfile
    func GetAgentcoreBrowserProfile(ctx *Context, name string, id IDInput, state *AgentcoreBrowserProfileState, opts ...ResourceOption) (*AgentcoreBrowserProfile, error)
    public static AgentcoreBrowserProfile Get(string name, Input<string> id, AgentcoreBrowserProfileState? state, CustomResourceOptions? opts = null)
    public static AgentcoreBrowserProfile get(String name, Output<String> id, AgentcoreBrowserProfileState state, CustomResourceOptions options)
    resources:  _:    type: aws:bedrock:AgentcoreBrowserProfile    get:      id: ${id}
    import {
      to = aws_bedrock_agentcore_browser_profile.example
      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:
    Description string
    Description of the browser profile. Must be between 1 and 4096 characters.
    Name string

    Name of the browser profile. Must start with a letter and can contain alphanumeric characters and underscores, up to 48 characters.

    The following arguments are optional:

    ProfileArn string
    ARN of the Browser Profile.
    ProfileId string
    Unique identifier of the Browser Profile.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Tags Dictionary<string, string>
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    Timeouts AgentcoreBrowserProfileTimeouts
    Description string
    Description of the browser profile. Must be between 1 and 4096 characters.
    Name string

    Name of the browser profile. Must start with a letter and can contain alphanumeric characters and underscores, up to 48 characters.

    The following arguments are optional:

    ProfileArn string
    ARN of the Browser Profile.
    ProfileId string
    Unique identifier of the Browser Profile.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Tags map[string]string
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    Timeouts AgentcoreBrowserProfileTimeoutsArgs
    description string
    Description of the browser profile. Must be between 1 and 4096 characters.
    name string

    Name of the browser profile. Must start with a letter and can contain alphanumeric characters and underscores, up to 48 characters.

    The following arguments are optional:

    profile_arn string
    ARN of the Browser Profile.
    profile_id string
    Unique identifier of the Browser Profile.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags map(string)
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all map(string)
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    timeouts object
    description String
    Description of the browser profile. Must be between 1 and 4096 characters.
    name String

    Name of the browser profile. Must start with a letter and can contain alphanumeric characters and underscores, up to 48 characters.

    The following arguments are optional:

    profileArn String
    ARN of the Browser Profile.
    profileId String
    Unique identifier of the Browser Profile.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Map<String,String>
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    timeouts AgentcoreBrowserProfileTimeouts
    description string
    Description of the browser profile. Must be between 1 and 4096 characters.
    name string

    Name of the browser profile. Must start with a letter and can contain alphanumeric characters and underscores, up to 48 characters.

    The following arguments are optional:

    profileArn string
    ARN of the Browser Profile.
    profileId string
    Unique identifier of the Browser Profile.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags {[key: string]: string}
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    timeouts AgentcoreBrowserProfileTimeouts
    description str
    Description of the browser profile. Must be between 1 and 4096 characters.
    name str

    Name of the browser profile. Must start with a letter and can contain alphanumeric characters and underscores, up to 48 characters.

    The following arguments are optional:

    profile_arn str
    ARN of the Browser Profile.
    profile_id str
    Unique identifier of the Browser Profile.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Mapping[str, str]
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    timeouts AgentcoreBrowserProfileTimeoutsArgs
    description String
    Description of the browser profile. Must be between 1 and 4096 characters.
    name String

    Name of the browser profile. Must start with a letter and can contain alphanumeric characters and underscores, up to 48 characters.

    The following arguments are optional:

    profileArn String
    ARN of the Browser Profile.
    profileId String
    Unique identifier of the Browser Profile.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Map<String>
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    timeouts Property Map

    Supporting Types

    AgentcoreBrowserProfileTimeouts, AgentcoreBrowserProfileTimeoutsArgs

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

    Import

    Identity Schema

    Required

    • profileId (String) ID of the browser profile.

    Optional

    • accountId (String) AWS Account where this resource is managed.
    • region (String) Region where this resource is managed.

    Using pulumi import, import Bedrock AgentCore Browser Profiles using profileId. For example:

    $ pulumi import aws:bedrock/agentcoreBrowserProfile:AgentcoreBrowserProfile example browser-profile-id-12345678
    

    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 logo
    Viewing docs for AWS v7.41.0
    published on Friday, Aug 7, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial