Interface CfnFunctionDefinitionPropsMixin.IRunAsProperty
The access identity whose permissions are used to run the Lambda function.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Greengrass
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnFunctionDefinitionPropsMixin.IRunAsProperty
Syntax (vb)
Public Interface CfnFunctionDefinitionPropsMixin.IRunAsProperty
Remarks
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 Developer Guide .
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 <a href="https://docs.aws.amazon.com/greengrass/v1/developerguide/lambda-group-config.html#lambda-running-as-root">Running a Lambda Function as Root</a> .
In an CloudFormation template, RunAs is a property of the Execution property type.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Greengrass;
var runAsProperty = new RunAsProperty {
Gid = 123,
Uid = 123
};
Synopsis
Properties
| Gid | The group ID whose permissions are used to run the Lambda function. |
| Uid | The user ID whose permissions are used to run the Lambda function. |
Properties
Gid
The group ID whose permissions are used to run the Lambda function.
double? Gid { get; }
Property Value
Remarks
You can use the getent group command on your core device to look up the group ID.
Uid
The user ID whose permissions are used to run the Lambda function.
double? Uid { get; }
Property Value
Remarks
You can use the getent passwd command on your core device to look up the user ID.