Module Values.ProfileSource

A profile.

Sourcetype nonrec t = {
  1. profileArn : ProfileArn.t option;
    (*

    The profile ARN.

    *)
  2. profileVersion : ProfileVersion.t option;
    (*

    The profile version.

    *)
  3. profileName : ProfileName.t option;
    (*

    The profile name.

    *)
  4. profileDescription : ProfileDescription.t option;
    (*

    The profile description.

    *)
  5. profileQuestions : ProfileQuestions.t option;
    (*

    Profile questions.

    *)
  6. owner : AwsAccountId.t option;
  7. createdAt : Timestamp.t option;
  8. updatedAt : Timestamp.t option;
  9. shareInvitationId : ShareInvitationId.t option;
    (*

    The ID assigned to the share invitation.

    *)
  10. tags : TagMap.t option;
    (*

    The tags assigned to the profile.

    *)
}
Sourceval make : ?profileArn:??? -> ?profileVersion:??? -> ?profileName:??? -> ?profileDescription:??? -> ?profileQuestions:??? -> ?owner:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?shareInvitationId:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of MinSelectedProfileChoices.t | `List of [> `String of ChoiceId.t | `Structure of (string * [> `String of ChoiceId.t ]) list ] list | `String of QuestionId.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ProfileArn.t | `Timestamp of Timestamp.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