Terraform resource for managing an AWS SESv2 (Simple Email V2) Account VDM Attributes.
resource "aws_sesv2_account_vdm_attributes" "example" {
vdm_enabled = "ENABLED"
dashboard_attributes {
engagement_metrics = "ENABLED"
}
guardian_attributes {
optimized_shared_delivery = "ENABLED"
}
}
The following arguments are required:
vdm_enabled
- (Required) Specifies the status of your VDM configuration. Valid values: ENABLED
, DISABLED
.The following arguments are optional:
dashboard_attributes
- (Optional) Specifies additional settings for your VDM configuration as applicable to the Dashboard.guardian_attributes
- (Optional) Specifies additional settings for your VDM configuration as applicable to the Guardian.engagement_metrics
- (Optional) Specifies the status of your VDM engagement metrics collection. Valid values: ENABLED
, DISABLED
.optimized_shared_delivery
- (Optional) Specifies the status of your VDM optimized shared delivery. Valid values: ENABLED
, DISABLED
.This data source exports no additional attributes.
In Terraform v1.5.0 and later, use an import
block to import SESv2 (Simple Email V2) Account VDM Attributes using the word ses-account-vdm-attributes
. For example:
import {
to = aws_sesv2_account_vdm_attributes.example
id = "ses-account-vdm-attributes"
}
Using terraform import
, import SESv2 (Simple Email V2) Account VDM Attributes using the word ses-account-vdm-attributes
. For example:
% terraform import aws_sesv2_account_vdm_attributes.example ses-account-vdm-attributes