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
Idawscc.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.
tagsarrayThe tags (keys and values) associated with the dedicated IP pool.
regionstringAWS region.

For more information, see AWS::SES::DedicatedIpPool.

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 properties from an individual dedicated_ip_pool.

SELECT
region,
pool_name,
scaling_mode,
tags
FROM awscc.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 awscc.ses.dedicated_ip_pools (
PoolName,
ScalingMode,
Tags,
region
)
SELECT
'{{ PoolName }}',
'{{ ScalingMode }}',
'{{ Tags }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM awscc.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,
ses:TagResource,
ses:UntagResource

Read

ses:GetDedicatedIpPool,
ses:GetDedicatedIps,
ses:ListTagsForResource

Update

ses:PutDedicatedIpPoolScalingAttributes,
ses:GetDedicatedIpPool,
ses:TagResource,
ses:UntagResource,
ses:ListTagsForResource

Delete

ses:DeleteDedicatedIpPool

List

ses:ListDedicatedIpPools