Module Values.StartScanJobInputSource

Starts scanning jobs for specific resources.

Sourcetype nonrec t = {
  1. backupVaultName : String_.t;
    (*

    The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created. Pattern: ^[a-zA-Z0-9\-\_]{2,50}$

    *)
  2. iamRoleArn : String_.t;
    (*

    Specifies the IAM role ARN used to create the target recovery point; for example, arn:aws:iam::123456789012:role/S3Access.

    *)
  3. idempotencyToken : String_.t option;
    (*

    A customer-chosen string that you can use to distinguish between otherwise identical calls to StartScanJob. Retrying a successful request with the same idempotency token results in a success message with no action taken.

    *)
  4. malwareScanner : MalwareScanner.t;
    (*

    Specifies the malware scanner used during the scan job. Currently only supports GUARDDUTY.

    *)
  5. recoveryPointArn : String_.t;
    (*

    An Amazon Resource Name (ARN) that uniquely identifies a recovery point. This is your target recovery point for a full scan. If you are running an incremental scan, this will be your a recovery point which has been created after your base recovery point selection.

    *)
  6. scanBaseRecoveryPointArn : String_.t option;
    (*

    An ARN that uniquely identifies the base recovery point to be used for incremental scanning.

    *)
  7. scanMode : ScanMode.t;
    (*

    Specifies the scan type use for the scan job. Includes: FULL_SCAN will scan the entire data lineage within the backup. INCREMENTAL_SCAN will scan the data difference between the target recovery point and base recovery point ARN.

    *)
  8. scannerRoleArn : String_.t;
    (*

    Specified the IAM scanner role ARN.

    *)
}
Sourceval context_ : string
Sourceval make : ?idempotencyToken:??? -> ?scanBaseRecoveryPointArn:??? -> backupVaultName:String_.t -> iamRoleArn:String_.t -> malwareScanner:MalwareScanner.t -> recoveryPointArn:String_.t -> scanMode:ScanMode.t -> scannerRoleArn:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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