Module Values.PutAccountDetailsRequestSource

A request to submit new account details.

Sourcetype nonrec t = {
  1. mailType : MailType.t;
    (*

    The type of email your account will send.

    *)
  2. websiteURL : WebsiteURL.t;
    (*

    The URL of your website. This information helps us better understand the type of content that you plan to send.

    *)
  3. contactLanguage : ContactLanguage.t option;
    (*

    The language you would prefer to be contacted with.

    *)
  4. useCaseDescription : UseCaseDescription.t option;
    (*

    A description of the types of email that you plan to send.

    *)
  5. additionalContactEmailAddresses : AdditionalContactEmailAddresses.t option;
    (*

    Additional email addresses that you would like to be notified regarding Amazon SES matters.

    *)
  6. productionAccessEnabled : EnabledWrapper.t option;
    (*

    Indicates whether or not your account should have production access in the current Amazon Web Services Region. If the value is false, then your account is in the sandbox. When your account is in the sandbox, you can only send email to verified identities. If the value is true, then your account has production access. When your account has production access, you can send email to any address. The sending quota and maximum sending rate for your account vary based on your specific use case.

    *)
}
Sourceval context_ : string
Sourceval make : ?contactLanguage:??? -> ?useCaseDescription:??? -> ?additionalContactEmailAddresses:??? -> ?productionAccessEnabled:??? -> mailType:MailType.t -> websiteURL:WebsiteURL.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of EnabledWrapper.t | `Enum of string | `List of [> `String of AdditionalContactEmailAddress.t ] list | `String of WebsiteURL.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t