Module Values.EngagementSummarySource

An object that contains an Engagement's subset of fields.

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

    The Amazon Resource Name (ARN) of the created Engagement.

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

    The unique identifier for the Engagement.

    *)
  3. title : EngagementTitle.t option;
    (*

    The title of the Engagement.

    *)
  4. createdAt : DateTime.t option;
    (*

    The date and time when the Engagement was created.

    *)
  5. createdBy : AwsAccount.t option;
    (*

    The AWS Account ID of the Engagement creator.

    *)
  6. memberCount : Integer.t option;
    (*

    The number of members in the Engagement.

    *)
  7. modifiedAt : DateTime.t option;
    (*

    The timestamp indicating when the engagement was last modified, in ISO 8601 format (UTC). Example: "2023-05-01T20:37:46Z".

    *)
  8. modifiedBy : AwsAccount.t option;
    (*

    The AWS account ID of the user who last modified the engagement. This field helps track who made the most recent changes to the engagement.

    *)
  9. contextTypes : EngagementContextTypeList.t option;
    (*

    An array of context types associated with the engagement, such as "CustomerProject" or "Lead". This provides a quick overview of the types of contexts included in the engagement.

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?title:??? -> ?createdAt:??? -> ?createdBy:??? -> ?memberCount:??? -> ?modifiedAt:??? -> ?modifiedBy:??? -> ?contextTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Enum of string ] list | `String of EngagementArn.t | `Timestamp of DateTime.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