Module Values_1.RefreshScheduleSource

The refresh schedule of a dataset.

Sourcetype nonrec t = {
  1. scheduleId : Values_0.String_.t;
    (*

    An identifier for the refresh schedule.

    *)
  2. scheduleFrequency : RefreshFrequency.t;
    (*

    The frequency for the refresh schedule.

    *)
  3. startAfterDateTime : Values_0.Timestamp.t option;
    (*

    Time after which the refresh schedule can be started, expressed in YYYY-MM-DDTHH:MM:SS format.

    *)
  4. refreshType : IngestionType.t;
    (*

    The type of refresh that a datset undergoes. Valid values are as follows: FULL_REFRESH: A complete refresh of a dataset. INCREMENTAL_REFRESH: A partial refresh of some rows of a dataset, based on the time window specified. For more information on full and incremental refreshes, see Refreshing SPICE data in the Amazon Quick Suite User Guide.

    *)
  5. arn : Values_0.Arn.t option;
    (*

    The Amazon Resource Name (ARN) for the refresh schedule.

    *)
}
Sourceval context_ : string
Sourceval make : ?startAfterDateTime:??? -> ?arn:??? -> scheduleId:Values_0.String_.t -> scheduleFrequency:RefreshFrequency.t -> refreshType:IngestionType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.String_.t | `Structure of (string * [> `Enum of string | `String of Values_0.String_.t | `Structure of (string * [> `Enum of string | `String of DayOfMonth.t ]) list ]) list | `Timestamp of Values_0.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