Module Values_2.TopicRefreshDetailsSource

The details about the refresh of a topic.

Sourcetype nonrec t = {
  1. refreshArn : Values_0.Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the topic refresh.

    *)
  2. refreshId : Values_1.ResourceId.t option;
    (*

    The ID of the refresh, which occurs as a result of topic creation or topic update.

    *)
  3. refreshStatus : TopicRefreshStatus.t option;
    (*

    The status of the refresh job that indicates whether the job is still running, completed successfully, or failed.

    *)
}
Sourceval make : ?refreshArn:??? -> ?refreshId:??? -> ?refreshStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.Arn.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