Module Values.ProfileSummarySource

Contains the details for a profile. A profile is the mechanism used to create the concept of a private network.

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

    Returns the unique, system-generated identifier for the profile.

    *)
  2. name : ProfileName.t option;
    (*

    Returns the display name for profile.

    *)
  3. businessName : BusinessName.t option;
    (*

    Returns the name for the business associated with this profile.

    *)
  4. logging : Logging.t option;
    (*

    Specifies whether or not logging is enabled for this profile.

    *)
  5. logGroupName : LogGroupName.t option;
    (*

    Returns the name of the logging group.

    *)
  6. createdAt : CreatedDate.t option;
    (*

    Returns the timestamp for creation date and time of the profile.

    *)
  7. modifiedAt : ModifiedDate.t option;
    (*

    Returns the timestamp that identifies the most recent date and time that the profile was modified.

    *)
}
Sourceval make : ?profileId:??? -> ?name:??? -> ?businessName:??? -> ?logging:??? -> ?logGroupName:??? -> ?createdAt:??? -> ?modifiedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ProfileId.t | `Timestamp of CreatedDate.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