Module Values.AssessmentFrameworkMetadataSource

The metadata that's associated with a standard framework or a custom framework.

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

    The Amazon Resource Name (ARN) of the framework.

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

    The unique identifier for the framework.

    *)
  3. type_ : FrameworkType.t option;
    (*

    The framework type, such as a standard framework or a custom framework.

    *)
  4. name : FrameworkName.t option;
    (*

    The name of the framework.

    *)
  5. description : FrameworkDescription.t option;
    (*

    The description of the framework.

    *)
  6. complianceType : ComplianceType.t option;
    (*

    The compliance type that the new custom framework supports, such as CIS or HIPAA.

    *)
  7. controlsCount : ControlsCount.t option;
    (*

    The number of controls that are associated with the framework.

    *)
  8. controlSetsCount : ControlSetsCount.t option;
    (*

    The number of control sets that are associated with the framework.

    *)
  9. createdAt : Timestamp.t option;
    (*

    The time when the framework was created.

    *)
  10. lastUpdatedAt : Timestamp.t option;
    (*

    The time when the framework was most recently updated.

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?type_:??? -> ?name:??? -> ?description:??? -> ?logo:??? -> ?complianceType:??? -> ?controlsCount:??? -> ?controlSetsCount:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of ControlsCount.t | `String of AuditManagerArn.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