Module Values.AssessmentFrameworkShareRequestSource

Represents a share request for a custom framework in Audit Manager.

Sourcetype nonrec t = {
  1. id : UUID.t option;
    (*

    The unique identifier for the share request.

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

    The unique identifier for the shared custom framework.

    *)
  3. frameworkName : FrameworkName.t option;
    (*

    The name of the custom framework that the share request is for.

    *)
  4. frameworkDescription : FrameworkDescription.t option;
    (*

    The description of the shared custom framework.

    *)
  5. status : ShareRequestStatus.t option;
    (*

    The status of the share request.

    *)
  6. sourceAccount : AccountId.t option;
    (*

    The Amazon Web Services account of the sender.

    *)
  7. destinationAccount : AccountId.t option;
    (*

    The Amazon Web Services account of the recipient.

    *)
  8. destinationRegion : Region.t option;
    (*

    The Amazon Web Services Region of the recipient.

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

    The time when the share request expires.

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

    The time when the share request was created.

    *)
  11. lastUpdated : Timestamp.t option;
    (*

    Specifies when the share request was last updated.

    *)
  12. comment : ShareRequestComment.t option;
    (*

    An optional comment from the sender about the share request.

    *)
  13. standardControlsCount : NullableInteger.t option;
    (*

    The number of standard controls that are part of the shared custom framework.

    *)
  14. customControlsCount : NullableInteger.t option;
    (*

    The number of custom controls that are part of the shared custom framework.

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

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

    *)
}
Sourceval make : ?id:??? -> ?frameworkId:??? -> ?frameworkName:??? -> ?frameworkDescription:??? -> ?status:??? -> ?sourceAccount:??? -> ?destinationAccount:??? -> ?destinationRegion:??? -> ?expirationTime:??? -> ?creationTime:??? -> ?lastUpdated:??? -> ?comment:??? -> ?standardControlsCount:??? -> ?customControlsCount:??? -> ?complianceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of NullableInteger.t | `String of UUID.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