Module Values.ConfigurationPolicySummarySource

An object that contains the details of an Security Hub CSPM configuration policy that’s returned in a ListConfigurationPolicies request.

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

    The Amazon Resource Name (ARN) of the configuration policy.

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

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

    *)
  3. name : NonEmptyString.t option;
    (*

    The name of the configuration policy. Alphanumeric characters and the following ASCII characters are permitted: -, ., !, *, /.

    *)
  4. description : NonEmptyString.t option;
    (*

    The description of the configuration policy.

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

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

    *)
  6. serviceEnabled : Boolean.t option;
    (*

    Indicates whether the service that the configuration policy applies to is enabled in the policy.

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?name:??? -> ?description:??? -> ?updatedAt:??? -> ?serviceEnabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `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