2019-04-16 20:49:53 -07:00
< ? php
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
2024-01-16 10:41:11 -05:00
2019-04-16 20:49:53 -07:00
/**
* ABOUT THIS PHP SAMPLE: This sample is part of the SDK for PHP Developer Guide topic at
* https://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/iam-examples-working-with-policies.html
*
*/
// snippet-start:[cognito.php.identity_pool.create_identity_pool.complete]
// snippet-start:[cognito.php.identity_pool.create_identity_pool.import]
require 'vendor/autoload.php' ;
use Aws\CognitoIdentity\CognitoIdentityClient ;
use Aws\Exception\AwsException ;
// snippet-end:[cognito.php.identity_pool.create_identity_pool.import]
/**
* Creates a new Identity Pool for your AWS account.
*
* This code expects that you have AWS credentials set up per:
* https://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/guide_credentials.html
*/
// snippet-start:[cognito.php.identity_pool.create_identity_pool.main]
2024-02-05 10:49:20 -07:00
2019-04-16 20:49:53 -07:00
$identityClient = new CognitoIdentityClient ([
'profile' => 'default' ,
'region' => 'us-east-2' ,
'version' => '2014-06-30'
]);
$identityPoolName = " PHP_SDK_test_identity_pool " ;
try {
$result = $identityClient -> createIdentityPool ([
'AllowUnauthenticatedIdentities' => false ,
'IdentityPoolName' => $identityPoolName ,
]);
echo $result [ " IdentityPoolId " ] . " \n " ;
echo $result [ " IdentityPoolName " ] . " \n " ;
var_dump ( $result );
} catch ( AwsException $e ) {
// output error message if fails
echo $e -> getMessage () . " \n " ;
error_log ( $e -> getMessage ());
}
// snippet-end:[cognito.php.identity_pool.create_identity_pool.main]
// snippet-end:[cognito.php.identity_pool.create_identity_pool.complete]
// snippet-sourceauthor:[jschwarzwalder (AWS)]