Module Values.SessionDataSource

Information about the session.

Sourcetype nonrec t = {
  1. description : Description.t option;
    (*

    The description of the session.

    *)
  2. integrationConfiguration : SessionIntegrationConfiguration.t option;
    (*

    The configuration information for the session integration.

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

    The name of the session.

    *)
  4. sessionArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the session.

    *)
  5. sessionId : Uuid.t option;
    (*

    The identifier of the session.

    *)
  6. tags : Tags.t option;
    (*

    The tags used to organize, track, or control access for this resource.

    *)
}
Sourceval make : ?description:??? -> ?integrationConfiguration:??? -> ?name:??? -> ?sessionArn:??? -> ?sessionId:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Description.t | `Structure of (string * [> `String of GenericArn.t ]) list ]) 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