Values.ProfileSummarySourceContains the details for a profile. A profile is the mechanism used to create the concept of a private network.
type nonrec t = {profileId : ProfileId.t option;Returns the unique, system-generated identifier for the profile.
*)name : ProfileName.t option;Returns the display name for profile.
*)businessName : BusinessName.t option;Returns the name for the business associated with this profile.
*)logging : Logging.t option;Specifies whether or not logging is enabled for this profile.
*)logGroupName : LogGroupName.t option;Returns the name of the logging group.
*)createdAt : CreatedDate.t option;Returns the timestamp for creation date and time of the profile.
*)modifiedAt : ModifiedDate.t option;Returns the timestamp that identifies the most recent date and time that the profile was modified.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of ProfileId.t
| `Timestamp of CreatedDate.t ])
list ]