Module Values.EnabledControlSummarySource

Returns a summary of information about an enabled control.

Sourcetype nonrec t = {
  1. arn : Arn.t option;
    (*

    The ARN of the enabled control.

    *)
  2. controlIdentifier : ControlIdentifier.t option;
    (*

    The controlIdentifier of the enabled control.

    *)
  3. targetIdentifier : TargetIdentifier.t option;
    (*

    The ARN of the organizational unit.

    *)
  4. statusSummary : EnablementStatusSummary.t option;
    (*

    A short description of the status of the enabled control.

    *)
  5. driftStatusSummary : DriftStatusSummary.t option;
    (*

    The drift status of the enabled control.

    *)
  6. parentIdentifier : ParentIdentifier.t option;
    (*

    The ARN of the parent enabled control from which this control inherits its configuration, if applicable.

    *)
}
Sourceval make : ?arn:??? -> ?controlIdentifier:??? -> ?targetIdentifier:??? -> ?statusSummary:??? -> ?driftStatusSummary:??? -> ?parentIdentifier:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Arn.t | `Structure of (string * [> `Enum of string | `String of OperationIdentifier.t | `Structure of (string * [> `Structure of (string * [> `Enum of string ]) list ]) 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