Interface CfnResourceDefinition.LocalDeviceResourceDataProperty

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

@Stability(Stable) public static interface CfnResourceDefinition.LocalDeviceResourceDataProperty extends software.amazon.jsii.JsiiSerializable
Settings for a local device resource, which represents a file under /dev .

For more information, see Access Local Resources with Lambda Functions in the Developer Guide .

In an AWS CloudFormation template, LocalDeviceResourceData can be used in the ResourceDataContainer property type.

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.*;
 LocalDeviceResourceDataProperty localDeviceResourceDataProperty = LocalDeviceResourceDataProperty.builder()
         .sourcePath("sourcePath")
         // the properties below are optional
         .groupOwnerSetting(GroupOwnerSettingProperty.builder()
                 .autoAddGroupOwner(false)
                 // the properties below are optional
                 .groupOwner("groupOwner")
                 .build())
         .build();
 

See Also: