Module Values.RecoveryPointCreatorSource

Contains information about the backup plan and rule that Backup used to initiate the recovery point backup.

Sourcetype nonrec t = {
  1. backupPlanId : string option;
    (*

    Uniquely identifies a backup plan.

    *)
  2. backupPlanArn : ARN.t option;
    (*

    An Amazon Resource Name (ARN) that uniquely identifies a backup plan; for example, arn:aws:backup:us-east-1:123456789012:plan:8F81F553-3A74-4A3F-B93D-B3360DC80C50.

    *)
  3. backupPlanName : string option;
    (*

    The name of the backup plan that created this recovery point. This provides human-readable context about which backup plan was responsible for the backup job.

    *)
  4. backupPlanVersion : string option;
    (*

    Version IDs are unique, randomly generated, Unicode, UTF-8 encoded strings that are at most 1,024 bytes long. They cannot be edited.

    *)
  5. backupRuleId : string option;
    (*

    Uniquely identifies a rule used to schedule the backup of a selection of resources.

    *)
  6. backupRuleName : string option;
    (*

    The name of the backup rule within the backup plan that created this recovery point. This helps identify which specific rule triggered the backup job.

    *)
  7. backupRuleCron : string option;
    (*

    The cron expression that defines the schedule for the backup rule. This shows the frequency and timing of when backups are automatically triggered.

    *)
  8. backupRuleTimezone : string option;
    (*

    The timezone used for the backup rule schedule. This provides context for when backups are scheduled to run in the specified timezone.

    *)
}
Sourceval make : ?backupPlanId:??? -> ?backupPlanArn:??? -> ?backupPlanName:??? -> ?backupPlanVersion:??? -> ?backupRuleId:??? -> ?backupRuleName:??? -> ?backupRuleCron:??? -> ?backupRuleTimezone:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t