AWSGameLiftSearchSessionsRequest.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 <Multiplayer/Session/SessionRequests.h>
  10. namespace AWSGameLift
  11. {
  12. //! AWSGameLiftSearchSessionsRequest
  13. //! GameLift search sessions request which corresponds to Amazon GameLift
  14. //! SearchSessionsRequest
  15. struct AWSGameLiftSearchSessionsRequest
  16. : public Multiplayer::SearchSessionsRequest
  17. {
  18. public:
  19. AZ_RTTI(AWSGameLiftSearchSessionsRequest, "{864C91C0-CA53-4585-BF07-066C0DF3E198}", Multiplayer::SearchSessionsRequest);
  20. static void Reflect(AZ::ReflectContext* context);
  21. AWSGameLiftSearchSessionsRequest() = default;
  22. virtual ~AWSGameLiftSearchSessionsRequest() = default;
  23. //! A unique identifier for the alias associated with the fleet to search for active game sessions.
  24. AZStd::string m_aliasId;
  25. //! A unique identifier for the fleet to search for active game sessions.
  26. AZStd::string m_fleetId;
  27. //! A fleet location to search for game sessions.
  28. AZStd::string m_location;
  29. };
  30. } // namespace AWSGameLift