Interface CfnDisk.AddOnProperty

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

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

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.lightsail.*;
 AddOnProperty addOnProperty = AddOnProperty.builder()
         .addOnType("addOnType")
         // the properties below are optional
         .autoSnapshotAddOnRequest(AutoSnapshotAddOnProperty.builder()
                 .snapshotTimeOfDay("snapshotTimeOfDay")
                 .build())
         .status("status")
         .build();
 

See Also: