Module Values.CreateProfileInputSource

Create a profile.

Sourcetype nonrec t = {
  1. profileName : ProfileName.t;
    (*

    Name of the profile.

    *)
  2. profileDescription : ProfileDescription.t;
    (*

    The profile description.

    *)
  3. profileQuestions : ProfileQuestionUpdates.t;
    (*

    The profile questions.

    *)
  4. clientRequestToken : ClientRequestToken.t;
  5. tags : TagMap.t option;
    (*

    The tags assigned to the profile.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> profileName:ProfileName.t -> profileDescription:ProfileDescription.t -> profileQuestions:ProfileQuestionUpdates.t -> clientRequestToken:ClientRequestToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of ChoiceId.t ] list | `String of QuestionId.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ProfileName.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