AWSClientAuthModule.h 681 B

1234567891011121314151617181920212223242526
  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 <AzCore/Module/Module.h>
  10. namespace AWSClientAuth
  11. {
  12. //! Entry point for the Gem.
  13. class AWSClientAuthModule
  14. : public AZ::Module
  15. {
  16. public:
  17. AZ_RTTI(AWSClientAuthModule, "{85AD4C5F-A40A-4503-9202-4B8BE6AF0DCD}", AZ::Module);
  18. AWSClientAuthModule();
  19. virtual ~AWSClientAuthModule() override = default;
  20. virtual AZ::ComponentTypeList GetRequiredSystemComponents() const override;
  21. };
  22. }