package awsdlm // *[Snapshot and AMI policies only]* Specifies when the policy should create snapshots or AMIs. // // > - You must specify either *CronExpression* , or *Interval* , *IntervalUnit* , and *Times* . // > - If you need to specify an `ArchiveRule` for the schedule, then you must specify a creation frequency of at least 28 days. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // createRuleProperty := &CreateRuleProperty{ // CronExpression: jsii.String("cronExpression"), // Interval: jsii.Number(123), // IntervalUnit: jsii.String("intervalUnit"), // Location: jsii.String("location"), // Times: []*string{ // jsii.String("times"), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-createrule.html // type CfnLifecyclePolicy_CreateRuleProperty struct { // The schedule, as a Cron expression. // // The schedule interval must be between 1 hour and 1 year. For more information, see [Cron expressions](https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html#CronExpressions) in the *Amazon CloudWatch User Guide* . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-createrule.html#cfn-dlm-lifecyclepolicy-createrule-cronexpression // CronExpression *string `field:"optional" json:"cronExpression" yaml:"cronExpression"` // The interval between snapshots. // // The supported values are 1, 2, 3, 4, 6, 8, 12, and 24. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-createrule.html#cfn-dlm-lifecyclepolicy-createrule-interval // Interval *float64 `field:"optional" json:"interval" yaml:"interval"` // The interval unit. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-createrule.html#cfn-dlm-lifecyclepolicy-createrule-intervalunit // IntervalUnit *string `field:"optional" json:"intervalUnit" yaml:"intervalUnit"` // *[Snapshot policies only]* Specifies the destination for snapshots created by the policy. // // To create snapshots in the same Region as the source resource, specify `CLOUD` . To create snapshots on the same Outpost as the source resource, specify `OUTPOST_LOCAL` . If you omit this parameter, `CLOUD` is used by default. // // If the policy targets resources in an AWS Region , then you must create snapshots in the same Region as the source resource. If the policy targets resources on an Outpost, then you can create snapshots on the same Outpost as the source resource, or in the Region of that Outpost. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-createrule.html#cfn-dlm-lifecyclepolicy-createrule-location // Location *string `field:"optional" json:"location" yaml:"location"` // The time, in UTC, to start the operation. The supported format is hh:mm. // // The operation occurs within a one-hour window following the specified time. If you do not specify a time, Amazon Data Lifecycle Manager selects a time within the next 24 hours. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-createrule.html#cfn-dlm-lifecyclepolicy-createrule-times // Times *[]*string `field:"optional" json:"times" yaml:"times"` }