Module Values.UpdateRelayRequestSource

Updates the attributes of an existing relay resource.

Sourcetype nonrec t = {
  1. relayId : RelayId.t;
    (*

    The unique relay identifier.

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

    The name of the relay resource.

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

    The destination relay server address.

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

    The destination relay server port.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?relayName:??? -> ?serverName:??? -> ?serverPort:??? -> ?authentication:??? -> relayId:RelayId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of RelayServerPort.t | `String of RelayId.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