Module Values.ScanJobCreatorSource

Contains identifying information about the creation of a scan job, including the backup plan and rule that initiated the scan.

Sourcetype nonrec t = {
  1. backupPlanArn : String_.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.

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

    The ID of the backup plan.

    *)
  3. backupPlanVersion : String_.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 : String_.t option;
    (*

    Uniquely identifies the backup rule that initiated the scan job.

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