2018-10-11 15:00:23 -07:00
< ? php
2018-12-28 10:35:52 -08:00
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2018-10-11 15:00:23 -07:00
// SPDX-License-Identifier: Apache-2.0
2024-02-05 10:49:20 -07:00
2018-10-11 15:00:23 -07:00
/*
* ABOUT THIS PHP SAMPLE: This sample is part of the KMS Developer Guide topic at
* https://docs.aws.amazon.com/kms/latest/developerguide/programming-keys.html
*
2019-02-01 20:15:53 -08:00
*
*
2018-10-11 15:00:23 -07:00
*/
2019-02-01 20:15:53 -08:00
// snippet-start:[kms.php.disable_key.complete]
// snippet-start:[kms.php.disable_key.import]
2024-02-05 10:49:20 -07:00
2018-10-11 15:00:23 -07:00
require 'vendor/autoload.php' ;
2024-02-05 10:49:20 -07:00
2018-10-11 15:00:23 -07:00
use Aws\Exception\AwsException ;
2024-02-05 10:49:20 -07:00
2019-02-01 20:15:53 -08:00
// snippet-end:[kms.php.disable_key.import]
2024-02-05 10:49:20 -07:00
2018-10-11 15:00:23 -07:00
/**
* Creating an Amazon KMS client.
*
* 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-05-05 09:44:48 -07:00
//Create a KmsClient
2019-02-01 20:15:53 -08:00
// snippet-start:[kms.php.disable_key.main]
2019-05-05 09:44:48 -07:00
$KmsClient = new Aws\Kms\KmsClient ([
2018-10-11 15:00:23 -07:00
'profile' => 'default' ,
'version' => '2014-11-01' ,
'region' => 'us-east-2'
]);
2024-02-05 10:49:20 -07:00
2018-10-11 15:00:23 -07:00
$keyId = 'arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab' ;
2024-02-05 10:49:20 -07:00
2018-10-11 15:00:23 -07:00
try {
$result = $KmsClient -> disableKey ([
'KeyId' => $keyId ,
]);
var_dump ( $result );
} catch ( AwsException $e ) {
// output error message if fails
echo $e -> getMessage ();
echo " \n " ;
}
2024-02-05 10:49:20 -07:00
2019-02-01 20:15:53 -08:00
// snippet-end:[kms.php.disable_key.main]
// snippet-end:[kms.php.disable_key.complete]