Amazon SNS 推送 - 如何定义推送通知图标

Amazon SNS Push - How do I define the push notification icon

我用谷歌搜索了这个问题并搜索了 AWS 文档,但仍然找不到答案。

我在哪里定义适用于 GCM 的 AWS SNS 服务的推送通知图标图像 Android?

这是一个适用于 PHP;

的示例
                'GCM' => json_encode(
                    [
                        'priority' => 'high', 
                        'data' => 
                            [
                                'message' => "Some message here",
                                'largeIcon' => 'ic_notification',
                                'smallIcon' => 'ic_foreground',
                                'color' => '#30AAFD',
                            ]
                    ])