Module Values.ProviderServiceSummarySource

A list of ProviderService objects, each of which contain the fields providerName, providerServiceArn, providerServiceName, and providerServiceType.

Sourcetype nonrec t = {
  1. providerServiceArn : ProviderServiceArn.t option;
    (*

    The ARN (Amazon Resource Name) that Entity Resolution generated for the providerService.

    *)
  2. providerName : EntityName.t option;
    (*

    The name of the provider. This name is typically the company name.

    *)
  3. providerServiceDisplayName : ProviderServiceDisplayName.t option;
    (*

    The display name of the provider service.

    *)
  4. providerServiceName : EntityName.t option;
    (*

    The name of the product that the provider service provides.

    *)
  5. providerServiceType : ServiceType.t option;
    (*

    The type of provider service.

    *)
}
Sourceval make : ?providerServiceArn:??? -> ?providerName:??? -> ?providerServiceDisplayName:??? -> ?providerServiceName:??? -> ?providerServiceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ProviderServiceArn.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