Module Values_0.ContextSummarySource

Lists a summary of the properties of a context. A context provides a logical grouping of other entities.

Sourcetype nonrec t = {
  1. contextArn : ContextArn.t option;
    (*

    The Amazon Resource Name (ARN) of the context.

    *)
  2. contextName : ContextName.t option;
    (*

    The name of the context.

    *)
  3. source : ContextSource.t option;
    (*

    The source of the context.

    *)
  4. contextType : String256.t option;
    (*

    The type of the context.

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

    When the context was created.

    *)
  6. lastModifiedTime : Timestamp.t option;
    (*

    When the context was last modified.

    *)
}
Sourceval make : ?contextArn:??? -> ?contextName:??? -> ?source:??? -> ?contextType:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ContextArn.t | `Structure of (string * [> `String of SourceUri.t ]) list | `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