ShieldClient.php 1.4 KB

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Aws\Shield;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **AWS Shield** service.
  6. * @method \Aws\Result createProtection(array $args = [])
  7. * @method \GuzzleHttp\Promise\Promise createProtectionAsync(array $args = [])
  8. * @method \Aws\Result createSubscription(array $args = [])
  9. * @method \GuzzleHttp\Promise\Promise createSubscriptionAsync(array $args = [])
  10. * @method \Aws\Result deleteProtection(array $args = [])
  11. * @method \GuzzleHttp\Promise\Promise deleteProtectionAsync(array $args = [])
  12. * @method \Aws\Result deleteSubscription(array $args = [])
  13. * @method \GuzzleHttp\Promise\Promise deleteSubscriptionAsync(array $args = [])
  14. * @method \Aws\Result describeAttack(array $args = [])
  15. * @method \GuzzleHttp\Promise\Promise describeAttackAsync(array $args = [])
  16. * @method \Aws\Result describeProtection(array $args = [])
  17. * @method \GuzzleHttp\Promise\Promise describeProtectionAsync(array $args = [])
  18. * @method \Aws\Result describeSubscription(array $args = [])
  19. * @method \GuzzleHttp\Promise\Promise describeSubscriptionAsync(array $args = [])
  20. * @method \Aws\Result listAttacks(array $args = [])
  21. * @method \GuzzleHttp\Promise\Promise listAttacksAsync(array $args = [])
  22. * @method \Aws\Result listProtections(array $args = [])
  23. * @method \GuzzleHttp\Promise\Promise listProtectionsAsync(array $args = [])
  24. */
  25. class ShieldClient extends AwsClient {}