pub struct SesDomainIdentity {
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub domain: Option<String>,
pub region: Option<String>,
pub organization: Option<Organization>,
pub creator: Option<User>,
pub can_send_from_custom_domain: Option<bool>,
pub dns_records: Option<Vec<SesDomainIdentityDnsRecord>>,
}Expand description
A verified Amazon SES domain identity that enables sending emails from a custom domain. Organizations configure SES domain identities to send issue notification replies and Asks auto-replies from their own domain instead of the default Linear domain. Full verification requires DKIM signing, a custom MAIL FROM domain, and organization ownership confirmation. Multiple organizations sharing the same domain each have their own SesDomainIdentity record but share the underlying SES identity.
Fields§
§id: Option<String>The unique identifier of the entity.
created_at: Option<DateTime<Utc>>The time at which the entity was created.
updated_at: Option<DateTime<Utc>>The last time at which the entity was meaningfully updated. This is the same as the creation time if the entity hasn’t been updated after creation.
archived_at: Option<DateTime<Utc>>The time at which the entity was archived. Null if the entity has not been archived.
domain: Option<String>The domain of the SES domain identity.
region: Option<String>The AWS region of the SES domain identity.
organization: Option<Organization>The workspace of the SES domain identity.
creator: Option<User>The user who created the SES domain identity.
can_send_from_custom_domain: Option<bool>Whether the domain is fully verified and can be used for sending emails.
dns_records: Option<Vec<SesDomainIdentityDnsRecord>>The DNS records for the SES domain identity.
Trait Implementations§
Source§impl Clone for SesDomainIdentity
impl Clone for SesDomainIdentity
Source§fn clone(&self) -> SesDomainIdentity
fn clone(&self) -> SesDomainIdentity
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more