Interface CfnDeployment.ComponentRunWithProperty

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

@Stability(Stable) public static interface CfnDeployment.ComponentRunWithProperty extends software.amazon.jsii.JsiiSerializable
Contains information system user and group that the AWS IoT Greengrass Core software uses to run component processes on the core device.

For more information, see Configure the user and group that run components in the AWS IoT Greengrass V2 Developer Guide .

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.greengrassv2.*;
 ComponentRunWithProperty componentRunWithProperty = ComponentRunWithProperty.builder()
         .posixUser("posixUser")
         .systemResourceLimits(SystemResourceLimitsProperty.builder()
                 .cpus(123)
                 .memory(123)
                 .build())
         .windowsUser("windowsUser")
         .build();
 

See Also: