Terraform data source for managing an AWS SESv2 (Simple Email V2) Dedicated IP Pool.
data "aws_sesv2_dedicated_ip_pool" "example" {
pool_name = "my-pool"
}
The following arguments are required:
pool_name
- (Required) Name of the dedicated IP pool.This data source exports the following attributes in addition to the arguments above:
arn
- ARN of the Dedicated IP Pool.dedicated_ips
- A list of objects describing the pool's dedicated IP's. See dedicated_ips
.scaling_mode
- (Optional) IP pool scaling mode. Valid values: STANDARD
, MANAGED
.tags
- A map of tags attached to the pool.ip
- IPv4 address.warmup_percentage
- 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.warmup_status
- The warm-up status of a dedicated IP address. Valid values: IN_PROGRESS
, DONE
.