You are here

function awssdk_config_set in AWS SDK for PHP 7.5

Set configuration via CFCredentials::set() during library load.

1 string reference to 'awssdk_config_set'
awssdk_libraries_info in ./awssdk.module
Implements hook_libraries_info()

File

./awssdk.module, line 150
Provides primary Drupal hook implementations.

Code

function awssdk_config_set() {

  // Any environment support should be done through variable overrides,
  // otherwise alter the library definition for callbacks -> post-load.
  CFCredentials::set(array(
    '@default' => awssdk_config_load(),
  ));
}