/** * 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 DeleteFunctionDefinitionRequest : public GreengrassRequest { public: AWS_GREENGRASS_API DeleteFunctionDefinitionRequest(); // 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 "DeleteFunctionDefinition"; } AWS_GREENGRASS_API Aws::String SerializePayload() const override; /** * The ID of the Lambda function definition. */ inline const Aws::String& GetFunctionDefinitionId() const{ return m_functionDefinitionId; } /** * The ID of the Lambda function definition. */ inline bool FunctionDefinitionIdHasBeenSet() const { return m_functionDefinitionIdHasBeenSet; } /** * The ID of the Lambda function definition. */ inline void SetFunctionDefinitionId(const Aws::String& value) { m_functionDefinitionIdHasBeenSet = true; m_functionDefinitionId = value; } /** * The ID of the Lambda function definition. */ inline void SetFunctionDefinitionId(Aws::String&& value) { m_functionDefinitionIdHasBeenSet = true; m_functionDefinitionId = std::move(value); } /** * The ID of the Lambda function definition. */ inline void SetFunctionDefinitionId(const char* value) { m_functionDefinitionIdHasBeenSet = true; m_functionDefinitionId.assign(value); } /** * The ID of the Lambda function definition. */ inline DeleteFunctionDefinitionRequest& WithFunctionDefinitionId(const Aws::String& value) { SetFunctionDefinitionId(value); return *this;} /** * The ID of the Lambda function definition. */ inline DeleteFunctionDefinitionRequest& WithFunctionDefinitionId(Aws::String&& value) { SetFunctionDefinitionId(std::move(value)); return *this;} /** * The ID of the Lambda function definition. */ inline DeleteFunctionDefinitionRequest& WithFunctionDefinitionId(const char* value) { SetFunctionDefinitionId(value); return *this;} private: Aws::String m_functionDefinitionId; bool m_functionDefinitionIdHasBeenSet = false; }; } // namespace Model } // namespace Greengrass } // namespace Aws