Module Values.StartImportFileTaskRequestSource

Starts a file import.

Sourcetype nonrec t = {
  1. s3Bucket : ImportS3Bucket.t;
    (*

    The S3 bucket where the import file is located. The bucket name is required to begin with migrationhub-strategy-.

    *)
  2. dataSourceType : DataSourceType.t option;
    (*

    Specifies the source that the servers are coming from. By default, Strategy Recommendations assumes that the servers specified in the import file are available in AWS Application Discovery Service.

    *)
  3. groupId : GroupIds.t option;
    (*

    Groups the resources in the import file together with a unique name. This ID can be as filter in ListApplicationComponents and ListServers.

    *)
  4. name : StartImportFileTaskRequestNameString.t;
    (*

    A descriptive name for the request.

    *)
  5. s3bucketForReportData : StartImportFileTaskRequestS3bucketForReportDataString.t option;
    (*

    The S3 bucket where Strategy Recommendations uploads import results. The bucket name is required to begin with migrationhub-strategy-.

    *)
  6. s3key : String_.t;
    (*

    The Amazon S3 key name of the import file.

    *)
}
Sourceval context_ : string
Sourceval make : ?dataSourceType:??? -> ?groupId:??? -> ?s3bucketForReportData:??? -> s3Bucket:ImportS3Bucket.t -> name:StartImportFileTaskRequestNameString.t -> s3key:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `String of ImportS3Bucket.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