/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the output of a delete repository operation.See
* Also:
AWS
* API Reference
The ID of the repository that was deleted.
*/ inline const Aws::String& GetRepositoryId() const{ return m_repositoryId; } /** *The ID of the repository that was deleted.
*/ inline void SetRepositoryId(const Aws::String& value) { m_repositoryId = value; } /** *The ID of the repository that was deleted.
*/ inline void SetRepositoryId(Aws::String&& value) { m_repositoryId = std::move(value); } /** *The ID of the repository that was deleted.
*/ inline void SetRepositoryId(const char* value) { m_repositoryId.assign(value); } /** *The ID of the repository that was deleted.
*/ inline DeleteRepositoryResult& WithRepositoryId(const Aws::String& value) { SetRepositoryId(value); return *this;} /** *The ID of the repository that was deleted.
*/ inline DeleteRepositoryResult& WithRepositoryId(Aws::String&& value) { SetRepositoryId(std::move(value)); return *this;} /** *The ID of the repository that was deleted.
*/ inline DeleteRepositoryResult& WithRepositoryId(const char* value) { SetRepositoryId(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DeleteRepositoryResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteRepositoryResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteRepositoryResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_repositoryId; Aws::String m_requestId; }; } // namespace Model } // namespace CodeCommit } // namespace Aws