Module Values.UpdateProfileRequestSource

Updates some of the parameters for an existing profile. Provide the ProfileId for the profile that you want to update, along with the new values for the parameters to update.

Sourcetype nonrec t = {
  1. profileId : ProfileId.t;
    (*

    The identifier of the profile object that you are updating.

    *)
  2. certificateIds : CertificateIds.t option;
    (*

    An array of identifiers for the imported certificates. You use this identifier for working with profiles and partner profiles.

    *)
}
Sourceval context_ : string
Sourceval make : ?certificateIds:??? -> profileId:ProfileId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of CertificateId.t ] list | `String of ProfileId.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