/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Updates the registry.See Also:
AWS
* API Reference
The description of the registry to update.
*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *The description of the registry to update.
*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *The description of the registry to update.
*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *The description of the registry to update.
*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *The description of the registry to update.
*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *The description of the registry to update.
*/ inline UpdateRegistryRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *The description of the registry to update.
*/ inline UpdateRegistryRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *The description of the registry to update.
*/ inline UpdateRegistryRequest& WithDescription(const char* value) { SetDescription(value); return *this;} /** *The name of the registry.
*/ inline const Aws::String& GetRegistryName() const{ return m_registryName; } /** *The name of the registry.
*/ inline bool RegistryNameHasBeenSet() const { return m_registryNameHasBeenSet; } /** *The name of the registry.
*/ inline void SetRegistryName(const Aws::String& value) { m_registryNameHasBeenSet = true; m_registryName = value; } /** *The name of the registry.
*/ inline void SetRegistryName(Aws::String&& value) { m_registryNameHasBeenSet = true; m_registryName = std::move(value); } /** *The name of the registry.
*/ inline void SetRegistryName(const char* value) { m_registryNameHasBeenSet = true; m_registryName.assign(value); } /** *The name of the registry.
*/ inline UpdateRegistryRequest& WithRegistryName(const Aws::String& value) { SetRegistryName(value); return *this;} /** *The name of the registry.
*/ inline UpdateRegistryRequest& WithRegistryName(Aws::String&& value) { SetRegistryName(std::move(value)); return *this;} /** *The name of the registry.
*/ inline UpdateRegistryRequest& WithRegistryName(const char* value) { SetRegistryName(value); return *this;} private: Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::String m_registryName; bool m_registryNameHasBeenSet = false; }; } // namespace Model } // namespace Schemas } // namespace Aws