Module Values.AwsBackupRecoveryPointCreatedByDetailsSource

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

Sourcetype nonrec t = {
  1. backupPlanArn : NonEmptyString.t option;
    (*

    An Amazon Resource Name (ARN) that uniquely identifies a backup plan.

    *)
  2. backupPlanId : NonEmptyString.t option;
    (*

    Uniquely identifies a backup plan.

    *)
  3. backupPlanVersion : NonEmptyString.t option;
    (*

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

    *)
  4. backupRuleId : NonEmptyString.t option;
    (*

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

    *)
}
Sourceval make : ?backupPlanArn:??? -> ?backupPlanId:??? -> ?backupPlanVersion:??? -> ?backupRuleId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t ]) 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