Module Values.ConfigurationPolicyAssociationSummarySource

An object that contains the details of a configuration policy association that’s returned in a ListConfigurationPolicyAssociations request.

Sourcetype nonrec t = {
  1. configurationPolicyId : NonEmptyString.t option;
    (*

    The universally unique identifier (UUID) of the configuration policy.

    *)
  2. targetId : NonEmptyString.t option;
    (*

    The identifier of the target account, organizational unit, or the root.

    *)
  3. targetType : TargetType.t option;
    (*

    Specifies whether the target is an Amazon Web Services account, organizational unit, or the root.

    *)
  4. associationType : AssociationType.t option;
    (*

    Indicates whether the association between the specified target and the configuration was directly applied by the Security Hub CSPM delegated administrator or inherited from a parent.

    *)
  5. updatedAt : Timestamp.t option;
    (*

    The date and time, in UTC and ISO 8601 format, that the configuration policy association was last updated.

    *)
  6. associationStatus : ConfigurationPolicyAssociationStatus.t option;
    (*

    The current status of the association between the specified target and the configuration.

    *)
  7. associationStatusMessage : NonEmptyString.t option;
    (*

    The explanation for a FAILED value for AssociationStatus.

    *)
}
Sourceval make : ?configurationPolicyId:??? -> ?targetId:??? -> ?targetType:??? -> ?associationType:??? -> ?updatedAt:??? -> ?associationStatus:??? -> ?associationStatusMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.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