/** * 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 Greengrass { namespace Model { /** */ class GetResourceDefinitionRequest : public GreengrassRequest { public: AWS_GREENGRASS_API GetResourceDefinitionRequest(); // 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 "GetResourceDefinition"; } AWS_GREENGRASS_API Aws::String SerializePayload() const override; /** * The ID of the resource definition. */ inline const Aws::String& GetResourceDefinitionId() const{ return m_resourceDefinitionId; } /** * The ID of the resource definition. */ inline bool ResourceDefinitionIdHasBeenSet() const { return m_resourceDefinitionIdHasBeenSet; } /** * The ID of the resource definition. */ inline void SetResourceDefinitionId(const Aws::String& value) { m_resourceDefinitionIdHasBeenSet = true; m_resourceDefinitionId = value; } /** * The ID of the resource definition. */ inline void SetResourceDefinitionId(Aws::String&& value) { m_resourceDefinitionIdHasBeenSet = true; m_resourceDefinitionId = std::move(value); } /** * The ID of the resource definition. */ inline void SetResourceDefinitionId(const char* value) { m_resourceDefinitionIdHasBeenSet = true; m_resourceDefinitionId.assign(value); } /** * The ID of the resource definition. */ inline GetResourceDefinitionRequest& WithResourceDefinitionId(const Aws::String& value) { SetResourceDefinitionId(value); return *this;} /** * The ID of the resource definition. */ inline GetResourceDefinitionRequest& WithResourceDefinitionId(Aws::String&& value) { SetResourceDefinitionId(std::move(value)); return *this;} /** * The ID of the resource definition. */ inline GetResourceDefinitionRequest& WithResourceDefinitionId(const char* value) { SetResourceDefinitionId(value); return *this;} private: Aws::String m_resourceDefinitionId; bool m_resourceDefinitionIdHasBeenSet = false; }; } // namespace Model } // namespace Greengrass } // namespace Aws