2019-02-04 10:43:16 -08:00
< ? php
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
2024-02-05 10:49:20 -07:00
2019-02-04 10:43:16 -08:00
// snippet-start:[iam.php.detach_role_policy.complete]
// snippet-start:[iam.php.detach_role_policy.import]
2024-02-05 10:49:20 -07:00
2019-02-04 10:43:16 -08:00
require 'vendor/autoload.php' ;
2024-02-05 10:49:20 -07:00
2019-02-04 10:43:16 -08:00
use Aws\Exception\AwsException ;
use Aws\Iam\IamClient ;
2024-02-05 10:49:20 -07:00
2019-02-04 10:43:16 -08:00
// snippet-end:[iam.php.detach_role_policy.import]
2024-02-05 10:49:20 -07:00
2019-02-04 10:43:16 -08:00
/**
* Detach group policy
*
* 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
*/
2024-02-05 10:49:20 -07:00
2019-02-04 10:43:16 -08:00
//Create an IAM Client
// snippet-start:[iam.php.detach_role_policy.main]
$client = new IamClient ([
'profile' => 'default' ,
'region' => 'us-west-2' ,
'version' => '2010-05-08'
]);
2024-02-05 10:49:20 -07:00
2019-02-04 10:43:16 -08:00
try {
$result = $client -> detachGroupPolicy ([
// RoleName is required
'RoleName' => 'string' ,
// PolicyName is required
'PolicyName' => 'string'
]);
var_dump ( $result );
} catch ( AwsException $e ) {
// output error message if fails
error_log ( $e -> getMessage ());
}
2024-02-05 10:49:20 -07:00
2019-02-04 10:43:16 -08:00
// snippet-end:[iam.php.detach_role_policy.main]
// snippet-end:[iam.php.detach_role_policy.complete]