Interface CfnDeployment.ComponentConfigurationUpdateProperty

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

@Stability(Stable) public static interface CfnDeployment.ComponentConfigurationUpdateProperty extends software.amazon.jsii.JsiiSerializable
Contains information about a deployment's update to a component's configuration on AWS IoT Greengrass core devices.

For more information, see Update component configurations 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.*;
 ComponentConfigurationUpdateProperty componentConfigurationUpdateProperty = ComponentConfigurationUpdateProperty.builder()
         .merge("merge")
         .reset(List.of("reset"))
         .build();
 
  • Method Details