Skip to main content

vdm_attributes

Creates, updates, deletes or gets a vdm_attribute resource or lists vdm_attributes in a region

Overview

Namevdm_attributes
TypeResource
DescriptionResource Type definition for AWS::SES::VdmAttributes
Idaws.ses.vdm_attributes

Fields

NameDatatypeDescription
vdm_attributes_resource_idstringUnique identifier for this resource
dashboard_attributesobjectPreferences regarding the Dashboard feature.
guardian_attributesobjectPreferences regarding the Guardian feature.
regionstringAWS region.

Methods

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

SELECT examples

Gets all properties from an individual vdm_attribute.

SELECT
region,
vdm_attributes_resource_id,
dashboard_attributes,
guardian_attributes
FROM aws.ses.vdm_attributes
WHERE region = 'us-east-1' AND data__Identifier = '<VdmAttributesResourceId>';

INSERT example

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

/*+ create */
INSERT INTO aws.ses.vdm_attributes (
DashboardAttributes,
GuardianAttributes,
region
)
SELECT
'{{ DashboardAttributes }}',
'{{ GuardianAttributes }}',
'{{ region }}';

DELETE example

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

Permissions

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

Create

ses:PutAccountVdmAttributes,
ses:GetAccount

Read

ses:GetAccount

Update

ses:PutAccountVdmAttributes,
ses:GetAccount

Delete

ses:PutAccountVdmAttributes,
ses:GetAccount