Struct aws_sdk_sesv2::types::VdmAttributes
source · #[non_exhaustive]pub struct VdmAttributes {
pub vdm_enabled: FeatureStatus,
pub dashboard_attributes: Option<DashboardAttributes>,
pub guardian_attributes: Option<GuardianAttributes>,
}Expand description
The VDM attributes that apply to your Amazon SES account.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.vdm_enabled: FeatureStatusSpecifies the status of your VDM configuration. Can be one of the following:
-
ENABLED– Amazon SES enables VDM for your account. -
DISABLED– Amazon SES disables VDM for your account.
dashboard_attributes: Option<DashboardAttributes>Specifies additional settings for your VDM configuration as applicable to the Dashboard.
guardian_attributes: Option<GuardianAttributes>Specifies additional settings for your VDM configuration as applicable to the Guardian.
Implementations§
source§impl VdmAttributes
impl VdmAttributes
sourcepub fn vdm_enabled(&self) -> &FeatureStatus
pub fn vdm_enabled(&self) -> &FeatureStatus
Specifies the status of your VDM configuration. Can be one of the following:
-
ENABLED– Amazon SES enables VDM for your account. -
DISABLED– Amazon SES disables VDM for your account.
sourcepub fn dashboard_attributes(&self) -> Option<&DashboardAttributes>
pub fn dashboard_attributes(&self) -> Option<&DashboardAttributes>
Specifies additional settings for your VDM configuration as applicable to the Dashboard.
sourcepub fn guardian_attributes(&self) -> Option<&GuardianAttributes>
pub fn guardian_attributes(&self) -> Option<&GuardianAttributes>
Specifies additional settings for your VDM configuration as applicable to the Guardian.
source§impl VdmAttributes
impl VdmAttributes
sourcepub fn builder() -> VdmAttributesBuilder
pub fn builder() -> VdmAttributesBuilder
Creates a new builder-style object to manufacture VdmAttributes.
Trait Implementations§
source§impl Clone for VdmAttributes
impl Clone for VdmAttributes
source§fn clone(&self) -> VdmAttributes
fn clone(&self) -> VdmAttributes
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for VdmAttributes
impl Debug for VdmAttributes
source§impl PartialEq for VdmAttributes
impl PartialEq for VdmAttributes
source§fn eq(&self, other: &VdmAttributes) -> bool
fn eq(&self, other: &VdmAttributes) -> bool
self and other values to be equal, and is used
by ==.