/** *

Configuration options to be applied to the identity pool.

*/ export interface _PushSync { /** *

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

*/ ApplicationArns?: Array | Iterable; /** *

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

*/ RoleArn?: string; } export interface _UnmarshalledPushSync extends _PushSync { /** *

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

*/ ApplicationArns?: Array; }