Module Values.EnabledControlDetailsSource

Information about the enabled control.

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

    The ARN of the enabled control.

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

    The control identifier of the enabled control. For information on how to find the controlIdentifier, see the overview page.

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

    The ARN of the organizational unit. For information on how to find the targetIdentifier, see the overview page.

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

    The deployment summary 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.

    *)
  7. targetRegions : TargetRegions.t option;
    (*

    Target Amazon Web Services Regions for the enabled control.

    *)
  8. parameters : EnabledControlParameterSummaries.t option;
    (*

    Array of EnabledControlParameter objects.

    *)
}
Sourceval make : ?arn:??? -> ?controlIdentifier:??? -> ?targetIdentifier:??? -> ?statusSummary:??? -> ?driftStatusSummary:??? -> ?parentIdentifier:??? -> ?targetRegions:??? -> ?parameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of RegionName.t | `Structure of 'a list ]) list ] list | `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