Module Values.UpdateSensitivityInspectionTemplateRequestSource

Updates the settings for the sensitivity inspection template for an account.

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

    A custom description of the template. The description can contain as many as 200 characters.

    *)
  2. excludes : SensitivityInspectionTemplateExcludes.t option;
    (*

    The managed data identifiers to explicitly exclude (not use) when performing automated sensitive data discovery. To exclude an allow list or custom data identifier that's currently included by the template, update the values for the SensitivityInspectionTemplateIncludes.allowListIds and SensitivityInspectionTemplateIncludes.customDataIdentifierIds properties, respectively.

    *)
  3. id : string;
    (*

    The unique identifier for the Amazon Macie resource that the request applies to.

    *)
  4. includes : SensitivityInspectionTemplateIncludes.t option;
    (*

    The allow lists, custom data identifiers, and managed data identifiers to explicitly include (use) when performing automated sensitive data discovery.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?excludes:??? -> ?includes:??? -> id:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string | `Structure of (string * [> `List of [> `String of string ] 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