Module Values.StartImportFileEnrichmentRequestSource

Starts an import file enrichment job to process and enrich network migration import files with additional metadata and IP assignment strategies.

Sourcetype nonrec t = {
  1. clientToken : ClientIdempotencyToken.t option;
    (*

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    *)
  2. s3BucketSource : EnrichmentSourceS3Configuration.t;
    (*

    The S3 configuration specifying the source location of the import file to be enriched.

    *)
  3. s3BucketTarget : EnrichmentTargetS3Configuration.t;
    (*

    The S3 configuration specifying the target location where the enriched import file will be stored.

    *)
  4. ipAssignmentStrategy : IpAssignmentStrategy.t option;
    (*

    The IP assignment strategy to use when enriching the import file. Can be STATIC or DYNAMIC.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?ipAssignmentStrategy:??? -> s3BucketSource:EnrichmentSourceS3Configuration.t -> s3BucketTarget:EnrichmentTargetS3Configuration.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ClientIdempotencyToken.t | `Structure of (string * [> `String of S3BucketName.t ]) list ]) 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