AWSApiRequestJobConfig.h 752 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. #include <Framework/AWSApiClientJobConfig.h>
  10. namespace AWSCore
  11. {
  12. // Currently request jobs don't need any configuration beyond what
  13. // is needed for a client job. If there is ever a need these types
  14. // can be defined.
  15. template<class RequestTraits>
  16. using IAwsApiRequestJobConfig = IAwsApiClientJobConfig<typename RequestTraits::ClientType>;
  17. template<class RequestTraits>
  18. using AwsApiRequestJobConfig = AwsApiClientJobConfig<typename RequestTraits::ClientType>;
  19. } // namespace AWSCore