Resource: aws_sesv2_account_vdm_attributes

Terraform resource for managing an AWS SESv2 (Simple Email V2) Account VDM Attributes.

Example Usage

Basic Usage

resource "aws_sesv2_account_vdm_attributes" "example" {
  vdm_enabled = "ENABLED"

  dashboard_attributes {
    engagement_metrics = "ENABLED"
  }

  guardian_attributes {
    optimized_shared_delivery = "ENABLED"
  }
}

Argument Reference

The following arguments are required:

The following arguments are optional:

dashboard_attributes

guardian_attributes

Attribute Reference

This data source exports no additional attributes.

Import

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