This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*----------------------------- | |
* Athena SELECT Query Sample Program | |
* | |
* - IAM でユーザ作成必要 | |
* 必要な管理ポリシー : AmazonAthenaFullAccess | |
* - 作ったIAMユーザのクレデンシャル情報を aws configure で設定必要 | |
* - AWS SDK for PHP version 3 のインストールが必要 | |
* | |
* @date 2017/08/06 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php return array( | |
'includes' => array('_aws'), | |
'services' => array( | |
'default_settings' => array( | |
'params' => array( | |
'key' => 'AAAAAAAAAAAAAAAAAAAA', | |
'secret' => 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAA', | |
'region' => 'ap-northeast-1' | |
) | |
), |