Module Values_0.MitigationActionIdentifierSource

Information that identifies a mitigation action. This information is returned by ListMitigationActions.

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

    The friendly name of the mitigation action.

    *)
  2. actionArn : MitigationActionArn.t option;
    (*

    The IAM role ARN used to apply this mitigation action.

    *)
  3. creationDate : Timestamp.t option;
    (*

    The date when this mitigation action was created.

    *)
}
Sourceval make : ?actionName:??? -> ?actionArn:??? -> ?creationDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of MitigationActionName.t | `Timestamp of Timestamp.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