mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-04-17 01:43:12 +02:00
16 lines
582 B
PHP
16 lines
582 B
PHP
<?php
|
|
namespace Aws\SSOOIDC;
|
|
|
|
use Aws\AwsClient;
|
|
|
|
/**
|
|
* This client is used to interact with the **AWS SSO OIDC** service.
|
|
* @method \Aws\Result createToken(array $args = [])
|
|
* @method \GuzzleHttp\Promise\Promise createTokenAsync(array $args = [])
|
|
* @method \Aws\Result registerClient(array $args = [])
|
|
* @method \GuzzleHttp\Promise\Promise registerClientAsync(array $args = [])
|
|
* @method \Aws\Result startDeviceAuthorization(array $args = [])
|
|
* @method \GuzzleHttp\Promise\Promise startDeviceAuthorizationAsync(array $args = [])
|
|
*/
|
|
class SSOOIDCClient extends AwsClient {}
|