/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of an update repository description
* operation.See Also:
AWS
* API Reference
The name of the repository to set or change the comment or description * for.
*/ inline const Aws::String& GetRepositoryName() const{ return m_repositoryName; } /** *The name of the repository to set or change the comment or description * for.
*/ inline bool RepositoryNameHasBeenSet() const { return m_repositoryNameHasBeenSet; } /** *The name of the repository to set or change the comment or description * for.
*/ inline void SetRepositoryName(const Aws::String& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = value; } /** *The name of the repository to set or change the comment or description * for.
*/ inline void SetRepositoryName(Aws::String&& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = std::move(value); } /** *The name of the repository to set or change the comment or description * for.
*/ inline void SetRepositoryName(const char* value) { m_repositoryNameHasBeenSet = true; m_repositoryName.assign(value); } /** *The name of the repository to set or change the comment or description * for.
*/ inline UpdateRepositoryDescriptionRequest& WithRepositoryName(const Aws::String& value) { SetRepositoryName(value); return *this;} /** *The name of the repository to set or change the comment or description * for.
*/ inline UpdateRepositoryDescriptionRequest& WithRepositoryName(Aws::String&& value) { SetRepositoryName(std::move(value)); return *this;} /** *The name of the repository to set or change the comment or description * for.
*/ inline UpdateRepositoryDescriptionRequest& WithRepositoryName(const char* value) { SetRepositoryName(value); return *this;} /** *The new comment or description for the specified repository. Repository * descriptions are limited to 1,000 characters.
*/ inline const Aws::String& GetRepositoryDescription() const{ return m_repositoryDescription; } /** *The new comment or description for the specified repository. Repository * descriptions are limited to 1,000 characters.
*/ inline bool RepositoryDescriptionHasBeenSet() const { return m_repositoryDescriptionHasBeenSet; } /** *The new comment or description for the specified repository. Repository * descriptions are limited to 1,000 characters.
*/ inline void SetRepositoryDescription(const Aws::String& value) { m_repositoryDescriptionHasBeenSet = true; m_repositoryDescription = value; } /** *The new comment or description for the specified repository. Repository * descriptions are limited to 1,000 characters.
*/ inline void SetRepositoryDescription(Aws::String&& value) { m_repositoryDescriptionHasBeenSet = true; m_repositoryDescription = std::move(value); } /** *The new comment or description for the specified repository. Repository * descriptions are limited to 1,000 characters.
*/ inline void SetRepositoryDescription(const char* value) { m_repositoryDescriptionHasBeenSet = true; m_repositoryDescription.assign(value); } /** *The new comment or description for the specified repository. Repository * descriptions are limited to 1,000 characters.
*/ inline UpdateRepositoryDescriptionRequest& WithRepositoryDescription(const Aws::String& value) { SetRepositoryDescription(value); return *this;} /** *The new comment or description for the specified repository. Repository * descriptions are limited to 1,000 characters.
*/ inline UpdateRepositoryDescriptionRequest& WithRepositoryDescription(Aws::String&& value) { SetRepositoryDescription(std::move(value)); return *this;} /** *The new comment or description for the specified repository. Repository * descriptions are limited to 1,000 characters.
*/ inline UpdateRepositoryDescriptionRequest& WithRepositoryDescription(const char* value) { SetRepositoryDescription(value); return *this;} private: Aws::String m_repositoryName; bool m_repositoryNameHasBeenSet = false; Aws::String m_repositoryDescription; bool m_repositoryDescriptionHasBeenSet = false; }; } // namespace Model } // namespace CodeCommit } // namespace Aws