Module Values.UpdateActionTargetRequestSource

Updates the name and description of a custom action target in Security Hub CSPM.

Sourcetype nonrec t = {
  1. actionTargetArn : NonEmptyString.t;
    (*

    The ARN of the custom action target to update.

    *)
  2. name : NonEmptyString.t option;
    (*

    The updated name of the custom action target.

    *)
  3. description : NonEmptyString.t option;
    (*

    The updated description for the custom action target.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> actionTargetArn:NonEmptyString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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