Module Values.PushSyncSource

Configuration options to be applied to the identity pool.

Sourcetype nonrec t = {
  1. applicationArns : ApplicationArnList.t option;
    (*

    List of SNS platform application ARNs that could be used by clients.

    *)
  2. roleArn : AssumeRoleArn.t option;
    (*

    A role configured to allow Cognito to call SNS on behalf of the developer.

    *)
}
Sourceval make : ?applicationArns:??? -> ?roleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ApplicationArn.t ] list | `String of AssumeRoleArn.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