Module Values.DedicatedIpSource

Contains information about a dedicated IP address that is associated with your Amazon Pinpoint account.

Sourcetype nonrec t = {
  1. ip : Ip.t option;
    (*

    An IP address that is reserved for use by your Amazon Pinpoint account.

    *)
  2. warmupStatus : WarmupStatus.t option;
    (*

    The warm-up status of a dedicated IP address. The status can have one of the following values: IN_PROGRESS – The IP address isn't ready to use because the dedicated IP warm-up process is ongoing. DONE – The dedicated IP warm-up process is complete, and the IP address is ready to use.

    *)
  3. warmupPercentage : Percentage100Wrapper.t option;
    (*

    Indicates how complete the dedicated IP warm-up process is. When this value equals 1, the address has completed the warm-up process and is ready for use.

    *)
  4. poolName : PoolName.t option;
    (*

    The name of the dedicated IP pool that the IP address is associated with.

    *)
}
Sourceval make : ?ip:??? -> ?warmupStatus:??? -> ?warmupPercentage:??? -> ?poolName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Percentage100Wrapper.t | `String of Ip.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