/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Glue { namespace Model { /** */ class GetRegistryRequest : public GlueRequest { public: AWS_GLUE_API GetRegistryRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "GetRegistry"; } AWS_GLUE_API Aws::String SerializePayload() const override; AWS_GLUE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

This is a wrapper structure that may contain the registry name and Amazon * Resource Name (ARN).

*/ inline const RegistryId& GetRegistryId() const{ return m_registryId; } /** *

This is a wrapper structure that may contain the registry name and Amazon * Resource Name (ARN).

*/ inline bool RegistryIdHasBeenSet() const { return m_registryIdHasBeenSet; } /** *

This is a wrapper structure that may contain the registry name and Amazon * Resource Name (ARN).

*/ inline void SetRegistryId(const RegistryId& value) { m_registryIdHasBeenSet = true; m_registryId = value; } /** *

This is a wrapper structure that may contain the registry name and Amazon * Resource Name (ARN).

*/ inline void SetRegistryId(RegistryId&& value) { m_registryIdHasBeenSet = true; m_registryId = std::move(value); } /** *

This is a wrapper structure that may contain the registry name and Amazon * Resource Name (ARN).

*/ inline GetRegistryRequest& WithRegistryId(const RegistryId& value) { SetRegistryId(value); return *this;} /** *

This is a wrapper structure that may contain the registry name and Amazon * Resource Name (ARN).

*/ inline GetRegistryRequest& WithRegistryId(RegistryId&& value) { SetRegistryId(std::move(value)); return *this;} private: RegistryId m_registryId; bool m_registryIdHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws