1. Registry
  2. Packages
  3. AWS
  4. API Docs
  5. sesv2
  6. MultiRegionEndpoint
Viewing docs for AWS v7.46.0
published on Thursday, Sep 10, 2026 by Pulumi
aws logo aws logo
Viewing docs for AWS v7.46.0
published on Thursday, Sep 10, 2026 by Pulumi

    Manages an AWS SESv2 (Simple Email V2) Multi Region Endpoint (global endpoint). Traffic is split equally between the primary region (where the resource is created) and the secondary region specified in the details block.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.sesv2.MultiRegionEndpoint("example", {
        details: {
            routesDetails: {
                region: "example-alternate-region",
            },
        },
        endpointName: "example",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.sesv2.MultiRegionEndpoint("example",
        details={
            "routes_details": {
                "region": "example-alternate-region",
            },
        },
        endpoint_name="example")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/sesv2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := sesv2.NewMultiRegionEndpoint(ctx, "example", &sesv2.MultiRegionEndpointArgs{
    			Details: &sesv2.MultiRegionEndpointDetailsArgs{
    				RoutesDetails: &sesv2.MultiRegionEndpointDetailsRoutesDetailsArgs{
    					Region: pulumi.String("example-alternate-region"),
    				},
    			},
    			EndpointName: 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.SesV2.MultiRegionEndpoint("example", new()
        {
            Details = new Aws.SesV2.Inputs.MultiRegionEndpointDetailsArgs
            {
                RoutesDetails = new Aws.SesV2.Inputs.MultiRegionEndpointDetailsRoutesDetailsArgs
                {
                    Region = "example-alternate-region",
                },
            },
            EndpointName = "example",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.sesv2.MultiRegionEndpoint;
    import com.pulumi.aws.sesv2.MultiRegionEndpointArgs;
    import com.pulumi.aws.sesv2.inputs.MultiRegionEndpointDetailsArgs;
    import com.pulumi.aws.sesv2.inputs.MultiRegionEndpointDetailsRoutesDetailsArgs;
    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 MultiRegionEndpoint("example", MultiRegionEndpointArgs.builder()
                .details(MultiRegionEndpointDetailsArgs.builder()
                    .routesDetails(MultiRegionEndpointDetailsRoutesDetailsArgs.builder()
                        .region("example-alternate-region")
                        .build())
                    .build())
                .endpointName("example")
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:sesv2:MultiRegionEndpoint
        properties:
          details:
            routesDetails:
              region: example-alternate-region
          endpointName: example
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    resource "aws_sesv2_multiregionendpoint" "example" {
      details = {
        routes_details = {
          region = "example-alternate-region"
        }
      }
      endpoint_name = "example"
    }
    

    Create MultiRegionEndpoint Resource

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

    Constructor syntax

    new MultiRegionEndpoint(name: string, args: MultiRegionEndpointArgs, opts?: CustomResourceOptions);
    @overload
    def MultiRegionEndpoint(resource_name: str,
                            args: MultiRegionEndpointArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def MultiRegionEndpoint(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            endpoint_name: Optional[str] = None,
                            details: Optional[MultiRegionEndpointDetailsArgs] = None,
                            region: Optional[str] = None,
                            tags: Optional[Mapping[str, str]] = None,
                            timeouts: Optional[MultiRegionEndpointTimeoutsArgs] = None)
    func NewMultiRegionEndpoint(ctx *Context, name string, args MultiRegionEndpointArgs, opts ...ResourceOption) (*MultiRegionEndpoint, error)
    public MultiRegionEndpoint(string name, MultiRegionEndpointArgs args, CustomResourceOptions? opts = null)
    public MultiRegionEndpoint(String name, MultiRegionEndpointArgs args)
    public MultiRegionEndpoint(String name, MultiRegionEndpointArgs args, CustomResourceOptions options)
    
    type: aws:sesv2:MultiRegionEndpoint
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "aws_sesv2_multi_region_endpoint" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args MultiRegionEndpointArgs
    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 MultiRegionEndpointArgs
    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 MultiRegionEndpointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MultiRegionEndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MultiRegionEndpointArgs
    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 multiRegionEndpointResource = new Aws.SesV2.MultiRegionEndpoint("multiRegionEndpointResource", new()
    {
        EndpointName = "string",
        Details = new Aws.SesV2.Inputs.MultiRegionEndpointDetailsArgs
        {
            RoutesDetails = new Aws.SesV2.Inputs.MultiRegionEndpointDetailsRoutesDetailsArgs
            {
                Region = "string",
            },
        },
        Region = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.SesV2.Inputs.MultiRegionEndpointTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
        },
    });
    
    example, err := sesv2.NewMultiRegionEndpoint(ctx, "multiRegionEndpointResource", &sesv2.MultiRegionEndpointArgs{
    	EndpointName: pulumi.String("string"),
    	Details: &sesv2.MultiRegionEndpointDetailsArgs{
    		RoutesDetails: &sesv2.MultiRegionEndpointDetailsRoutesDetailsArgs{
    			Region: pulumi.String("string"),
    		},
    	},
    	Region: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &sesv2.MultiRegionEndpointTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    	},
    })
    
    resource "aws_sesv2_multi_region_endpoint" "multiRegionEndpointResource" {
      lifecycle {
        create_before_destroy = true
      }
      endpoint_name = "string"
      details = {
        routes_details = {
          region = "string"
        }
      }
      region = "string"
      tags = {
        "string" = "string"
      }
      timeouts = {
        create = "string"
        delete = "string"
      }
    }
    
    var multiRegionEndpointResource = new MultiRegionEndpoint("multiRegionEndpointResource", MultiRegionEndpointArgs.builder()
        .endpointName("string")
        .details(MultiRegionEndpointDetailsArgs.builder()
            .routesDetails(MultiRegionEndpointDetailsRoutesDetailsArgs.builder()
                .region("string")
                .build())
            .build())
        .region("string")
        .tags(Map.of("string", "string"))
        .timeouts(MultiRegionEndpointTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .build())
        .build());
    
    multi_region_endpoint_resource = aws.sesv2.MultiRegionEndpoint("multiRegionEndpointResource",
        endpoint_name="string",
        details={
            "routes_details": {
                "region": "string",
            },
        },
        region="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
        })
    
    const multiRegionEndpointResource = new aws.sesv2.MultiRegionEndpoint("multiRegionEndpointResource", {
        endpointName: "string",
        details: {
            routesDetails: {
                region: "string",
            },
        },
        region: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
        },
    });
    
    type: aws:sesv2:MultiRegionEndpoint
    properties:
        details:
            routesDetails:
                region: string
        endpointName: string
        region: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
    

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

    EndpointName string

    Name of the multi-region endpoint.

    The following arguments are optional:

    Details MultiRegionEndpointDetails
    Configuration details for the endpoint. See details Block below.
    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 MultiRegionEndpointTimeouts
    EndpointName string

    Name of the multi-region endpoint.

    The following arguments are optional:

    Details MultiRegionEndpointDetailsArgs
    Configuration details for the endpoint. See details Block below.
    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 MultiRegionEndpointTimeoutsArgs
    endpoint_name string

    Name of the multi-region endpoint.

    The following arguments are optional:

    details object
    Configuration details for the endpoint. See details Block below.
    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
    endpointName String

    Name of the multi-region endpoint.

    The following arguments are optional:

    details MultiRegionEndpointDetails
    Configuration details for the endpoint. See details Block below.
    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 MultiRegionEndpointTimeouts
    endpointName string

    Name of the multi-region endpoint.

    The following arguments are optional:

    details MultiRegionEndpointDetails
    Configuration details for the endpoint. See details Block below.
    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 MultiRegionEndpointTimeouts
    endpoint_name str

    Name of the multi-region endpoint.

    The following arguments are optional:

    details MultiRegionEndpointDetailsArgs
    Configuration details for the endpoint. See details Block below.
    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 MultiRegionEndpointTimeoutsArgs
    endpointName String

    Name of the multi-region endpoint.

    The following arguments are optional:

    details Property Map
    Configuration details for the endpoint. See details Block below.
    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 MultiRegionEndpoint resource produces the following output properties:

    Arn string
    ARN of the multi-region endpoint.
    EndpointId string
    ID assigned to the multi-region endpoint.
    Id string
    The provider-assigned unique ID for this managed resource.
    Routes List<MultiRegionEndpointRoute>
    List of active routes. See routes Block below.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    Arn string
    ARN of the multi-region endpoint.
    EndpointId string
    ID assigned to the multi-region endpoint.
    Id string
    The provider-assigned unique ID for this managed resource.
    Routes []MultiRegionEndpointRoute
    List of active routes. See routes Block below.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    arn string
    ARN of the multi-region endpoint.
    endpoint_id string
    ID assigned to the multi-region endpoint.
    id string
    The provider-assigned unique ID for this managed resource.
    routes list(object)
    List of active routes. See routes Block below.
    tags_all map(string)
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    arn String
    ARN of the multi-region endpoint.
    endpointId String
    ID assigned to the multi-region endpoint.
    id String
    The provider-assigned unique ID for this managed resource.
    routes List<MultiRegionEndpointRoute>
    List of active routes. See routes Block below.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    arn string
    ARN of the multi-region endpoint.
    endpointId string
    ID assigned to the multi-region endpoint.
    id string
    The provider-assigned unique ID for this managed resource.
    routes MultiRegionEndpointRoute[]
    List of active routes. See routes Block below.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    arn str
    ARN of the multi-region endpoint.
    endpoint_id str
    ID assigned to the multi-region endpoint.
    id str
    The provider-assigned unique ID for this managed resource.
    routes Sequence[MultiRegionEndpointRoute]
    List of active routes. See routes Block below.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    arn String
    ARN of the multi-region endpoint.
    endpointId String
    ID assigned to the multi-region endpoint.
    id String
    The provider-assigned unique ID for this managed resource.
    routes List<Property Map>
    List of active routes. See routes Block below.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.

    Look up Existing MultiRegionEndpoint Resource

    Get an existing MultiRegionEndpoint 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?: MultiRegionEndpointState, opts?: CustomResourceOptions): MultiRegionEndpoint
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            details: Optional[MultiRegionEndpointDetailsArgs] = None,
            endpoint_id: Optional[str] = None,
            endpoint_name: Optional[str] = None,
            region: Optional[str] = None,
            routes: Optional[Sequence[MultiRegionEndpointRouteArgs]] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[MultiRegionEndpointTimeoutsArgs] = None) -> MultiRegionEndpoint
    func GetMultiRegionEndpoint(ctx *Context, name string, id IDInput, state *MultiRegionEndpointState, opts ...ResourceOption) (*MultiRegionEndpoint, error)
    public static MultiRegionEndpoint Get(string name, Input<string> id, MultiRegionEndpointState? state, CustomResourceOptions? opts = null)
    public static MultiRegionEndpoint get(String name, Output<String> id, MultiRegionEndpointState state, CustomResourceOptions options)
    resources:  _:    type: aws:sesv2:MultiRegionEndpoint    get:      id: ${id}
    import {
      to = aws_sesv2_multi_region_endpoint.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:
    Arn string
    ARN of the multi-region endpoint.
    Details MultiRegionEndpointDetails
    Configuration details for the endpoint. See details Block below.
    EndpointId string
    ID assigned to the multi-region endpoint.
    EndpointName string

    Name of the multi-region endpoint.

    The following arguments are optional:

    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Routes List<MultiRegionEndpointRoute>
    List of active routes. See routes Block below.
    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 MultiRegionEndpointTimeouts
    Arn string
    ARN of the multi-region endpoint.
    Details MultiRegionEndpointDetailsArgs
    Configuration details for the endpoint. See details Block below.
    EndpointId string
    ID assigned to the multi-region endpoint.
    EndpointName string

    Name of the multi-region endpoint.

    The following arguments are optional:

    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Routes []MultiRegionEndpointRouteArgs
    List of active routes. See routes Block below.
    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 MultiRegionEndpointTimeoutsArgs
    arn string
    ARN of the multi-region endpoint.
    details object
    Configuration details for the endpoint. See details Block below.
    endpoint_id string
    ID assigned to the multi-region endpoint.
    endpoint_name string

    Name of the multi-region endpoint.

    The following arguments are optional:

    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    routes list(object)
    List of active routes. See routes Block below.
    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
    arn String
    ARN of the multi-region endpoint.
    details MultiRegionEndpointDetails
    Configuration details for the endpoint. See details Block below.
    endpointId String
    ID assigned to the multi-region endpoint.
    endpointName String

    Name of the multi-region endpoint.

    The following arguments are optional:

    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    routes List<MultiRegionEndpointRoute>
    List of active routes. See routes Block below.
    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 MultiRegionEndpointTimeouts
    arn string
    ARN of the multi-region endpoint.
    details MultiRegionEndpointDetails
    Configuration details for the endpoint. See details Block below.
    endpointId string
    ID assigned to the multi-region endpoint.
    endpointName string

    Name of the multi-region endpoint.

    The following arguments are optional:

    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    routes MultiRegionEndpointRoute[]
    List of active routes. See routes Block below.
    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 MultiRegionEndpointTimeouts
    arn str
    ARN of the multi-region endpoint.
    details MultiRegionEndpointDetailsArgs
    Configuration details for the endpoint. See details Block below.
    endpoint_id str
    ID assigned to the multi-region endpoint.
    endpoint_name str

    Name of the multi-region endpoint.

    The following arguments are optional:

    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    routes Sequence[MultiRegionEndpointRouteArgs]
    List of active routes. See routes Block below.
    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 MultiRegionEndpointTimeoutsArgs
    arn String
    ARN of the multi-region endpoint.
    details Property Map
    Configuration details for the endpoint. See details Block below.
    endpointId String
    ID assigned to the multi-region endpoint.
    endpointName String

    Name of the multi-region endpoint.

    The following arguments are optional:

    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    routes List<Property Map>
    List of active routes. See routes Block below.
    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

    MultiRegionEndpointDetails, MultiRegionEndpointDetailsArgs

    RoutesDetails MultiRegionEndpointDetailsRoutesDetails
    Secondary region route configuration. See routesDetails Block below.
    RoutesDetails MultiRegionEndpointDetailsRoutesDetails
    Secondary region route configuration. See routesDetails Block below.
    routes_details object
    Secondary region route configuration. See routesDetails Block below.
    routesDetails MultiRegionEndpointDetailsRoutesDetails
    Secondary region route configuration. See routesDetails Block below.
    routesDetails MultiRegionEndpointDetailsRoutesDetails
    Secondary region route configuration. See routesDetails Block below.
    routes_details MultiRegionEndpointDetailsRoutesDetails
    Secondary region route configuration. See routesDetails Block below.
    routesDetails Property Map
    Secondary region route configuration. See routesDetails Block below.

    MultiRegionEndpointDetailsRoutesDetails, MultiRegionEndpointDetailsRoutesDetailsArgs

    Region string
    Name of the secondary AWS region.
    Region string
    Name of the secondary AWS region.
    region string
    Name of the secondary AWS region.
    region String
    Name of the secondary AWS region.
    region string
    Name of the secondary AWS region.
    region str
    Name of the secondary AWS region.
    region String
    Name of the secondary AWS region.

    MultiRegionEndpointRoute, MultiRegionEndpointRouteArgs

    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.

    MultiRegionEndpointTimeouts, MultiRegionEndpointTimeoutsArgs

    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.

    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.46.0
    published on Thursday, Sep 10, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial