Module Values.SimpleCriterionForJobSource

Specifies a property-based condition that determines whether an S3 bucket is included or excluded from a classification job.

Sourcetype nonrec t = {
  1. comparator : JobComparator.t option;
    (*

    The operator to use in the condition. Valid values are EQ (equals) and NE (not equals).

    *)
  2. key : SimpleCriterionKeyForJob.t option;
    (*

    The property to use in the condition.

    *)
  3. values : string list option;
    (*

    An array that lists one or more values to use in the condition. If you specify multiple values, Amazon Macie uses OR logic to join the values. Valid values for each supported property (key) are: ACCOUNT_ID - A string that represents the unique identifier for the Amazon Web Services account that owns the bucket. S3_BUCKET_EFFECTIVE_PERMISSION - A string that represents an enumerated value that Macie defines for the BucketPublicAccess.effectivePermission property of a bucket. S3_BUCKET_NAME - A string that represents the name of a bucket. S3_BUCKET_SHARED_ACCESS - A string that represents an enumerated value that Macie defines for the BucketMetadata.sharedAccess property of a bucket. Values are case sensitive. Also, Macie doesn't support use of partial values or wildcard characters in these values.

    *)
}
Sourceval make : ?comparator:??? -> ?key:??? -> ?values:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of string ] 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