Interface CfnDeployment.ComponentDeploymentSpecificationProperty

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

@Stability(Stable) public static interface CfnDeployment.ComponentDeploymentSpecificationProperty extends software.amazon.jsii.JsiiSerializable
Contains information about a component to deploy.

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.*;
 ComponentDeploymentSpecificationProperty componentDeploymentSpecificationProperty = ComponentDeploymentSpecificationProperty.builder()
         .componentVersion("componentVersion")
         .configurationUpdate(ComponentConfigurationUpdateProperty.builder()
                 .merge("merge")
                 .reset(List.of("reset"))
                 .build())
         .runWith(ComponentRunWithProperty.builder()
                 .posixUser("posixUser")
                 .systemResourceLimits(SystemResourceLimitsProperty.builder()
                         .cpus(123)
                         .memory(123)
                         .build())
                 .windowsUser("windowsUser")
                 .build())
         .build();