84 lines
2.7 KiB
C
84 lines
2.7 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/greengrass/Greengrass_EXPORTS.h>
|
|||
|
|
#include <aws/greengrass/GreengrassRequest.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Greengrass
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
*/
|
|||
|
|
class AWS_GREENGRASS_API GetFunctionDefinitionRequest : public GreengrassRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
GetFunctionDefinitionRequest();
|
|||
|
|
|
|||
|
|
// 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 "GetFunctionDefinition"; }
|
|||
|
|
|
|||
|
|
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 GetFunctionDefinitionRequest& WithFunctionDefinitionId(const Aws::String& value) { SetFunctionDefinitionId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* The ID of the Lambda function definition.
|
|||
|
|
*/
|
|||
|
|
inline GetFunctionDefinitionRequest& WithFunctionDefinitionId(Aws::String&& value) { SetFunctionDefinitionId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* The ID of the Lambda function definition.
|
|||
|
|
*/
|
|||
|
|
inline GetFunctionDefinitionRequest& WithFunctionDefinitionId(const char* value) { SetFunctionDefinitionId(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_functionDefinitionId;
|
|||
|
|
bool m_functionDefinitionIdHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Greengrass
|
|||
|
|
} // namespace Aws
|