Skip to main content

dedicated_ip_pools

Creates, updates, deletes or gets a dedicated_ip_pool resource or lists dedicated_ip_pools in a region

Overview

Namededicated_ip_pools
TypeResource
DescriptionResource Type definition for AWS::SES::DedicatedIpPool
Idaws.ses.dedicated_ip_pools

Fields

NameDatatypeDescription
pool_namestringThe name of the dedicated IP pool.
scaling_modestringSpecifies whether the dedicated IP pool is managed or not. The default value is STANDARD.
regionstringAWS region.

Methods

NameAccessible byRequired Params
create_resourceINSERTregion
delete_resourceDELETEdata__Identifier, region
update_resourceUPDATEdata__Identifier, data__PatchDocument, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all dedicated_ip_pools in a region.

SELECT
region,
pool_name,
scaling_mode
FROM aws.ses.dedicated_ip_pools
WHERE region = 'us-east-1';

Gets all properties from an individual dedicated_ip_pool.

SELECT
region,
pool_name,
scaling_mode
FROM aws.ses.dedicated_ip_pools
WHERE region = 'us-east-1' AND data__Identifier = '<PoolName>';

INSERT example

Use the following StackQL query and manifest file to create a new dedicated_ip_pool resource, using stack-deploy.

/*+ create */
INSERT INTO aws.ses.dedicated_ip_pools (
PoolName,
ScalingMode,
region
)
SELECT
'{{ PoolName }}',
'{{ ScalingMode }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM aws.ses.dedicated_ip_pools
WHERE data__Identifier = '<PoolName>'
AND region = 'us-east-1';

Permissions

To operate on the dedicated_ip_pools resource, the following permissions are required:

Create

ses:CreateDedicatedIpPool,
ses:GetDedicatedIpPool,
ses:GetDedicatedIps

Read

ses:GetDedicatedIpPool,
ses:GetDedicatedIps

Update

ses:PutDedicatedIpPoolScalingAttributes,
ses:GetDedicatedIpPool

Delete

ses:DeleteDedicatedIpPool

List

ses:ListDedicatedIpPools