/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Glue { namespace Model { class UpdateRegistryResult { public: AWS_GLUE_API UpdateRegistryResult(); AWS_GLUE_API UpdateRegistryResult(const Aws::AmazonWebServiceResult& result); AWS_GLUE_API UpdateRegistryResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The name of the updated registry.

*/ inline const Aws::String& GetRegistryName() const{ return m_registryName; } /** *

The name of the updated registry.

*/ inline void SetRegistryName(const Aws::String& value) { m_registryName = value; } /** *

The name of the updated registry.

*/ inline void SetRegistryName(Aws::String&& value) { m_registryName = std::move(value); } /** *

The name of the updated registry.

*/ inline void SetRegistryName(const char* value) { m_registryName.assign(value); } /** *

The name of the updated registry.

*/ inline UpdateRegistryResult& WithRegistryName(const Aws::String& value) { SetRegistryName(value); return *this;} /** *

The name of the updated registry.

*/ inline UpdateRegistryResult& WithRegistryName(Aws::String&& value) { SetRegistryName(std::move(value)); return *this;} /** *

The name of the updated registry.

*/ inline UpdateRegistryResult& WithRegistryName(const char* value) { SetRegistryName(value); return *this;} /** *

The Amazon Resource name (ARN) of the updated registry.

*/ inline const Aws::String& GetRegistryArn() const{ return m_registryArn; } /** *

The Amazon Resource name (ARN) of the updated registry.

*/ inline void SetRegistryArn(const Aws::String& value) { m_registryArn = value; } /** *

The Amazon Resource name (ARN) of the updated registry.

*/ inline void SetRegistryArn(Aws::String&& value) { m_registryArn = std::move(value); } /** *

The Amazon Resource name (ARN) of the updated registry.

*/ inline void SetRegistryArn(const char* value) { m_registryArn.assign(value); } /** *

The Amazon Resource name (ARN) of the updated registry.

*/ inline UpdateRegistryResult& WithRegistryArn(const Aws::String& value) { SetRegistryArn(value); return *this;} /** *

The Amazon Resource name (ARN) of the updated registry.

*/ inline UpdateRegistryResult& WithRegistryArn(Aws::String&& value) { SetRegistryArn(std::move(value)); return *this;} /** *

The Amazon Resource name (ARN) of the updated registry.

*/ inline UpdateRegistryResult& WithRegistryArn(const char* value) { SetRegistryArn(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 UpdateRegistryResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateRegistryResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateRegistryResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_registryName; Aws::String m_registryArn; Aws::String m_requestId; }; } // namespace Model } // namespace Glue } // namespace Aws