Module Values.GetSynchronizationConfigurationResponseSource

Returns the synchronization configuration for the specified S3 File System, including import data rules and expiration data rules.

Sourcetype nonrec t = {
  1. latestVersionNumber : Integer.t option;
    (*

    The version number of the synchronization configuration. Use this value with PutSynchronizationConfiguration to ensure optimistic concurrency control.

    *)
  2. importDataRules : GetSynchronizationConfigurationResponseImportDataRulesList.t option;
    (*

    An array of import data rules that control how data is imported from S3 into the file system.

    *)
  3. expirationDataRules : GetSynchronizationConfigurationResponseExpirationDataRulesList.t option;
    (*

    An array of expiration data rules that control when cached data expires from the file system.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of InternalServerException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ThrottlingException of ThrottlingException.t
  4. | `ValidationException of ValidationException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?latestVersionNumber:??? -> ?importDataRules:??? -> ?expirationDataRules:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `Enum of string | `Integer of ExpirationDataRuleDaysAfterLastAccessInteger.t | `Long of ImportDataRuleSizeLessThanLong.t | `String of ImportDataRulePrefixString.t ]) list ] 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