Module Values.CreateRelationshipRequestSource

Creates a new partner relationship between accounts.

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

    The catalog identifier for the relationship.

    *)
  2. associationType : AssociationType.t;
    (*

    The type of association for the relationship (e.g., reseller, distributor).

    *)
  3. programManagementAccountIdentifier : ProgramManagementAccountIdentifier.t;
    (*

    The identifier of the program management account for this relationship.

    *)
  4. associatedAccountId : AccountId.t;
    (*

    The AWS account ID to associate in this relationship.

    *)
  5. displayName : RelationshipDisplayName.t;
    (*

    A human-readable name for the relationship.

    *)
  6. resaleAccountModel : ResaleAccountModel.t option;
    (*

    The resale account model for the relationship.

    *)
  7. sector : Sector.t;
    (*

    The business sector for the relationship.

    *)
  8. clientToken : ClientToken.t option;
    (*

    A unique, case-sensitive identifier to ensure idempotency of the request.

    *)
  9. tags : TagList.t option;
    (*

    Key-value pairs to associate with the relationship.

    *)
  10. requestedSupportPlan : SupportPlan.t option;
    (*

    The support plan requested for this relationship.

    *)
}
Sourceval context_ : string
Sourceval make : ?resaleAccountModel:??? -> ?clientToken:??? -> ?tags:??? -> ?requestedSupportPlan:??? -> catalog:Catalog.t -> associationType:AssociationType.t -> programManagementAccountIdentifier:ProgramManagementAccountIdentifier.t -> associatedAccountId:AccountId.t -> displayName:RelationshipDisplayName.t -> sector:Sector.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of Catalog.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]) list ]) 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