/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource Type definition for AWS::SES::VdmAttributes */ export interface AwsSesVdmattributes { /** * Unique identifier for this resource */ VdmAttributesResourceId?: string; DashboardAttributes?: DashboardAttributes; GuardianAttributes?: GuardianAttributes; } /** * Preferences regarding the Dashboard feature. */ export interface DashboardAttributes { /** * Whether emails sent from this account have engagement tracking enabled. */ EngagementMetrics?: string; } /** * Preferences regarding the Guardian feature. */ export interface GuardianAttributes { /** * Whether emails sent from this account have optimized delivery algorithm enabled. */ OptimizedSharedDelivery?: string; }