/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a DeleteGitHubAccount
* operation.See Also:
AWS
* API Reference
The name of the GitHub account connection to delete.
*/ inline const Aws::String& GetTokenName() const{ return m_tokenName; } /** *The name of the GitHub account connection to delete.
*/ inline bool TokenNameHasBeenSet() const { return m_tokenNameHasBeenSet; } /** *The name of the GitHub account connection to delete.
*/ inline void SetTokenName(const Aws::String& value) { m_tokenNameHasBeenSet = true; m_tokenName = value; } /** *The name of the GitHub account connection to delete.
*/ inline void SetTokenName(Aws::String&& value) { m_tokenNameHasBeenSet = true; m_tokenName = std::move(value); } /** *The name of the GitHub account connection to delete.
*/ inline void SetTokenName(const char* value) { m_tokenNameHasBeenSet = true; m_tokenName.assign(value); } /** *The name of the GitHub account connection to delete.
*/ inline DeleteGitHubAccountTokenRequest& WithTokenName(const Aws::String& value) { SetTokenName(value); return *this;} /** *The name of the GitHub account connection to delete.
*/ inline DeleteGitHubAccountTokenRequest& WithTokenName(Aws::String&& value) { SetTokenName(std::move(value)); return *this;} /** *The name of the GitHub account connection to delete.
*/ inline DeleteGitHubAccountTokenRequest& WithTokenName(const char* value) { SetTokenName(value); return *this;} private: Aws::String m_tokenName; bool m_tokenNameHasBeenSet = false; }; } // namespace Model } // namespace CodeDeploy } // namespace Aws