/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input for a request action.See Also:
AWS
* API Reference
A unique identifier for a matchmaking ticket.
*/ inline const Aws::String& GetTicketId() const{ return m_ticketId; } /** *A unique identifier for a matchmaking ticket.
*/ inline bool TicketIdHasBeenSet() const { return m_ticketIdHasBeenSet; } /** *A unique identifier for a matchmaking ticket.
*/ inline void SetTicketId(const Aws::String& value) { m_ticketIdHasBeenSet = true; m_ticketId = value; } /** *A unique identifier for a matchmaking ticket.
*/ inline void SetTicketId(Aws::String&& value) { m_ticketIdHasBeenSet = true; m_ticketId = std::move(value); } /** *A unique identifier for a matchmaking ticket.
*/ inline void SetTicketId(const char* value) { m_ticketIdHasBeenSet = true; m_ticketId.assign(value); } /** *A unique identifier for a matchmaking ticket.
*/ inline StopMatchmakingRequest& WithTicketId(const Aws::String& value) { SetTicketId(value); return *this;} /** *A unique identifier for a matchmaking ticket.
*/ inline StopMatchmakingRequest& WithTicketId(Aws::String&& value) { SetTicketId(std::move(value)); return *this;} /** *A unique identifier for a matchmaking ticket.
*/ inline StopMatchmakingRequest& WithTicketId(const char* value) { SetTicketId(value); return *this;} private: Aws::String m_ticketId; bool m_ticketIdHasBeenSet; }; } // namespace Model } // namespace GameLift } // namespace Aws