/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains parameters for a Linux process that contains an Lambda
* function.See Also:
AWS
* API Reference
The isolation mode for the process that contains the Lambda function. The * process can run in an isolated runtime environment inside the IoT Greengrass * container, or as a regular process outside any container.
Default:
* GreengrassContainer
The isolation mode for the process that contains the Lambda function. The * process can run in an isolated runtime environment inside the IoT Greengrass * container, or as a regular process outside any container.
Default:
* GreengrassContainer
The isolation mode for the process that contains the Lambda function. The * process can run in an isolated runtime environment inside the IoT Greengrass * container, or as a regular process outside any container.
Default:
* GreengrassContainer
The isolation mode for the process that contains the Lambda function. The * process can run in an isolated runtime environment inside the IoT Greengrass * container, or as a regular process outside any container.
Default:
* GreengrassContainer
The isolation mode for the process that contains the Lambda function. The * process can run in an isolated runtime environment inside the IoT Greengrass * container, or as a regular process outside any container.
Default:
* GreengrassContainer
The isolation mode for the process that contains the Lambda function. The * process can run in an isolated runtime environment inside the IoT Greengrass * container, or as a regular process outside any container.
Default:
* GreengrassContainer
The parameters for the container in which the Lambda function runs.
*/ inline const LambdaContainerParams& GetContainerParams() const{ return m_containerParams; } /** *The parameters for the container in which the Lambda function runs.
*/ inline bool ContainerParamsHasBeenSet() const { return m_containerParamsHasBeenSet; } /** *The parameters for the container in which the Lambda function runs.
*/ inline void SetContainerParams(const LambdaContainerParams& value) { m_containerParamsHasBeenSet = true; m_containerParams = value; } /** *The parameters for the container in which the Lambda function runs.
*/ inline void SetContainerParams(LambdaContainerParams&& value) { m_containerParamsHasBeenSet = true; m_containerParams = std::move(value); } /** *The parameters for the container in which the Lambda function runs.
*/ inline LambdaLinuxProcessParams& WithContainerParams(const LambdaContainerParams& value) { SetContainerParams(value); return *this;} /** *The parameters for the container in which the Lambda function runs.
*/ inline LambdaLinuxProcessParams& WithContainerParams(LambdaContainerParams&& value) { SetContainerParams(std::move(value)); return *this;} private: LambdaIsolationMode m_isolationMode; bool m_isolationModeHasBeenSet = false; LambdaContainerParams m_containerParams; bool m_containerParamsHasBeenSet = false; }; } // namespace Model } // namespace GreengrassV2 } // namespace Aws