Module Values.ProtectedQuerySource

The parameters for an Clean Rooms protected query.

Sourcetype nonrec t = {
  1. id : UUID.t option;
    (*

    The identifier for a protected query instance.

    *)
  2. membershipId : UUID.t option;
    (*

    The identifier for the membership.

    *)
  3. membershipArn : MembershipArn.t option;
    (*

    The ARN of the membership.

    *)
  4. createTime : Timestamp.t option;
    (*

    The time at which the protected query was created.

    *)
  5. sqlParameters : ProtectedQuerySQLParameters.t option;
    (*

    The protected query SQL parameters.

    *)
  6. status : ProtectedQueryStatus.t option;
    (*

    The status of the query.

    *)
  7. resultConfiguration : ProtectedQueryResultConfiguration.t option;
    (*

    Contains any details needed to write the query results.

    *)
  8. statistics : ProtectedQueryStatistics.t option;
    (*

    Statistics about protected query execution.

    *)
  9. result : ProtectedQueryResult.t option;
    (*

    The result of the protected query.

    *)
  10. error : ProtectedQueryError.t option;
    (*

    An error thrown by the protected query.

    *)
  11. differentialPrivacy : DifferentialPrivacyParameters.t option;
    (*

    The sensitivity parameters of the differential privacy results of the protected query.

    *)
  12. computeConfiguration : ComputeConfiguration.t option;
    (*

    The compute configuration for the protected query.

    *)
}
Sourceval make : ?id:??? -> ?membershipId:??? -> ?membershipArn:??? -> ?createTime:??? -> ?sqlParameters:??? -> ?status:??? -> ?resultConfiguration:??? -> ?statistics:??? -> ?result:??? -> ?error:??? -> ?differentialPrivacy:??? -> ?computeConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UUID.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Float of Float_.t | `Integer of DifferentialPrivacySensitivityParametersUserContributionLimitInteger.t | `String of DifferentialPrivacyAggregationExpression.t ]) list ] list | `Long of Long.t | `Map of ([> `String of ParameterName.t ] * [> `String of ParameterValue.t ]) list | `String of ProtectedQuerySQLParametersQueryStringString.t | `Structure of (string * [> `Double of Double.t | `Enum of string | `Integer of WorkerComputeConfigurationNumberInteger.t | `List of [> `Structure of (string * [> `String of AccountId.t ]) list ] list | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `Structure of (string * [> `String of AccountId.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of ProtectedQueryS3OutputConfigurationBucketString.t ]) list ]) list ] list | `Map of ([> `String of SparkPropertyKey.t ] * [> `String of SparkPropertyValue.t ]) list | `String of ProtectedQueryS3OutputConfigurationBucketString.t | `Structure of (string * [> `String of String_.t ]) list ]) list ]) list ]) list | `Timestamp of Timestamp.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