58 lines
1.2 KiB
C
58 lines
1.2 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/chime/Chime_EXPORTS.h>
|
|||
|
|
#include <aws/chime/model/Bot.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace Chime
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
class AWS_CHIME_API RegenerateSecurityTokenResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
RegenerateSecurityTokenResult();
|
|||
|
|
RegenerateSecurityTokenResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
RegenerateSecurityTokenResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline const Bot& GetBot() const{ return m_bot; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline void SetBot(const Bot& value) { m_bot = value; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline void SetBot(Bot&& value) { m_bot = std::move(value); }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline RegenerateSecurityTokenResult& WithBot(const Bot& value) { SetBot(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline RegenerateSecurityTokenResult& WithBot(Bot&& value) { SetBot(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Bot m_bot;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Chime
|
|||
|
|
} // namespace Aws
|