Module Values.FrameworkSource

The file that's used to structure and automate Audit Manager assessments for a given compliance standard.

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. name : FrameworkName.t option;
    (*

    The name of the framework.

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

    Specifies whether the framework is a standard framework or a custom framework.

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

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

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

    The description of the framework.

    *)
  7. controlSources : ControlSources.t option;
    (*

    The control data sources where Audit Manager collects evidence from. This API parameter is no longer supported.

    *)
  8. controlSets : ControlSets.t option;
    (*

    The control sets that are associated with the framework. The Controls object returns a partial response when called through Framework APIs. For a complete Controls object, use GetControl.

    *)
  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.

    *)
  11. createdBy : CreatedBy.t option;
    (*

    The user or role that created the framework.

    *)
  12. lastUpdatedBy : LastUpdatedBy.t option;
    (*

    The user or role that most recently updated the framework.

    *)
  13. tags : TagMap.t option;
    (*

    The tags that are associated with the framework.

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?name:??? -> ?type_:??? -> ?complianceType:??? -> ?description:??? -> ?logo:??? -> ?controlSources:??? -> ?controlSets:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?createdBy:??? -> ?lastUpdatedBy:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of UUID.t | `Structure of (string * [> `Enum of string | `String of KeywordValue.t ]) list ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of AuditManagerArn.t | `Timestamp of Timestamp.t ]) list ] list | `String of UUID.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `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