Interface CfnInstancePropsMixin.AddOnProperty

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

@Stability(Stable) public static interface CfnInstancePropsMixin.AddOnProperty extends software.amazon.jsii.JsiiSerializable
AddOn is a property of the AWS::Lightsail::Instance resource. It describes the add-ons for an instance.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.lightsail.*;
 AddOnProperty addOnProperty = AddOnProperty.builder()
         .addOnType("addOnType")
         .autoSnapshotAddOnRequest(AutoSnapshotAddOnProperty.builder()
                 .snapshotTimeOfDay("snapshotTimeOfDay")
                 .build())
         .status("status")
         .build();
 

See Also: