1. Packages
  2. Packages
  3. AWS
  4. API Docs
  5. bedrock
  6. AgentcoreBrowser
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. Browser provides AI agents with web browsing capabilities, allowing them to navigate websites, extract information, and interact with web content in a controlled environment.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.bedrock.AgentcoreBrowser("example", {
        name: "example-browser",
        description: "Browser for web data extraction",
        networkConfiguration: {
            networkMode: "PUBLIC",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.bedrock.AgentcoreBrowser("example",
        name="example-browser",
        description="Browser for web data extraction",
        network_configuration={
            "network_mode": "PUBLIC",
        })
    
    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.NewAgentcoreBrowser(ctx, "example", &bedrock.AgentcoreBrowserArgs{
    			Name:        pulumi.String("example-browser"),
    			Description: pulumi.String("Browser for web data extraction"),
    			NetworkConfiguration: &bedrock.AgentcoreBrowserNetworkConfigurationArgs{
    				NetworkMode: pulumi.String("PUBLIC"),
    			},
    		})
    		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.AgentcoreBrowser("example", new()
        {
            Name = "example-browser",
            Description = "Browser for web data extraction",
            NetworkConfiguration = new Aws.Bedrock.Inputs.AgentcoreBrowserNetworkConfigurationArgs
            {
                NetworkMode = "PUBLIC",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.bedrock.AgentcoreBrowser;
    import com.pulumi.aws.bedrock.AgentcoreBrowserArgs;
    import com.pulumi.aws.bedrock.inputs.AgentcoreBrowserNetworkConfigurationArgs;
    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 AgentcoreBrowser("example", AgentcoreBrowserArgs.builder()
                .name("example-browser")
                .description("Browser for web data extraction")
                .networkConfiguration(AgentcoreBrowserNetworkConfigurationArgs.builder()
                    .networkMode("PUBLIC")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:bedrock:AgentcoreBrowser
        properties:
          name: example-browser
          description: Browser for web data extraction
          networkConfiguration:
            networkMode: PUBLIC
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    resource "aws_bedrock_agentcorebrowser" "example" {
      name        = "example-browser"
      description = "Browser for web data extraction"
      network_configuration = {
        network_mode = "PUBLIC"
      }
    }
    

    Browser with VPC Configuration

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const vpcExample = new aws.bedrock.AgentcoreBrowser("vpc_example", {
        name: "vpc-browser",
        description: "Browser with VPC configuration",
        networkConfiguration: {
            networkMode: "VPC",
            vpcConfig: {
                securityGroups: ["sg-12345678"],
                subnets: [
                    "subnet-12345678",
                    "subnet-87654321",
                ],
            },
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    vpc_example = aws.bedrock.AgentcoreBrowser("vpc_example",
        name="vpc-browser",
        description="Browser with VPC configuration",
        network_configuration={
            "network_mode": "VPC",
            "vpc_config": {
                "security_groups": ["sg-12345678"],
                "subnets": [
                    "subnet-12345678",
                    "subnet-87654321",
                ],
            },
        })
    
    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.NewAgentcoreBrowser(ctx, "vpc_example", &bedrock.AgentcoreBrowserArgs{
    			Name:        pulumi.String("vpc-browser"),
    			Description: pulumi.String("Browser with VPC configuration"),
    			NetworkConfiguration: &bedrock.AgentcoreBrowserNetworkConfigurationArgs{
    				NetworkMode: pulumi.String("VPC"),
    				VpcConfig: &bedrock.AgentcoreBrowserNetworkConfigurationVpcConfigArgs{
    					SecurityGroups: pulumi.StringArray{
    						pulumi.String("sg-12345678"),
    					},
    					Subnets: pulumi.StringArray{
    						pulumi.String("subnet-12345678"),
    						pulumi.String("subnet-87654321"),
    					},
    				},
    			},
    		})
    		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 vpcExample = new Aws.Bedrock.AgentcoreBrowser("vpc_example", new()
        {
            Name = "vpc-browser",
            Description = "Browser with VPC configuration",
            NetworkConfiguration = new Aws.Bedrock.Inputs.AgentcoreBrowserNetworkConfigurationArgs
            {
                NetworkMode = "VPC",
                VpcConfig = new Aws.Bedrock.Inputs.AgentcoreBrowserNetworkConfigurationVpcConfigArgs
                {
                    SecurityGroups = new[]
                    {
                        "sg-12345678",
                    },
                    Subnets = new[]
                    {
                        "subnet-12345678",
                        "subnet-87654321",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.bedrock.AgentcoreBrowser;
    import com.pulumi.aws.bedrock.AgentcoreBrowserArgs;
    import com.pulumi.aws.bedrock.inputs.AgentcoreBrowserNetworkConfigurationArgs;
    import com.pulumi.aws.bedrock.inputs.AgentcoreBrowserNetworkConfigurationVpcConfigArgs;
    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 vpcExample = new AgentcoreBrowser("vpcExample", AgentcoreBrowserArgs.builder()
                .name("vpc-browser")
                .description("Browser with VPC configuration")
                .networkConfiguration(AgentcoreBrowserNetworkConfigurationArgs.builder()
                    .networkMode("VPC")
                    .vpcConfig(AgentcoreBrowserNetworkConfigurationVpcConfigArgs.builder()
                        .securityGroups("sg-12345678")
                        .subnets(                    
                            "subnet-12345678",
                            "subnet-87654321")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      vpcExample:
        type: aws:bedrock:AgentcoreBrowser
        name: vpc_example
        properties:
          name: vpc-browser
          description: Browser with VPC configuration
          networkConfiguration:
            networkMode: VPC
            vpcConfig:
              securityGroups:
                - sg-12345678
              subnets:
                - subnet-12345678
                - subnet-87654321
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    resource "aws_bedrock_agentcorebrowser" "vpc_example" {
      name        = "vpc-browser"
      description = "Browser with VPC configuration"
      network_configuration = {
        network_mode = "VPC"
        vpc_config = {
          security_groups = ["sg-12345678"]
          subnets         = ["subnet-12345678", "subnet-87654321"]
        }
      }
    }
    

    Browser with Execution Role and Recording

    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-browser-role",
        assumeRolePolicy: assumeRole.then(assumeRole => assumeRole.json),
    });
    const recording = new aws.s3.Bucket("recording", {bucket: "browser-recording-bucket"});
    const exampleAgentcoreBrowser = new aws.bedrock.AgentcoreBrowser("example", {
        name: "example-browser",
        description: "Browser with recording enabled",
        executionRoleArn: example.arn,
        networkConfiguration: {
            networkMode: "PUBLIC",
        },
        recording: {
            enabled: true,
            s3Location: {
                bucket: recording.bucket,
                prefix: "browser-sessions/",
            },
        },
    });
    
    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-browser-role",
        assume_role_policy=assume_role.json)
    recording = aws.s3.Bucket("recording", bucket="browser-recording-bucket")
    example_agentcore_browser = aws.bedrock.AgentcoreBrowser("example",
        name="example-browser",
        description="Browser with recording enabled",
        execution_role_arn=example.arn,
        network_configuration={
            "network_mode": "PUBLIC",
        },
        recording={
            "enabled": True,
            "s3_location": {
                "bucket": recording.bucket,
                "prefix": "browser-sessions/",
            },
        })
    
    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-aws/sdk/v7/go/aws/s3"
    	"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-browser-role"),
    			AssumeRolePolicy: pulumi.String(assumeRole.Json),
    		})
    		if err != nil {
    			return err
    		}
    		recording, err := s3.NewBucket(ctx, "recording", &s3.BucketArgs{
    			Bucket: pulumi.String("browser-recording-bucket"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = bedrock.NewAgentcoreBrowser(ctx, "example", &bedrock.AgentcoreBrowserArgs{
    			Name:             pulumi.String("example-browser"),
    			Description:      pulumi.String("Browser with recording enabled"),
    			ExecutionRoleArn: example.Arn,
    			NetworkConfiguration: &bedrock.AgentcoreBrowserNetworkConfigurationArgs{
    				NetworkMode: pulumi.String("PUBLIC"),
    			},
    			Recording: &bedrock.AgentcoreBrowserRecordingArgs{
    				Enabled: pulumi.Bool(true),
    				S3Location: &bedrock.AgentcoreBrowserRecordingS3LocationArgs{
    					Bucket: recording.Bucket,
    					Prefix: pulumi.String("browser-sessions/"),
    				},
    			},
    		})
    		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-browser-role",
            AssumeRolePolicy = assumeRole.Apply(getPolicyDocumentResult => getPolicyDocumentResult.Json),
        });
    
        var recording = new Aws.S3.Bucket("recording", new()
        {
            BucketName = "browser-recording-bucket",
        });
    
        var exampleAgentcoreBrowser = new Aws.Bedrock.AgentcoreBrowser("example", new()
        {
            Name = "example-browser",
            Description = "Browser with recording enabled",
            ExecutionRoleArn = example.Arn,
            NetworkConfiguration = new Aws.Bedrock.Inputs.AgentcoreBrowserNetworkConfigurationArgs
            {
                NetworkMode = "PUBLIC",
            },
            Recording = new Aws.Bedrock.Inputs.AgentcoreBrowserRecordingArgs
            {
                Enabled = true,
                S3Location = new Aws.Bedrock.Inputs.AgentcoreBrowserRecordingS3LocationArgs
                {
                    Bucket = recording.BucketName,
                    Prefix = "browser-sessions/",
                },
            },
        });
    
    });
    
    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.inputs.GetPolicyDocumentStatementArgs;
    import com.pulumi.aws.iam.inputs.GetPolicyDocumentStatementPrincipalArgs;
    import com.pulumi.aws.iam.Role;
    import com.pulumi.aws.iam.RoleArgs;
    import com.pulumi.aws.s3.Bucket;
    import com.pulumi.aws.s3.BucketArgs;
    import com.pulumi.aws.bedrock.AgentcoreBrowser;
    import com.pulumi.aws.bedrock.AgentcoreBrowserArgs;
    import com.pulumi.aws.bedrock.inputs.AgentcoreBrowserNetworkConfigurationArgs;
    import com.pulumi.aws.bedrock.inputs.AgentcoreBrowserRecordingArgs;
    import com.pulumi.aws.bedrock.inputs.AgentcoreBrowserRecordingS3LocationArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var 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-browser-role")
                .assumeRolePolicy(assumeRole.json())
                .build());
    
            var recording = new Bucket("recording", BucketArgs.builder()
                .bucket("browser-recording-bucket")
                .build());
    
            var exampleAgentcoreBrowser = new AgentcoreBrowser("exampleAgentcoreBrowser", AgentcoreBrowserArgs.builder()
                .name("example-browser")
                .description("Browser with recording enabled")
                .executionRoleArn(example.arn())
                .networkConfiguration(AgentcoreBrowserNetworkConfigurationArgs.builder()
                    .networkMode("PUBLIC")
                    .build())
                .recording(AgentcoreBrowserRecordingArgs.builder()
                    .enabled(true)
                    .s3Location(AgentcoreBrowserRecordingS3LocationArgs.builder()
                        .bucket(recording.bucket())
                        .prefix("browser-sessions/")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:iam:Role
        properties:
          name: bedrock-agentcore-browser-role
          assumeRolePolicy: ${assumeRole.json}
      recording:
        type: aws:s3:Bucket
        properties:
          bucket: browser-recording-bucket
      exampleAgentcoreBrowser:
        type: aws:bedrock:AgentcoreBrowser
        name: example
        properties:
          name: example-browser
          description: Browser with recording enabled
          executionRoleArn: ${example.arn}
          networkConfiguration:
            networkMode: PUBLIC
          recording:
            enabled: true
            s3Location:
              bucket: ${recording.bucket}
              prefix: browser-sessions/
    variables:
      assumeRole:
        fn::invoke:
          function: aws:iam:getPolicyDocument
          arguments:
            statements:
              - effect: Allow
                actions:
                  - sts:AssumeRole
                principals:
                  - type: Service
                    identifiers:
                      - bedrock-agentcore.amazonaws.com
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    data "aws_iam_getpolicydocument" "assumeRole" {
      statements {
        effect  = "Allow"
        actions = ["sts:AssumeRole"]
        principals {
          type        = "Service"
          identifiers = ["bedrock-agentcore.amazonaws.com"]
        }
      }
    }
    
    resource "aws_iam_role" "example" {
      name               = "bedrock-agentcore-browser-role"
      assume_role_policy = data.aws_iam_getpolicydocument.assumeRole.json
    }
    resource "aws_s3_bucket" "recording" {
      bucket = "browser-recording-bucket"
    }
    resource "aws_bedrock_agentcorebrowser" "example" {
      name               = "example-browser"
      description        = "Browser with recording enabled"
      execution_role_arn = aws_iam_role.example.arn
      network_configuration = {
        network_mode = "PUBLIC"
      }
      recording = {
        enabled = true
        s3_location = {
          bucket = aws_s3_bucket.recording.bucket
          prefix = "browser-sessions/"
        }
      }
    }
    

    Create AgentcoreBrowser Resource

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

    Constructor syntax

    new AgentcoreBrowser(name: string, args: AgentcoreBrowserArgs, opts?: CustomResourceOptions);
    @overload
    def AgentcoreBrowser(resource_name: str,
                         args: AgentcoreBrowserArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def AgentcoreBrowser(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         network_configuration: Optional[AgentcoreBrowserNetworkConfigurationArgs] = None,
                         browser_signing: Optional[AgentcoreBrowserBrowserSigningArgs] = None,
                         certificates: Optional[Sequence[AgentcoreBrowserCertificateArgs]] = None,
                         description: Optional[str] = None,
                         enterprise_policies: Optional[Sequence[AgentcoreBrowserEnterprisePolicyArgs]] = None,
                         execution_role_arn: Optional[str] = None,
                         name: Optional[str] = None,
                         recording: Optional[AgentcoreBrowserRecordingArgs] = None,
                         region: Optional[str] = None,
                         tags: Optional[Mapping[str, str]] = None,
                         timeouts: Optional[AgentcoreBrowserTimeoutsArgs] = None)
    func NewAgentcoreBrowser(ctx *Context, name string, args AgentcoreBrowserArgs, opts ...ResourceOption) (*AgentcoreBrowser, error)
    public AgentcoreBrowser(string name, AgentcoreBrowserArgs args, CustomResourceOptions? opts = null)
    public AgentcoreBrowser(String name, AgentcoreBrowserArgs args)
    public AgentcoreBrowser(String name, AgentcoreBrowserArgs args, CustomResourceOptions options)
    
    type: aws:bedrock:AgentcoreBrowser
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "aws_bedrock_agentcore_browser" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args AgentcoreBrowserArgs
    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 AgentcoreBrowserArgs
    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 AgentcoreBrowserArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AgentcoreBrowserArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AgentcoreBrowserArgs
    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 agentcoreBrowserResource = new Aws.Bedrock.AgentcoreBrowser("agentcoreBrowserResource", new()
    {
        NetworkConfiguration = new Aws.Bedrock.Inputs.AgentcoreBrowserNetworkConfigurationArgs
        {
            NetworkMode = "string",
            VpcConfig = new Aws.Bedrock.Inputs.AgentcoreBrowserNetworkConfigurationVpcConfigArgs
            {
                SecurityGroups = new[]
                {
                    "string",
                },
                Subnets = new[]
                {
                    "string",
                },
            },
        },
        BrowserSigning = new Aws.Bedrock.Inputs.AgentcoreBrowserBrowserSigningArgs
        {
            Enabled = false,
        },
        Certificates = new[]
        {
            new Aws.Bedrock.Inputs.AgentcoreBrowserCertificateArgs
            {
                Location = new Aws.Bedrock.Inputs.AgentcoreBrowserCertificateLocationArgs
                {
                    SecretsManager = new Aws.Bedrock.Inputs.AgentcoreBrowserCertificateLocationSecretsManagerArgs
                    {
                        SecretArn = "string",
                    },
                },
            },
        },
        Description = "string",
        EnterprisePolicies = new[]
        {
            new Aws.Bedrock.Inputs.AgentcoreBrowserEnterprisePolicyArgs
            {
                Location = new Aws.Bedrock.Inputs.AgentcoreBrowserEnterprisePolicyLocationArgs
                {
                    S3 = new Aws.Bedrock.Inputs.AgentcoreBrowserEnterprisePolicyLocationS3Args
                    {
                        Bucket = "string",
                        Prefix = "string",
                        VersionId = "string",
                    },
                },
                Type = "string",
            },
        },
        ExecutionRoleArn = "string",
        Name = "string",
        Recording = new Aws.Bedrock.Inputs.AgentcoreBrowserRecordingArgs
        {
            Enabled = false,
            S3Location = new Aws.Bedrock.Inputs.AgentcoreBrowserRecordingS3LocationArgs
            {
                Bucket = "string",
                Prefix = "string",
            },
        },
        Region = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.Bedrock.Inputs.AgentcoreBrowserTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
        },
    });
    
    example, err := bedrock.NewAgentcoreBrowser(ctx, "agentcoreBrowserResource", &bedrock.AgentcoreBrowserArgs{
    	NetworkConfiguration: &bedrock.AgentcoreBrowserNetworkConfigurationArgs{
    		NetworkMode: pulumi.String("string"),
    		VpcConfig: &bedrock.AgentcoreBrowserNetworkConfigurationVpcConfigArgs{
    			SecurityGroups: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Subnets: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	BrowserSigning: &bedrock.AgentcoreBrowserBrowserSigningArgs{
    		Enabled: pulumi.Bool(false),
    	},
    	Certificates: bedrock.AgentcoreBrowserCertificateArray{
    		&bedrock.AgentcoreBrowserCertificateArgs{
    			Location: &bedrock.AgentcoreBrowserCertificateLocationArgs{
    				SecretsManager: &bedrock.AgentcoreBrowserCertificateLocationSecretsManagerArgs{
    					SecretArn: pulumi.String("string"),
    				},
    			},
    		},
    	},
    	Description: pulumi.String("string"),
    	EnterprisePolicies: bedrock.AgentcoreBrowserEnterprisePolicyArray{
    		&bedrock.AgentcoreBrowserEnterprisePolicyArgs{
    			Location: &bedrock.AgentcoreBrowserEnterprisePolicyLocationArgs{
    				S3: &bedrock.AgentcoreBrowserEnterprisePolicyLocationS3Args{
    					Bucket:    pulumi.String("string"),
    					Prefix:    pulumi.String("string"),
    					VersionId: pulumi.String("string"),
    				},
    			},
    			Type: pulumi.String("string"),
    		},
    	},
    	ExecutionRoleArn: pulumi.String("string"),
    	Name:             pulumi.String("string"),
    	Recording: &bedrock.AgentcoreBrowserRecordingArgs{
    		Enabled: pulumi.Bool(false),
    		S3Location: &bedrock.AgentcoreBrowserRecordingS3LocationArgs{
    			Bucket: pulumi.String("string"),
    			Prefix: pulumi.String("string"),
    		},
    	},
    	Region: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &bedrock.AgentcoreBrowserTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    	},
    })
    
    resource "aws_bedrock_agentcore_browser" "agentcoreBrowserResource" {
      lifecycle {
        create_before_destroy = true
      }
      network_configuration = {
        network_mode = "string"
        vpc_config = {
          security_groups = ["string"]
          subnets         = ["string"]
        }
      }
      browser_signing = {
        enabled = false
      }
      certificates {
        location = {
          secrets_manager = {
            secret_arn = "string"
          }
        }
      }
      description = "string"
      enterprise_policies {
        location = {
          s3 = {
            bucket     = "string"
            prefix     = "string"
            version_id = "string"
          }
        }
        type = "string"
      }
      execution_role_arn = "string"
      name               = "string"
      recording = {
        enabled = false
        s3_location = {
          bucket = "string"
          prefix = "string"
        }
      }
      region = "string"
      tags = {
        "string" = "string"
      }
      timeouts = {
        create = "string"
        delete = "string"
      }
    }
    
    var agentcoreBrowserResource = new AgentcoreBrowser("agentcoreBrowserResource", AgentcoreBrowserArgs.builder()
        .networkConfiguration(AgentcoreBrowserNetworkConfigurationArgs.builder()
            .networkMode("string")
            .vpcConfig(AgentcoreBrowserNetworkConfigurationVpcConfigArgs.builder()
                .securityGroups("string")
                .subnets("string")
                .build())
            .build())
        .browserSigning(AgentcoreBrowserBrowserSigningArgs.builder()
            .enabled(false)
            .build())
        .certificates(AgentcoreBrowserCertificateArgs.builder()
            .location(AgentcoreBrowserCertificateLocationArgs.builder()
                .secretsManager(AgentcoreBrowserCertificateLocationSecretsManagerArgs.builder()
                    .secretArn("string")
                    .build())
                .build())
            .build())
        .description("string")
        .enterprisePolicies(AgentcoreBrowserEnterprisePolicyArgs.builder()
            .location(AgentcoreBrowserEnterprisePolicyLocationArgs.builder()
                .s3(AgentcoreBrowserEnterprisePolicyLocationS3Args.builder()
                    .bucket("string")
                    .prefix("string")
                    .versionId("string")
                    .build())
                .build())
            .type("string")
            .build())
        .executionRoleArn("string")
        .name("string")
        .recording(AgentcoreBrowserRecordingArgs.builder()
            .enabled(false)
            .s3Location(AgentcoreBrowserRecordingS3LocationArgs.builder()
                .bucket("string")
                .prefix("string")
                .build())
            .build())
        .region("string")
        .tags(Map.of("string", "string"))
        .timeouts(AgentcoreBrowserTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .build())
        .build());
    
    agentcore_browser_resource = aws.bedrock.AgentcoreBrowser("agentcoreBrowserResource",
        network_configuration={
            "network_mode": "string",
            "vpc_config": {
                "security_groups": ["string"],
                "subnets": ["string"],
            },
        },
        browser_signing={
            "enabled": False,
        },
        certificates=[{
            "location": {
                "secrets_manager": {
                    "secret_arn": "string",
                },
            },
        }],
        description="string",
        enterprise_policies=[{
            "location": {
                "s3": {
                    "bucket": "string",
                    "prefix": "string",
                    "version_id": "string",
                },
            },
            "type": "string",
        }],
        execution_role_arn="string",
        name="string",
        recording={
            "enabled": False,
            "s3_location": {
                "bucket": "string",
                "prefix": "string",
            },
        },
        region="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
        })
    
    const agentcoreBrowserResource = new aws.bedrock.AgentcoreBrowser("agentcoreBrowserResource", {
        networkConfiguration: {
            networkMode: "string",
            vpcConfig: {
                securityGroups: ["string"],
                subnets: ["string"],
            },
        },
        browserSigning: {
            enabled: false,
        },
        certificates: [{
            location: {
                secretsManager: {
                    secretArn: "string",
                },
            },
        }],
        description: "string",
        enterprisePolicies: [{
            location: {
                s3: {
                    bucket: "string",
                    prefix: "string",
                    versionId: "string",
                },
            },
            type: "string",
        }],
        executionRoleArn: "string",
        name: "string",
        recording: {
            enabled: false,
            s3Location: {
                bucket: "string",
                prefix: "string",
            },
        },
        region: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
        },
    });
    
    type: aws:bedrock:AgentcoreBrowser
    properties:
        browserSigning:
            enabled: false
        certificates:
            - location:
                secretsManager:
                    secretArn: string
        description: string
        enterprisePolicies:
            - location:
                s3:
                    bucket: string
                    prefix: string
                    versionId: string
              type: string
        executionRoleArn: string
        name: string
        networkConfiguration:
            networkMode: string
            vpcConfig:
                securityGroups:
                    - string
                subnets:
                    - string
        recording:
            enabled: false
            s3Location:
                bucket: string
                prefix: string
        region: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
    

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

    NetworkConfiguration AgentcoreBrowserNetworkConfiguration

    Network configuration for the browser. See networkConfiguration below.

    The following arguments are optional:

    BrowserSigning AgentcoreBrowserBrowserSigning
    Browser signing configuration that enables cryptographic agent identification using HTTP message signatures. See browserSigning below.
    Certificates List<AgentcoreBrowserCertificate>
    Certificates to install in the browser. See certificate below.
    Description string
    Description of the browser.
    EnterprisePolicies List<AgentcoreBrowserEnterprisePolicy>
    Enterprise policy files to apply to the browser. See enterprisePolicy below.
    ExecutionRoleArn string
    ARN of the IAM role that the browser assumes for execution.
    Name string
    Name of the browser.
    Recording AgentcoreBrowserRecording
    Recording configuration for browser sessions. See recording 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 defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts AgentcoreBrowserTimeouts
    NetworkConfiguration AgentcoreBrowserNetworkConfigurationArgs

    Network configuration for the browser. See networkConfiguration below.

    The following arguments are optional:

    BrowserSigning AgentcoreBrowserBrowserSigningArgs
    Browser signing configuration that enables cryptographic agent identification using HTTP message signatures. See browserSigning below.
    Certificates []AgentcoreBrowserCertificateArgs
    Certificates to install in the browser. See certificate below.
    Description string
    Description of the browser.
    EnterprisePolicies []AgentcoreBrowserEnterprisePolicyArgs
    Enterprise policy files to apply to the browser. See enterprisePolicy below.
    ExecutionRoleArn string
    ARN of the IAM role that the browser assumes for execution.
    Name string
    Name of the browser.
    Recording AgentcoreBrowserRecordingArgs
    Recording configuration for browser sessions. See recording 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 defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts AgentcoreBrowserTimeoutsArgs
    network_configuration object

    Network configuration for the browser. See networkConfiguration below.

    The following arguments are optional:

    browser_signing object
    Browser signing configuration that enables cryptographic agent identification using HTTP message signatures. See browserSigning below.
    certificates list(object)
    Certificates to install in the browser. See certificate below.
    description string
    Description of the browser.
    enterprise_policies list(object)
    Enterprise policy files to apply to the browser. See enterprisePolicy below.
    execution_role_arn string
    ARN of the IAM role that the browser assumes for execution.
    name string
    Name of the browser.
    recording object
    Recording configuration for browser sessions. See recording 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 defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts object
    networkConfiguration AgentcoreBrowserNetworkConfiguration

    Network configuration for the browser. See networkConfiguration below.

    The following arguments are optional:

    browserSigning AgentcoreBrowserBrowserSigning
    Browser signing configuration that enables cryptographic agent identification using HTTP message signatures. See browserSigning below.
    certificates List<AgentcoreBrowserCertificate>
    Certificates to install in the browser. See certificate below.
    description String
    Description of the browser.
    enterprisePolicies List<AgentcoreBrowserEnterprisePolicy>
    Enterprise policy files to apply to the browser. See enterprisePolicy below.
    executionRoleArn String
    ARN of the IAM role that the browser assumes for execution.
    name String
    Name of the browser.
    recording AgentcoreBrowserRecording
    Recording configuration for browser sessions. See recording 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 defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts AgentcoreBrowserTimeouts
    networkConfiguration AgentcoreBrowserNetworkConfiguration

    Network configuration for the browser. See networkConfiguration below.

    The following arguments are optional:

    browserSigning AgentcoreBrowserBrowserSigning
    Browser signing configuration that enables cryptographic agent identification using HTTP message signatures. See browserSigning below.
    certificates AgentcoreBrowserCertificate[]
    Certificates to install in the browser. See certificate below.
    description string
    Description of the browser.
    enterprisePolicies AgentcoreBrowserEnterprisePolicy[]
    Enterprise policy files to apply to the browser. See enterprisePolicy below.
    executionRoleArn string
    ARN of the IAM role that the browser assumes for execution.
    name string
    Name of the browser.
    recording AgentcoreBrowserRecording
    Recording configuration for browser sessions. See recording 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 defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts AgentcoreBrowserTimeouts
    network_configuration AgentcoreBrowserNetworkConfigurationArgs

    Network configuration for the browser. See networkConfiguration below.

    The following arguments are optional:

    browser_signing AgentcoreBrowserBrowserSigningArgs
    Browser signing configuration that enables cryptographic agent identification using HTTP message signatures. See browserSigning below.
    certificates Sequence[AgentcoreBrowserCertificateArgs]
    Certificates to install in the browser. See certificate below.
    description str
    Description of the browser.
    enterprise_policies Sequence[AgentcoreBrowserEnterprisePolicyArgs]
    Enterprise policy files to apply to the browser. See enterprisePolicy below.
    execution_role_arn str
    ARN of the IAM role that the browser assumes for execution.
    name str
    Name of the browser.
    recording AgentcoreBrowserRecordingArgs
    Recording configuration for browser sessions. See recording 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 defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts AgentcoreBrowserTimeoutsArgs
    networkConfiguration Property Map

    Network configuration for the browser. See networkConfiguration below.

    The following arguments are optional:

    browserSigning Property Map
    Browser signing configuration that enables cryptographic agent identification using HTTP message signatures. See browserSigning below.
    certificates List<Property Map>
    Certificates to install in the browser. See certificate below.
    description String
    Description of the browser.
    enterprisePolicies List<Property Map>
    Enterprise policy files to apply to the browser. See enterprisePolicy below.
    executionRoleArn String
    ARN of the IAM role that the browser assumes for execution.
    name String
    Name of the browser.
    recording Property Map
    Recording configuration for browser sessions. See recording 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 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 AgentcoreBrowser resource produces the following output properties:

    BrowserArn string
    ARN of the Browser.
    BrowserId string
    Unique identifier of the Browser.
    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 defaultTags configuration block.
    BrowserArn string
    ARN of the Browser.
    BrowserId string
    Unique identifier of the Browser.
    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 defaultTags configuration block.
    browser_arn string
    ARN of the Browser.
    browser_id string
    Unique identifier of the Browser.
    id string
    The provider-assigned unique ID for this managed resource.
    tags_all map(string)
    A map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    browserArn String
    ARN of the Browser.
    browserId String
    Unique identifier of the Browser.
    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 defaultTags configuration block.
    browserArn string
    ARN of the Browser.
    browserId string
    Unique identifier of the Browser.
    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 defaultTags configuration block.
    browser_arn str
    ARN of the Browser.
    browser_id str
    Unique identifier of the Browser.
    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 defaultTags configuration block.
    browserArn String
    ARN of the Browser.
    browserId String
    Unique identifier of the Browser.
    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 defaultTags configuration block.

    Look up Existing AgentcoreBrowser Resource

    Get an existing AgentcoreBrowser 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?: AgentcoreBrowserState, opts?: CustomResourceOptions): AgentcoreBrowser
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            browser_arn: Optional[str] = None,
            browser_id: Optional[str] = None,
            browser_signing: Optional[AgentcoreBrowserBrowserSigningArgs] = None,
            certificates: Optional[Sequence[AgentcoreBrowserCertificateArgs]] = None,
            description: Optional[str] = None,
            enterprise_policies: Optional[Sequence[AgentcoreBrowserEnterprisePolicyArgs]] = None,
            execution_role_arn: Optional[str] = None,
            name: Optional[str] = None,
            network_configuration: Optional[AgentcoreBrowserNetworkConfigurationArgs] = None,
            recording: Optional[AgentcoreBrowserRecordingArgs] = None,
            region: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[AgentcoreBrowserTimeoutsArgs] = None) -> AgentcoreBrowser
    func GetAgentcoreBrowser(ctx *Context, name string, id IDInput, state *AgentcoreBrowserState, opts ...ResourceOption) (*AgentcoreBrowser, error)
    public static AgentcoreBrowser Get(string name, Input<string> id, AgentcoreBrowserState? state, CustomResourceOptions? opts = null)
    public static AgentcoreBrowser get(String name, Output<String> id, AgentcoreBrowserState state, CustomResourceOptions options)
    resources:  _:    type: aws:bedrock:AgentcoreBrowser    get:      id: ${id}
    import {
      to = aws_bedrock_agentcore_browser.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:
    BrowserArn string
    ARN of the Browser.
    BrowserId string
    Unique identifier of the Browser.
    BrowserSigning AgentcoreBrowserBrowserSigning
    Browser signing configuration that enables cryptographic agent identification using HTTP message signatures. See browserSigning below.
    Certificates List<AgentcoreBrowserCertificate>
    Certificates to install in the browser. See certificate below.
    Description string
    Description of the browser.
    EnterprisePolicies List<AgentcoreBrowserEnterprisePolicy>
    Enterprise policy files to apply to the browser. See enterprisePolicy below.
    ExecutionRoleArn string
    ARN of the IAM role that the browser assumes for execution.
    Name string
    Name of the browser.
    NetworkConfiguration AgentcoreBrowserNetworkConfiguration

    Network configuration for the browser. See networkConfiguration below.

    The following arguments are optional:

    Recording AgentcoreBrowserRecording
    Recording configuration for browser sessions. See recording 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 defaultTags 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 defaultTags configuration block.
    Timeouts AgentcoreBrowserTimeouts
    BrowserArn string
    ARN of the Browser.
    BrowserId string
    Unique identifier of the Browser.
    BrowserSigning AgentcoreBrowserBrowserSigningArgs
    Browser signing configuration that enables cryptographic agent identification using HTTP message signatures. See browserSigning below.
    Certificates []AgentcoreBrowserCertificateArgs
    Certificates to install in the browser. See certificate below.
    Description string
    Description of the browser.
    EnterprisePolicies []AgentcoreBrowserEnterprisePolicyArgs
    Enterprise policy files to apply to the browser. See enterprisePolicy below.
    ExecutionRoleArn string
    ARN of the IAM role that the browser assumes for execution.
    Name string
    Name of the browser.
    NetworkConfiguration AgentcoreBrowserNetworkConfigurationArgs

    Network configuration for the browser. See networkConfiguration below.

    The following arguments are optional:

    Recording AgentcoreBrowserRecordingArgs
    Recording configuration for browser sessions. See recording 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 defaultTags 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 defaultTags configuration block.
    Timeouts AgentcoreBrowserTimeoutsArgs
    browser_arn string
    ARN of the Browser.
    browser_id string
    Unique identifier of the Browser.
    browser_signing object
    Browser signing configuration that enables cryptographic agent identification using HTTP message signatures. See browserSigning below.
    certificates list(object)
    Certificates to install in the browser. See certificate below.
    description string
    Description of the browser.
    enterprise_policies list(object)
    Enterprise policy files to apply to the browser. See enterprisePolicy below.
    execution_role_arn string
    ARN of the IAM role that the browser assumes for execution.
    name string
    Name of the browser.
    network_configuration object

    Network configuration for the browser. See networkConfiguration below.

    The following arguments are optional:

    recording object
    Recording configuration for browser sessions. See recording 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 defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all map(string)
    A map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    timeouts object
    browserArn String
    ARN of the Browser.
    browserId String
    Unique identifier of the Browser.
    browserSigning AgentcoreBrowserBrowserSigning
    Browser signing configuration that enables cryptographic agent identification using HTTP message signatures. See browserSigning below.
    certificates List<AgentcoreBrowserCertificate>
    Certificates to install in the browser. See certificate below.
    description String
    Description of the browser.
    enterprisePolicies List<AgentcoreBrowserEnterprisePolicy>
    Enterprise policy files to apply to the browser. See enterprisePolicy below.
    executionRoleArn String
    ARN of the IAM role that the browser assumes for execution.
    name String
    Name of the browser.
    networkConfiguration AgentcoreBrowserNetworkConfiguration

    Network configuration for the browser. See networkConfiguration below.

    The following arguments are optional:

    recording AgentcoreBrowserRecording
    Recording configuration for browser sessions. See recording 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 defaultTags 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 defaultTags configuration block.
    timeouts AgentcoreBrowserTimeouts
    browserArn string
    ARN of the Browser.
    browserId string
    Unique identifier of the Browser.
    browserSigning AgentcoreBrowserBrowserSigning
    Browser signing configuration that enables cryptographic agent identification using HTTP message signatures. See browserSigning below.
    certificates AgentcoreBrowserCertificate[]
    Certificates to install in the browser. See certificate below.
    description string
    Description of the browser.
    enterprisePolicies AgentcoreBrowserEnterprisePolicy[]
    Enterprise policy files to apply to the browser. See enterprisePolicy below.
    executionRoleArn string
    ARN of the IAM role that the browser assumes for execution.
    name string
    Name of the browser.
    networkConfiguration AgentcoreBrowserNetworkConfiguration

    Network configuration for the browser. See networkConfiguration below.

    The following arguments are optional:

    recording AgentcoreBrowserRecording
    Recording configuration for browser sessions. See recording 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 defaultTags 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 defaultTags configuration block.
    timeouts AgentcoreBrowserTimeouts
    browser_arn str
    ARN of the Browser.
    browser_id str
    Unique identifier of the Browser.
    browser_signing AgentcoreBrowserBrowserSigningArgs
    Browser signing configuration that enables cryptographic agent identification using HTTP message signatures. See browserSigning below.
    certificates Sequence[AgentcoreBrowserCertificateArgs]
    Certificates to install in the browser. See certificate below.
    description str
    Description of the browser.
    enterprise_policies Sequence[AgentcoreBrowserEnterprisePolicyArgs]
    Enterprise policy files to apply to the browser. See enterprisePolicy below.
    execution_role_arn str
    ARN of the IAM role that the browser assumes for execution.
    name str
    Name of the browser.
    network_configuration AgentcoreBrowserNetworkConfigurationArgs

    Network configuration for the browser. See networkConfiguration below.

    The following arguments are optional:

    recording AgentcoreBrowserRecordingArgs
    Recording configuration for browser sessions. See recording 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 defaultTags 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 defaultTags configuration block.
    timeouts AgentcoreBrowserTimeoutsArgs
    browserArn String
    ARN of the Browser.
    browserId String
    Unique identifier of the Browser.
    browserSigning Property Map
    Browser signing configuration that enables cryptographic agent identification using HTTP message signatures. See browserSigning below.
    certificates List<Property Map>
    Certificates to install in the browser. See certificate below.
    description String
    Description of the browser.
    enterprisePolicies List<Property Map>
    Enterprise policy files to apply to the browser. See enterprisePolicy below.
    executionRoleArn String
    ARN of the IAM role that the browser assumes for execution.
    name String
    Name of the browser.
    networkConfiguration Property Map

    Network configuration for the browser. See networkConfiguration below.

    The following arguments are optional:

    recording Property Map
    Recording configuration for browser sessions. See recording 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 defaultTags 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 defaultTags configuration block.
    timeouts Property Map

    Supporting Types

    AgentcoreBrowserBrowserSigning, AgentcoreBrowserBrowserSigningArgs

    Enabled bool
    Whether browser signing is enabled. When enabled, the browser cryptographically signs HTTP requests to identify itself as an AI agent to bot control vendors.
    Enabled bool
    Whether browser signing is enabled. When enabled, the browser cryptographically signs HTTP requests to identify itself as an AI agent to bot control vendors.
    enabled bool
    Whether browser signing is enabled. When enabled, the browser cryptographically signs HTTP requests to identify itself as an AI agent to bot control vendors.
    enabled Boolean
    Whether browser signing is enabled. When enabled, the browser cryptographically signs HTTP requests to identify itself as an AI agent to bot control vendors.
    enabled boolean
    Whether browser signing is enabled. When enabled, the browser cryptographically signs HTTP requests to identify itself as an AI agent to bot control vendors.
    enabled bool
    Whether browser signing is enabled. When enabled, the browser cryptographically signs HTTP requests to identify itself as an AI agent to bot control vendors.
    enabled Boolean
    Whether browser signing is enabled. When enabled, the browser cryptographically signs HTTP requests to identify itself as an AI agent to bot control vendors.

    AgentcoreBrowserCertificate, AgentcoreBrowserCertificateArgs

    Location AgentcoreBrowserCertificateLocation
    Location from which to retrieve the certificate. See certificates.location below.
    Location AgentcoreBrowserCertificateLocation
    Location from which to retrieve the certificate. See certificates.location below.
    location object
    Location from which to retrieve the certificate. See certificates.location below.
    location AgentcoreBrowserCertificateLocation
    Location from which to retrieve the certificate. See certificates.location below.
    location AgentcoreBrowserCertificateLocation
    Location from which to retrieve the certificate. See certificates.location below.
    location AgentcoreBrowserCertificateLocation
    Location from which to retrieve the certificate. See certificates.location below.
    location Property Map
    Location from which to retrieve the certificate. See certificates.location below.

    AgentcoreBrowserCertificateLocation, AgentcoreBrowserCertificateLocationArgs

    SecretsManager AgentcoreBrowserCertificateLocationSecretsManager
    AWS Secrets Manager location of the certificate. See secretsManager below.
    SecretsManager AgentcoreBrowserCertificateLocationSecretsManager
    AWS Secrets Manager location of the certificate. See secretsManager below.
    secrets_manager object
    AWS Secrets Manager location of the certificate. See secretsManager below.
    secretsManager AgentcoreBrowserCertificateLocationSecretsManager
    AWS Secrets Manager location of the certificate. See secretsManager below.
    secretsManager AgentcoreBrowserCertificateLocationSecretsManager
    AWS Secrets Manager location of the certificate. See secretsManager below.
    secrets_manager AgentcoreBrowserCertificateLocationSecretsManager
    AWS Secrets Manager location of the certificate. See secretsManager below.
    secretsManager Property Map
    AWS Secrets Manager location of the certificate. See secretsManager below.

    AgentcoreBrowserCertificateLocationSecretsManager, AgentcoreBrowserCertificateLocationSecretsManagerArgs

    SecretArn string
    ARN of the AWS Secrets Manager secret containing the certificate.
    SecretArn string
    ARN of the AWS Secrets Manager secret containing the certificate.
    secret_arn string
    ARN of the AWS Secrets Manager secret containing the certificate.
    secretArn String
    ARN of the AWS Secrets Manager secret containing the certificate.
    secretArn string
    ARN of the AWS Secrets Manager secret containing the certificate.
    secret_arn str
    ARN of the AWS Secrets Manager secret containing the certificate.
    secretArn String
    ARN of the AWS Secrets Manager secret containing the certificate.

    AgentcoreBrowserEnterprisePolicy, AgentcoreBrowserEnterprisePolicyArgs

    Location AgentcoreBrowserEnterprisePolicyLocation
    Location of the enterprise policy file. See location below.
    Type string
    Type of browser enterprise policy. Valid values: MANAGED, RECOMMENDED.
    Location AgentcoreBrowserEnterprisePolicyLocation
    Location of the enterprise policy file. See location below.
    Type string
    Type of browser enterprise policy. Valid values: MANAGED, RECOMMENDED.
    location object
    Location of the enterprise policy file. See location below.
    type string
    Type of browser enterprise policy. Valid values: MANAGED, RECOMMENDED.
    location AgentcoreBrowserEnterprisePolicyLocation
    Location of the enterprise policy file. See location below.
    type String
    Type of browser enterprise policy. Valid values: MANAGED, RECOMMENDED.
    location AgentcoreBrowserEnterprisePolicyLocation
    Location of the enterprise policy file. See location below.
    type string
    Type of browser enterprise policy. Valid values: MANAGED, RECOMMENDED.
    location AgentcoreBrowserEnterprisePolicyLocation
    Location of the enterprise policy file. See location below.
    type str
    Type of browser enterprise policy. Valid values: MANAGED, RECOMMENDED.
    location Property Map
    Location of the enterprise policy file. See location below.
    type String
    Type of browser enterprise policy. Valid values: MANAGED, RECOMMENDED.

    AgentcoreBrowserEnterprisePolicyLocation, AgentcoreBrowserEnterprisePolicyLocationArgs

    S3 AgentcoreBrowserEnterprisePolicyLocationS3
    S3 location of the enterprise policy file. See s3 below.
    S3 AgentcoreBrowserEnterprisePolicyLocationS3
    S3 location of the enterprise policy file. See s3 below.
    s3 object
    S3 location of the enterprise policy file. See s3 below.
    s3 AgentcoreBrowserEnterprisePolicyLocationS3
    S3 location of the enterprise policy file. See s3 below.
    s3 AgentcoreBrowserEnterprisePolicyLocationS3
    S3 location of the enterprise policy file. See s3 below.
    s3 AgentcoreBrowserEnterprisePolicyLocationS3
    S3 location of the enterprise policy file. See s3 below.
    s3 Property Map
    S3 location of the enterprise policy file. See s3 below.

    AgentcoreBrowserEnterprisePolicyLocationS3, AgentcoreBrowserEnterprisePolicyLocationS3Args

    Bucket string
    Name of the S3 bucket.
    Prefix string
    Prefix for objects in the S3 bucket.
    VersionId string
    Version ID of the S3 object. If not specified, the latest version is used.
    Bucket string
    Name of the S3 bucket.
    Prefix string
    Prefix for objects in the S3 bucket.
    VersionId string
    Version ID of the S3 object. If not specified, the latest version is used.
    bucket string
    Name of the S3 bucket.
    prefix string
    Prefix for objects in the S3 bucket.
    version_id string
    Version ID of the S3 object. If not specified, the latest version is used.
    bucket String
    Name of the S3 bucket.
    prefix String
    Prefix for objects in the S3 bucket.
    versionId String
    Version ID of the S3 object. If not specified, the latest version is used.
    bucket string
    Name of the S3 bucket.
    prefix string
    Prefix for objects in the S3 bucket.
    versionId string
    Version ID of the S3 object. If not specified, the latest version is used.
    bucket str
    Name of the S3 bucket.
    prefix str
    Prefix for objects in the S3 bucket.
    version_id str
    Version ID of the S3 object. If not specified, the latest version is used.
    bucket String
    Name of the S3 bucket.
    prefix String
    Prefix for objects in the S3 bucket.
    versionId String
    Version ID of the S3 object. If not specified, the latest version is used.

    AgentcoreBrowserNetworkConfiguration, AgentcoreBrowserNetworkConfigurationArgs

    NetworkMode string
    Network mode for the browser. Valid values: PUBLIC, VPC.
    VpcConfig AgentcoreBrowserNetworkConfigurationVpcConfig
    VPC configuration when networkMode is VPC. See vpcConfig below.
    NetworkMode string
    Network mode for the browser. Valid values: PUBLIC, VPC.
    VpcConfig AgentcoreBrowserNetworkConfigurationVpcConfig
    VPC configuration when networkMode is VPC. See vpcConfig below.
    network_mode string
    Network mode for the browser. Valid values: PUBLIC, VPC.
    vpc_config object
    VPC configuration when networkMode is VPC. See vpcConfig below.
    networkMode String
    Network mode for the browser. Valid values: PUBLIC, VPC.
    vpcConfig AgentcoreBrowserNetworkConfigurationVpcConfig
    VPC configuration when networkMode is VPC. See vpcConfig below.
    networkMode string
    Network mode for the browser. Valid values: PUBLIC, VPC.
    vpcConfig AgentcoreBrowserNetworkConfigurationVpcConfig
    VPC configuration when networkMode is VPC. See vpcConfig below.
    network_mode str
    Network mode for the browser. Valid values: PUBLIC, VPC.
    vpc_config AgentcoreBrowserNetworkConfigurationVpcConfig
    VPC configuration when networkMode is VPC. See vpcConfig below.
    networkMode String
    Network mode for the browser. Valid values: PUBLIC, VPC.
    vpcConfig Property Map
    VPC configuration when networkMode is VPC. See vpcConfig below.

    AgentcoreBrowserNetworkConfigurationVpcConfig, AgentcoreBrowserNetworkConfigurationVpcConfigArgs

    SecurityGroups List<string>
    Set of security group IDs for the VPC configuration.
    Subnets List<string>
    Set of subnet IDs for the VPC configuration.
    SecurityGroups []string
    Set of security group IDs for the VPC configuration.
    Subnets []string
    Set of subnet IDs for the VPC configuration.
    security_groups list(string)
    Set of security group IDs for the VPC configuration.
    subnets list(string)
    Set of subnet IDs for the VPC configuration.
    securityGroups List<String>
    Set of security group IDs for the VPC configuration.
    subnets List<String>
    Set of subnet IDs for the VPC configuration.
    securityGroups string[]
    Set of security group IDs for the VPC configuration.
    subnets string[]
    Set of subnet IDs for the VPC configuration.
    security_groups Sequence[str]
    Set of security group IDs for the VPC configuration.
    subnets Sequence[str]
    Set of subnet IDs for the VPC configuration.
    securityGroups List<String>
    Set of security group IDs for the VPC configuration.
    subnets List<String>
    Set of subnet IDs for the VPC configuration.

    AgentcoreBrowserRecording, AgentcoreBrowserRecordingArgs

    Enabled bool
    Whether to enable recording for browser sessions. Defaults to false.
    S3Location AgentcoreBrowserRecordingS3Location
    S3 location where browser session recordings are stored. See s3Location below.
    Enabled bool
    Whether to enable recording for browser sessions. Defaults to false.
    S3Location AgentcoreBrowserRecordingS3Location
    S3 location where browser session recordings are stored. See s3Location below.
    enabled bool
    Whether to enable recording for browser sessions. Defaults to false.
    s3_location object
    S3 location where browser session recordings are stored. See s3Location below.
    enabled Boolean
    Whether to enable recording for browser sessions. Defaults to false.
    s3Location AgentcoreBrowserRecordingS3Location
    S3 location where browser session recordings are stored. See s3Location below.
    enabled boolean
    Whether to enable recording for browser sessions. Defaults to false.
    s3Location AgentcoreBrowserRecordingS3Location
    S3 location where browser session recordings are stored. See s3Location below.
    enabled bool
    Whether to enable recording for browser sessions. Defaults to false.
    s3_location AgentcoreBrowserRecordingS3Location
    S3 location where browser session recordings are stored. See s3Location below.
    enabled Boolean
    Whether to enable recording for browser sessions. Defaults to false.
    s3Location Property Map
    S3 location where browser session recordings are stored. See s3Location below.

    AgentcoreBrowserRecordingS3Location, AgentcoreBrowserRecordingS3LocationArgs

    Bucket string
    Name of the S3 bucket where recordings are stored.
    Prefix string
    S3 key prefix for recording files.
    Bucket string
    Name of the S3 bucket where recordings are stored.
    Prefix string
    S3 key prefix for recording files.
    bucket string
    Name of the S3 bucket where recordings are stored.
    prefix string
    S3 key prefix for recording files.
    bucket String
    Name of the S3 bucket where recordings are stored.
    prefix String
    S3 key prefix for recording files.
    bucket string
    Name of the S3 bucket where recordings are stored.
    prefix string
    S3 key prefix for recording files.
    bucket str
    Name of the S3 bucket where recordings are stored.
    prefix str
    S3 key prefix for recording files.
    bucket String
    Name of the S3 bucket where recordings are stored.
    prefix String
    S3 key prefix for recording files.

    AgentcoreBrowserTimeouts, AgentcoreBrowserTimeoutsArgs

    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

    Using pulumi import, import Bedrock AgentCore Browser using the browser ID. For example:

    $ pulumi import aws:bedrock/agentcoreBrowser:AgentcoreBrowser example BROWSER1234567890
    

    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