Module Values.SecurityGroupRemediationActionSource

Remediation option for the rule specified in the ViolationTarget.

Sourcetype nonrec t = {
  1. remediationActionType : RemediationActionType.t option;
    (*

    The remediation action that will be performed.

    *)
  2. description : RemediationActionDescription.t option;
    (*

    Brief description of the action that will be performed.

    *)
  3. remediationResult : SecurityGroupRuleDescription.t option;
    (*

    The final state of the rule specified in the ViolationTarget after it is remediated.

    *)
  4. isDefaultAction : Boolean.t option;
    (*

    Indicates if the current action is the default action.

    *)
}
Sourceval make : ?remediationActionType:??? -> ?description:??? -> ?remediationResult:??? -> ?isDefaultAction:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of RemediationActionDescription.t | `Structure of (string * [> `Long of IPPortNumber.t | `String of CIDR.t ]) 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