Module Values.CreateProfileResponseSource

Creates 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.

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

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

    *)
  2. profileArn : ResourceArn.t option;
    (*

    Returns an Amazon Resource Name (ARN) for the profile.

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

    Returns the name of the profile, used to identify it.

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

    Returns the name for the business associated with this profile.

    *)
  5. phone : Phone.t option;
    (*

    Returns the phone number associated with the profile.

    *)
  6. email : Email.t option;
    (*

    Returns the email address associated with this customer profile.

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

    Returns whether or not logging is turned on for this profile.

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

    Returns the name of the logging group.

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

    Returns a timestamp representing the time the profile was created.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  6. | `ThrottlingException of ThrottlingException.t
  7. | `ValidationException of ValidationException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?profileId:??? -> ?profileArn:??? -> ?name:??? -> ?businessName:??? -> ?phone:??? -> ?email:??? -> ?logging:??? -> ?logGroupName:??? -> ?createdAt:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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