Module Values_0.MitigationActionSource

Describes which changes should be applied as part of a mitigation action.

Sourcetype nonrec t = {
  1. name : MitigationActionName.t option;
    (*

    A user-friendly name for the mitigation action.

    *)
  2. id : MitigationActionId.t option;
    (*

    A unique identifier for the mitigation action.

    *)
  3. roleArn : RoleArn.t option;
    (*

    The IAM role ARN used to apply this mitigation action.

    *)
  4. actionParams : MitigationActionParams.t option;
    (*

    The set of parameters for this mitigation action. The parameters vary, depending on the kind of action you apply.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> ?roleArn:??? -> ?actionParams:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of MitigationActionName.t | `Structure of (string * [> `Structure of (string * [> `Boolean of NullableBoolean.t | `Enum of string | `List of [> `String of ThingGroupName.t ] list | `String of RoleArn.t ]) 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