84 lines
2.4 KiB
C++
84 lines
2.4 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/codedeploy/CodeDeploy_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace CodeDeploy
|
|
{
|
|
namespace Model
|
|
{
|
|
/**
|
|
* <p>Represents the output of a <code>DeleteGitHubAccountToken</code>
|
|
* operation.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/DeleteGitHubAccountTokenOutput">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_CODEDEPLOY_API DeleteGitHubAccountTokenResult
|
|
{
|
|
public:
|
|
DeleteGitHubAccountTokenResult();
|
|
DeleteGitHubAccountTokenResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
DeleteGitHubAccountTokenResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The name of the GitHub account connection that was deleted.</p>
|
|
*/
|
|
inline const Aws::String& GetTokenName() const{ return m_tokenName; }
|
|
|
|
/**
|
|
* <p>The name of the GitHub account connection that was deleted.</p>
|
|
*/
|
|
inline void SetTokenName(const Aws::String& value) { m_tokenName = value; }
|
|
|
|
/**
|
|
* <p>The name of the GitHub account connection that was deleted.</p>
|
|
*/
|
|
inline void SetTokenName(Aws::String&& value) { m_tokenName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the GitHub account connection that was deleted.</p>
|
|
*/
|
|
inline void SetTokenName(const char* value) { m_tokenName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the GitHub account connection that was deleted.</p>
|
|
*/
|
|
inline DeleteGitHubAccountTokenResult& WithTokenName(const Aws::String& value) { SetTokenName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the GitHub account connection that was deleted.</p>
|
|
*/
|
|
inline DeleteGitHubAccountTokenResult& WithTokenName(Aws::String&& value) { SetTokenName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the GitHub account connection that was deleted.</p>
|
|
*/
|
|
inline DeleteGitHubAccountTokenResult& WithTokenName(const char* value) { SetTokenName(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_tokenName;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace CodeDeploy
|
|
} // namespace Aws
|