Interface CfnResourceDefinitionVersion.GroupOwnerSettingProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnResourceDefinitionVersion.GroupOwnerSettingProperty.Jsii$Proxy
Enclosing class:
CfnResourceDefinitionVersion

@Stability(Stable) public static interface CfnResourceDefinitionVersion.GroupOwnerSettingProperty extends software.amazon.jsii.JsiiSerializable
Settings that define additional Linux OS group permissions to give to the Lambda function process.

You can give the permissions of the Linux group that owns the resource or choose another Linux group. These permissions are in addition to the function's RunAs permissions.

In an AWS CloudFormation template, GroupOwnerSetting is a property of the LocalDeviceResourceData and LocalVolumeResourceData property types.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.greengrass.*;
 GroupOwnerSettingProperty groupOwnerSettingProperty = GroupOwnerSettingProperty.builder()
         .autoAddGroupOwner(false)
         // the properties below are optional
         .groupOwner("groupOwner")
         .build();