Values.CreateProfileRequestSourceCreates a customer profile. You can have up to five customer profiles, each representing a distinct private network. A profile is the mechanism used to create the concept of a private network.
type nonrec t = {name : ProfileName.t;Specifies the name of the profile.
*)email : Email.t option;Specifies the email address associated with this customer profile.
*)phone : Phone.t;Specifies the phone number associated with the profile.
*)businessName : BusinessName.t;Specifies the name for the business associated with this profile.
*)logging : Logging.t;Specifies whether or not logging is enabled for this profile.
*)clientToken : String_.t option;Reserved for future use.
*)}val make :
?email:??? ->
?clientToken:??? ->
?tags:??? ->
name:ProfileName.t ->
phone:Phone.t ->
businessName:BusinessName.t ->
logging:Logging.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of
[> `Structure of (string * [> `String of TagKey.t ]) list ] list
| `String of ProfileName.t ])
list ]