Module Values.GetProviderServiceOutputSource

Returns the ProviderService of a given name.

Sourcetype nonrec t = {
  1. providerName : EntityName.t option;
    (*

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

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

    The name of the product that the provider service provides.

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

    The display name of the provider service.

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

    The type of provider service.

    *)
  5. providerServiceArn : ProviderServiceArn.t option;
    (*

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

    *)
  6. providerConfigurationDefinition : Document.t option;
    (*

    The definition of the provider configuration.

    *)
  7. providerIdNameSpaceConfiguration : ProviderIdNameSpaceConfiguration.t option;
    (*

    The provider configuration required for different ID namespace types.

    *)
  8. providerJobConfiguration : Document.t option;
    (*

    Provider service job configurations.

    *)
  9. providerEndpointConfiguration : ProviderEndpointConfiguration.t option;
    (*

    The required configuration fields to use with the provider service.

    *)
  10. anonymizedOutput : Boolean.t option;
    (*

    Specifies whether output data from the provider is anonymized. A value of TRUE means the output will be anonymized and you can't relate the data that comes back from the provider to the identifying input. A value of FALSE means the output won't be anonymized and you can relate the data that comes back from the provider to your source data.

    *)
  11. providerEntityOutputDefinition : Document.t option;
    (*

    The definition of the provider entity output.

    *)
  12. providerIntermediateDataAccessConfiguration : ProviderIntermediateDataAccessConfiguration.t option;
    (*

    The Amazon Web Services accounts and the S3 permissions that are required by some providers to create an S3 bucket for intermediate data storage.

    *)
  13. providerComponentSchema : ProviderComponentSchema.t option;
    (*

    Input schema for the provider service.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?providerName:??? -> ?providerServiceName:??? -> ?providerServiceDisplayName:??? -> ?providerServiceType:??? -> ?providerServiceArn:??? -> ?providerConfigurationDefinition:??? -> ?providerIdNameSpaceConfiguration:??? -> ?providerJobConfiguration:??? -> ?providerEndpointConfiguration:??? -> ?anonymizedOutput:??? -> ?providerEntityOutputDefinition:??? -> ?providerIntermediateDataAccessConfiguration:??? -> ?providerComponentSchema:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.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 | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.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 * [> `Boolean of Boolean.t | `Enum of string | `String of EntityName.t | `Structure of (string * [> `List of [> `List of [> `String of String_.t ] list | `String of AwsAccountId.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of AttributeName.t ]) list ] list | `String of String_.t | `Structure 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