AWS::Greengrass::FunctionDefinitionVersion RunAs - Amazon CloudFormation
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

AWS::Greengrass::FunctionDefinitionVersion RunAs

The user and group permissions used to run the Lambda function. This setting overrides the default access identity that's specified for the group (by default, ggc_user and ggc_group). You can override the user, group, or both. For more information, see Run as in the Amazon IoT Greengrass Version 1 Developer Guide .

Important

Running as the root user increases risks to your data and device. Do not run as root (UID/GID=0) unless your business case requires it. For more information and requirements, see Running a Lambda Function as Root.

In an Amazon CloudFormation template, RunAs is a property of the Execution property type.

Syntax

To declare this entity in your Amazon CloudFormation template, use the following syntax:

JSON

{ "Gid" : Integer, "Uid" : Integer }

YAML

Gid: Integer Uid: Integer

Properties

Gid

The group ID whose permissions are used to run the Lambda function. You can use the getent group command on your core device to look up the group ID.

Required: No

Type: Integer

Update requires: Replacement

Uid

The user ID whose permissions are used to run the Lambda function. You can use the getent passwd command on your core device to look up the user ID.

Required: No

Type: Integer

Update requires: Replacement

See also