Dedicated Ip Assignment
Resource for managing an AWS SESv2 (Simple Email V2) Dedicated IP Assignment. This resource is used with "Standard" dedicated IP addresses. This includes addresses requested and relinquished manually via an AWS support case, or Bring Your Own IP addresses. Once no longer assigned, this resource returns the IP to the ses-default-dedicated-pool
, managed by AWS.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.sesv2.DedicatedIpAssignment("example", {
ip: "0.0.0.0",
destinationPoolName: "my-pool",
});
Content copied to clipboard
import pulumi
import pulumi_aws as aws
example = aws.sesv2.DedicatedIpAssignment("example",
ip="0.0.0.0",
destination_pool_name="my-pool")
Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.SesV2.DedicatedIpAssignment("example", new()
{
Ip = "0.0.0.0",
DestinationPoolName = "my-pool",
});
});
Content copied to clipboard
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/sesv2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sesv2.NewDedicatedIpAssignment(ctx, "example", &sesv2.DedicatedIpAssignmentArgs{
Ip: pulumi.String("0.0.0.0"),
DestinationPoolName: pulumi.String("my-pool"),
})
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.sesv2.DedicatedIpAssignment;
import com.pulumi.aws.sesv2.DedicatedIpAssignmentArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new DedicatedIpAssignment("example", DedicatedIpAssignmentArgs.builder()
.ip("0.0.0.0")
.destinationPoolName("my-pool")
.build());
}
}
Content copied to clipboard
resources:
example:
type: aws:sesv2:DedicatedIpAssignment
properties:
ip: 0.0.0.0
destinationPoolName: my-pool
Content copied to clipboard
Import
Using pulumi import
, import SESv2 (Simple Email V2) Dedicated IP Assignment using the id
, which is a comma-separated string made up of ip
and destination_pool_name
. For example:
$ pulumi import aws:sesv2/dedicatedIpAssignment:DedicatedIpAssignment example "0.0.0.0,my-pool"
Content copied to clipboard