SIGN IN SIGN UP

Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below.

0 0 0 Java
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
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-client.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.create_client.complete]
// snippet-start:[kms.php.create_client.import]
2018-10-11 15:00:23 -07:00
require 'vendor/autoload.php';
2019-02-01 20:15:53 -08:00
// snippet-end:[kms.php.create_client.import]
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
*/
//Create a KmsClient
2019-02-01 20:15:53 -08:00
// snippet-start:[kms.php.create_client.main]
$KmsClient = new Aws\Kms\KmsClient([
2018-10-11 15:00:23 -07:00
'profile' => 'default',
'version' => '2014-11-01',
'region' => 'us-east-2'
]);
2018-10-11 15:00:23 -07:00
// The same options that can be provided to a specific client constructor can also be supplied to the Aws\Sdk class.
// Use the us-west-2 region and latest version of each client.
$sharedConfig = [
'region' => 'us-west-2',
'version' => 'latest'
];
2018-10-11 15:00:23 -07:00
// Create an SDK class used to share configuration across clients.
$sdk = new Aws\Sdk($sharedConfig);
2018-10-11 15:00:23 -07:00
// Create an Amazon Kms client using the shared configuration data.
$client = $sdk->createKms();
2019-02-01 20:15:53 -08:00
// snippet-end:[kms.php.create_client.main]
// snippet-end:[kms.php.create_client.complete]