published on Thursday, Sep 10, 2026 by Pulumi
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:
- Endpoint
Name string Name of the multi-region endpoint.
The following arguments are optional:
- Details
Multi
Region Endpoint Details - Configuration details for the endpoint. See
detailsBlock below. - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Dictionary<string, string>
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Multi
Region Endpoint Timeouts
- Endpoint
Name string Name of the multi-region endpoint.
The following arguments are optional:
- Details
Multi
Region Endpoint Details Args - Configuration details for the endpoint. See
detailsBlock below. - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map[string]string
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Multi
Region Endpoint Timeouts Args
- endpoint_
name string Name of the multi-region endpoint.
The following arguments are optional:
- details object
- Configuration details for the endpoint. See
detailsBlock below. - region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map(string)
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts object
- endpoint
Name String Name of the multi-region endpoint.
The following arguments are optional:
- details
Multi
Region Endpoint Details - Configuration details for the endpoint. See
detailsBlock below. - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String,String>
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Multi
Region Endpoint Timeouts
- endpoint
Name string Name of the multi-region endpoint.
The following arguments are optional:
- details
Multi
Region Endpoint Details - Configuration details for the endpoint. See
detailsBlock below. - region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- {[key: string]: string}
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Multi
Region Endpoint Timeouts
- endpoint_
name str Name of the multi-region endpoint.
The following arguments are optional:
- details
Multi
Region Endpoint Details Args - Configuration details for the endpoint. See
detailsBlock below. - region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Mapping[str, str]
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Multi
Region Endpoint Timeouts Args
- endpoint
Name String Name of the multi-region endpoint.
The following arguments are optional:
- details Property Map
- Configuration details for the endpoint. See
detailsBlock below. - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String>
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration 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.
- Endpoint
Id string - ID assigned to the multi-region endpoint.
- Id string
- The provider-assigned unique ID for this managed resource.
- Routes
List<Multi
Region Endpoint Route> - List of active routes. See
routesBlock below. - Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration 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
[]Multi
Region Endpoint Route - List of active routes. See
routesBlock below. - map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration 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
routesBlock below. - map(string)
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration 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<Multi
Region Endpoint Route> - List of active routes. See
routesBlock below. - Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration 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
Multi
Region Endpoint Route[] - List of active routes. See
routesBlock below. - {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration 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[Multi
Region Endpoint Route] - List of active routes. See
routesBlock below. - Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration 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<Property Map>
- List of active routes. See
routesBlock below. - Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration 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) -> MultiRegionEndpointfunc 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.
- Arn string
- ARN of the multi-region endpoint.
- Details
Multi
Region Endpoint Details - Configuration details for the endpoint. See
detailsBlock 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<Multi
Region Endpoint Route> - List of active routes. See
routesBlock below. - Dictionary<string, string>
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - Timeouts
Multi
Region Endpoint Timeouts
- Arn string
- ARN of the multi-region endpoint.
- Details
Multi
Region Endpoint Details Args - Configuration details for the endpoint. See
detailsBlock 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
[]Multi
Region Endpoint Route Args - List of active routes. See
routesBlock below. - map[string]string
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - Timeouts
Multi
Region Endpoint Timeouts Args
- arn string
- ARN of the multi-region endpoint.
- details object
- Configuration details for the endpoint. See
detailsBlock 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
routesBlock below. - map(string)
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - map(string)
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts object
- arn String
- ARN of the multi-region endpoint.
- details
Multi
Region Endpoint Details - Configuration details for the endpoint. See
detailsBlock 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<Multi
Region Endpoint Route> - List of active routes. See
routesBlock below. - Map<String,String>
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts
Multi
Region Endpoint Timeouts
- arn string
- ARN of the multi-region endpoint.
- details
Multi
Region Endpoint Details - Configuration details for the endpoint. See
detailsBlock 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
Multi
Region Endpoint Route[] - List of active routes. See
routesBlock below. - {[key: string]: string}
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts
Multi
Region Endpoint Timeouts
- arn str
- ARN of the multi-region endpoint.
- details
Multi
Region Endpoint Details Args - Configuration details for the endpoint. See
detailsBlock 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[Multi
Region Endpoint Route Args] - List of active routes. See
routesBlock below. - Mapping[str, str]
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts
Multi
Region Endpoint Timeouts Args
- arn String
- ARN of the multi-region endpoint.
- details Property Map
- Configuration details for the endpoint. See
detailsBlock 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<Property Map>
- List of active routes. See
routesBlock below. - Map<String>
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts Property Map
Supporting Types
MultiRegionEndpointDetails, MultiRegionEndpointDetailsArgs
- Routes
Details MultiRegion Endpoint Details Routes Details - Secondary region route configuration. See
routesDetailsBlock below.
- Routes
Details MultiRegion Endpoint Details Routes Details - Secondary region route configuration. See
routesDetailsBlock below.
- routes_
details object - Secondary region route configuration. See
routesDetailsBlock below.
- routes
Details MultiRegion Endpoint Details Routes Details - Secondary region route configuration. See
routesDetailsBlock below.
- routes
Details MultiRegion Endpoint Details Routes Details - Secondary region route configuration. See
routesDetailsBlock below.
- routes_
details MultiRegion Endpoint Details Routes Details - Secondary region route configuration. See
routesDetailsBlock below.
- routes
Details Property Map - Secondary region route configuration. See
routesDetailsBlock 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
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
awsTerraform Provider.
published on Thursday, Sep 10, 2026 by Pulumi