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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnInstance.AutoSnapshotAddOnProperty
static final class
An implementation forCfnInstance.AutoSnapshotAddOnProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSnapshotTimeOfDay
The daily time when an automatic snapshot will be created.Constraints:
- Must be in
HH:00
format, 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.
- Must be in
-
builder
-