/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace CodeCommit { namespace Model { /** *

Information about a repository name and ID.

See Also:

AWS * API Reference

*/ class RepositoryNameIdPair { public: AWS_CODECOMMIT_API RepositoryNameIdPair(); AWS_CODECOMMIT_API RepositoryNameIdPair(Aws::Utils::Json::JsonView jsonValue); AWS_CODECOMMIT_API RepositoryNameIdPair& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_CODECOMMIT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The name associated with the repository.

*/ inline const Aws::String& GetRepositoryName() const{ return m_repositoryName; } /** *

The name associated with the repository.

*/ inline bool RepositoryNameHasBeenSet() const { return m_repositoryNameHasBeenSet; } /** *

The name associated with the repository.

*/ inline void SetRepositoryName(const Aws::String& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = value; } /** *

The name associated with the repository.

*/ inline void SetRepositoryName(Aws::String&& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = std::move(value); } /** *

The name associated with the repository.

*/ inline void SetRepositoryName(const char* value) { m_repositoryNameHasBeenSet = true; m_repositoryName.assign(value); } /** *

The name associated with the repository.

*/ inline RepositoryNameIdPair& WithRepositoryName(const Aws::String& value) { SetRepositoryName(value); return *this;} /** *

The name associated with the repository.

*/ inline RepositoryNameIdPair& WithRepositoryName(Aws::String&& value) { SetRepositoryName(std::move(value)); return *this;} /** *

The name associated with the repository.

*/ inline RepositoryNameIdPair& WithRepositoryName(const char* value) { SetRepositoryName(value); return *this;} /** *

The ID associated with the repository.

*/ inline const Aws::String& GetRepositoryId() const{ return m_repositoryId; } /** *

The ID associated with the repository.

*/ inline bool RepositoryIdHasBeenSet() const { return m_repositoryIdHasBeenSet; } /** *

The ID associated with the repository.

*/ inline void SetRepositoryId(const Aws::String& value) { m_repositoryIdHasBeenSet = true; m_repositoryId = value; } /** *

The ID associated with the repository.

*/ inline void SetRepositoryId(Aws::String&& value) { m_repositoryIdHasBeenSet = true; m_repositoryId = std::move(value); } /** *

The ID associated with the repository.

*/ inline void SetRepositoryId(const char* value) { m_repositoryIdHasBeenSet = true; m_repositoryId.assign(value); } /** *

The ID associated with the repository.

*/ inline RepositoryNameIdPair& WithRepositoryId(const Aws::String& value) { SetRepositoryId(value); return *this;} /** *

The ID associated with the repository.

*/ inline RepositoryNameIdPair& WithRepositoryId(Aws::String&& value) { SetRepositoryId(std::move(value)); return *this;} /** *

The ID associated with the repository.

*/ inline RepositoryNameIdPair& WithRepositoryId(const char* value) { SetRepositoryId(value); return *this;} private: Aws::String m_repositoryName; bool m_repositoryNameHasBeenSet = false; Aws::String m_repositoryId; bool m_repositoryIdHasBeenSet = false; }; } // namespace Model } // namespace CodeCommit } // namespace Aws