Module Values.CreateRelayRequestSource

Creates a relay resource which can be used in rules to relay incoming emails to defined relay destinations.

Sourcetype nonrec t = {
  1. clientToken : IdempotencyToken.t option;
    (*

    A unique token that Amazon SES uses to recognize subsequent retries of the same request.

    *)
  2. relayName : RelayName.t;
    (*

    The unique name of the relay resource.

    *)
  3. serverName : RelayServerName.t;
    (*

    The destination relay server address.

    *)
  4. serverPort : RelayServerPort.t;
    (*

    The destination relay server port.

    *)
  5. authentication : RelayAuthentication.t;
    (*

    Authentication for the relay destination server—specify the secretARN where the SMTP credentials are stored.

    *)
  6. tags : TagList.t option;
    (*

    The tags used to organize, track, or control access for the resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?tags:??? -> relayName:RelayName.t -> serverName:RelayServerName.t -> serverPort:RelayServerPort.t -> authentication:RelayAuthentication.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of RelayServerPort.t | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of IdempotencyToken.t | `Structure of (string * [> `String of SecretArn.t | `Structure of 'a list ]) list ]) 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