Module Values.CreatePartnerResponseSource

Creates a new partner account in the AWS Partner Network with the specified details and configuration.

Sourcetype nonrec t = {
  1. catalog : Catalog.t option;
    (*

    The catalog identifier where the partner account was created.

    *)
  2. arn : PartnerArn.t option;
    (*

    The Amazon Resource Name (ARN) of the created partner account.

    *)
  3. id : PartnerId.t option;
    (*

    The unique identifier of the created partner account.

    *)
  4. legalName : SensitiveUnicodeString.t option;
    (*

    The legal name of the partner organization.

    *)
  5. createdAt : DateTime.t option;
    (*

    The timestamp when the partner account was created.

    *)
  6. profile : PartnerProfile.t option;
    (*

    The partner profile information including display name, description, and other public details.

    *)
  7. awsTrainingCertificationEmailDomains : PartnerDomainList.t option;
    (*

    The list of verified email domains associated with AWS training and certification credentials for the partner organization.

    *)
  8. allianceLeadContact : AllianceLeadContact.t option;
    (*

    The alliance lead contact information for the partner account.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?catalog:??? -> ?arn:??? -> ?id:??? -> ?legalName:??? -> ?createdAt:??? -> ?profile:??? -> ?awsTrainingCertificationEmailDomains:??? -> ?allianceLeadContact:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.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 | `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 * [> `List of [> `Structure of (string * [> `String of DomainName.t | `Timestamp of DateTime.t ]) list ] list | `String of Catalog.t | `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `Structure of (string * [> `String of UnicodeString.t ]) list ] list | `String of UnicodeString.t ]) list | `Timestamp of DateTime.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