This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-gamelift/include/aws/gamelift/model/DescribeAliasResult.h

74 lines
1.7 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/gamelift/GameLift_EXPORTS.h>
#include <aws/gamelift/model/Alias.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace GameLift
{
namespace Model
{
/**
* <p>Represents the returned data in response to a request action.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/gamelift-2015-10-01/DescribeAliasOutput">AWS
* API Reference</a></p>
*/
class AWS_GAMELIFT_API DescribeAliasResult
{
public:
DescribeAliasResult();
DescribeAliasResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DescribeAliasResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The requested alias resource.</p>
*/
inline const Alias& GetAlias() const{ return m_alias; }
/**
* <p>The requested alias resource.</p>
*/
inline void SetAlias(const Alias& value) { m_alias = value; }
/**
* <p>The requested alias resource.</p>
*/
inline void SetAlias(Alias&& value) { m_alias = std::move(value); }
/**
* <p>The requested alias resource.</p>
*/
inline DescribeAliasResult& WithAlias(const Alias& value) { SetAlias(value); return *this;}
/**
* <p>The requested alias resource.</p>
*/
inline DescribeAliasResult& WithAlias(Alias&& value) { SetAlias(std::move(value)); return *this;}
private:
Alias m_alias;
};
} // namespace Model
} // namespace GameLift
} // namespace Aws