interface AutoSnapshotAddOnProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Lightsail.CfnInstance.AutoSnapshotAddOnProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awslightsail#CfnInstance_AutoSnapshotAddOnProperty | 
|  Java | software.amazon.awscdk.services.lightsail.CfnInstance.AutoSnapshotAddOnProperty | 
|  Python | aws_cdk.aws_lightsail.CfnInstance.AutoSnapshotAddOnProperty | 
|  TypeScript | aws-cdk-lib»aws_lightsail»CfnInstance»AutoSnapshotAddOnProperty | 
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 { aws_lightsail as lightsail } from 'aws-cdk-lib';
const autoSnapshotAddOnProperty: lightsail.CfnInstance.AutoSnapshotAddOnProperty = {
  snapshotTimeOfDay: 'snapshotTimeOfDay',
};
Properties
| Name | Type | Description | 
|---|---|---|
| snapshot | string | The daily time when an automatic snapshot will be created. | 
snapshotTimeOfDay?
Type:
string
(optional)
The 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.
