public static interface CfnResourceDefinition.LocalDeviceResourceDataProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnResourceDefinition.LocalDeviceResourceDataProperty.Builder
A builder for
CfnResourceDefinition.LocalDeviceResourceDataProperty |
static class |
CfnResourceDefinition.LocalDeviceResourceDataProperty.Jsii$Proxy
An implementation for
CfnResourceDefinition.LocalDeviceResourceDataProperty |
Modifier and Type | Method and Description |
---|---|
static CfnResourceDefinition.LocalDeviceResourceDataProperty.Builder |
builder() |
default java.lang.Object |
getGroupOwnerSetting()
Settings that define additional Linux OS group permissions to give to the Lambda function process.
|
java.lang.String |
getSourcePath()
The local absolute path of the device resource.
|
java.lang.String getSourcePath()
The source path for a device resource can refer only to a character device or block device under /dev
.
default java.lang.Object getGroupOwnerSetting()