68 lines
1.9 KiB
C++
68 lines
1.9 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/cloud9/Cloud9_EXPORTS.h>
|
|
#include <aws/cloud9/model/EnvironmentMember.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace Cloud9
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_CLOUD9_API UpdateEnvironmentMembershipResult
|
|
{
|
|
public:
|
|
UpdateEnvironmentMembershipResult();
|
|
UpdateEnvironmentMembershipResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
UpdateEnvironmentMembershipResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>Information about the environment member whose settings were changed.</p>
|
|
*/
|
|
inline const EnvironmentMember& GetMembership() const{ return m_membership; }
|
|
|
|
/**
|
|
* <p>Information about the environment member whose settings were changed.</p>
|
|
*/
|
|
inline void SetMembership(const EnvironmentMember& value) { m_membership = value; }
|
|
|
|
/**
|
|
* <p>Information about the environment member whose settings were changed.</p>
|
|
*/
|
|
inline void SetMembership(EnvironmentMember&& value) { m_membership = std::move(value); }
|
|
|
|
/**
|
|
* <p>Information about the environment member whose settings were changed.</p>
|
|
*/
|
|
inline UpdateEnvironmentMembershipResult& WithMembership(const EnvironmentMember& value) { SetMembership(value); return *this;}
|
|
|
|
/**
|
|
* <p>Information about the environment member whose settings were changed.</p>
|
|
*/
|
|
inline UpdateEnvironmentMembershipResult& WithMembership(EnvironmentMember&& value) { SetMembership(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
EnvironmentMember m_membership;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Cloud9
|
|
} // namespace Aws
|