Interface CfnInstance.AutoSnapshotAddOnProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnInstance.AutoSnapshotAddOnProperty.Jsii$Proxy
- Enclosing class:
- CfnInstance
@Stability(Stable)
public static interface CfnInstance.AutoSnapshotAddOnProperty
extends software.amazon.jsii.JsiiSerializable
AutoSnapshotAddOn is a property of the AddOn property. It describes the automatic snapshot add-on 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.services.lightsail.*;
 AutoSnapshotAddOnProperty autoSnapshotAddOnProperty = AutoSnapshotAddOnProperty.builder()
         .snapshotTimeOfDay("snapshotTimeOfDay")
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnInstance.AutoSnapshotAddOnPropertystatic final classAn implementation forCfnInstance.AutoSnapshotAddOnProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getSnapshotTimeOfDayThe daily time when an automatic snapshot will be created.Constraints: - Must be in HH:00format, and in an hourly increment.
- Specified in Coordinated Universal Time (UTC).
- The snapshot will be automatically created between the time specified and up to 45 minutes after.
 - See Also:
 
- Must be in 
- 
builder
 
-