Module Values.RelationshipDetailSource

Detailed information about a partner relationship.

Sourcetype nonrec t = {
  1. arn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the relationship.

    *)
  2. id : RelationshipId.t option;
    (*

    The unique identifier of the relationship.

    *)
  3. revision : Revision.t option;
    (*

    The current revision number of the relationship.

    *)
  4. catalog : Catalog.t option;
    (*

    The catalog identifier associated with the relationship.

    *)
  5. associationType : AssociationType.t option;
    (*

    The type of association for the relationship.

    *)
  6. programManagementAccountId : ProgramManagementAccountId.t option;
    (*

    The identifier of the program management account.

    *)
  7. associatedAccountId : AccountId.t option;
    (*

    The AWS account ID associated in this relationship.

    *)
  8. displayName : RelationshipDisplayName.t option;
    (*

    The display name of the relationship.

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

    The resale account model for the relationship.

    *)
  10. sector : Sector.t option;
    (*

    The business sector for the relationship.

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

    The timestamp when the relationship was created.

    *)
  12. updatedAt : DateTime.t option;
    (*

    The timestamp when the relationship was last updated.

    *)
  13. startDate : DateTime.t option;
    (*

    The start date of the relationship.

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?revision:??? -> ?catalog:??? -> ?associationType:??? -> ?programManagementAccountId:??? -> ?associatedAccountId:??? -> ?displayName:??? -> ?resaleAccountModel:??? -> ?sector:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?startDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Arn.t | `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