interface AutoSnapshotAddOnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lightsail.Mixins.CfnDiskPropsMixin.AutoSnapshotAddOnProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslightsail/mixins#CfnDiskPropsMixin_AutoSnapshotAddOnProperty |
Java | software.amazon.awscdk.mixins.preview.services.lightsail.mixins.CfnDiskPropsMixin.AutoSnapshotAddOnProperty |
Python | aws_cdk.mixins_preview.aws_lightsail.mixins.CfnDiskPropsMixin.AutoSnapshotAddOnProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lightsail » mixins » CfnDiskPropsMixin » AutoSnapshotAddOnProperty |
AutoSnapshotAddOn is a property of the AddOn property. It describes the automatic snapshot add-on for a disk.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as lightsail_mixins } from '@aws-cdk/mixins-preview/aws-lightsail';
const autoSnapshotAddOnProperty: lightsail_mixins.CfnDiskPropsMixin.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.

.NET
Go
Java
Python
TypeScript