Skip to content

Data Source: awsSesv2DedicatedIpPool

Terraform data source for managing an AWS SESv2 (Simple Email V2) Dedicated IP Pool.

Example Usage

Basic Usage

/*Provider bindings are generated by running cdktf get.
See https://cdk.tf/provider-generation for more details.*/
import * as aws from "./.gen/providers/aws";
new aws.dataAwsSesv2DedicatedIpPool.DataAwsSesv2DedicatedIpPool(
  this,
  "example",
  {
    poolName: "my-pool",
  }
);

Argument Reference

The following arguments are required:

  • poolName - (Required) Name of the dedicated IP pool.

Attributes Reference

In addition to all arguments above, the following attributes are exported:

  • arn - ARN of the Dedicated IP Pool.
  • dedicatedIps - A list of objects describing the pool's dedicated IP's. See dedicatedIps.
  • scalingMode - (Optional) IP pool scaling mode. Valid values: standard, managed.
  • tags - A map of tags attached to the pool.

dedicatedIps

  • ip - IPv4 address.
  • warmupPercentage - Indicates how complete the dedicated IP warm-up process is. When this value equals 1, the address has completed the warm-up process and is ready for use.
  • warmupStatus - The warm-up status of a dedicated IP address. Valid values: IN_PROGRESS, done.