Module Values.BucketCriteriaAdditionalPropertiesSource

Specifies the operator to use in a property-based condition that filters the results of a query for information about S3 buckets.

Sourcetype nonrec t = {
  1. eq : string list option;
    (*

    The value for the property matches (equals) the specified value. If you specify multiple values, Amazon Macie uses OR logic to join the values.

    *)
  2. gt : Awso.Import.Int64.t option;
    (*

    The value for the property is greater than the specified value.

    *)
  3. gte : Awso.Import.Int64.t option;
    (*

    The value for the property is greater than or equal to the specified value.

    *)
  4. lt : Awso.Import.Int64.t option;
    (*

    The value for the property is less than the specified value.

    *)
  5. lte : Awso.Import.Int64.t option;
    (*

    The value for the property is less than or equal to the specified value.

    *)
  6. neq : string list option;
    (*

    The value for the property doesn't match (doesn't equal) the specified value. If you specify multiple values, Amazon Macie uses OR logic to join the values.

    *)
  7. prefix : string option;
    (*

    The name of the bucket begins with the specified value.

    *)
}
Sourceval make : ?eq:??? -> ?gt:??? -> ?gte:??? -> ?lt:??? -> ?lte:??? -> ?neq:??? -> ?prefix:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `Long of Awso.Import.Int64.t | `String of string ]) 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