createBillOfMaterialsImportJob

CreateBillOfMaterialsImportJob creates an import job for the Product Bill Of Materials (BOM) entity. For information on the product_bom entity, see the AWS Supply Chain User Guide.

The CSV file must be located in an Amazon S3 location accessible to AWS Supply Chain. It is recommended to use the same Amazon S3 bucket created during your AWS Supply Chain instance creation.

Samples


fun main() { 
   //sampleStart 
   // Invoke CreateBillOfMaterialsImportJob
val resp = supplyChainClient.createBillOfMaterialsImportJob {
    instanceId = "60f82bbd-71f7-4fcd-a941-472f574c5243"
    s3Uri = "s3://mybucketname/pathelemene/file.csv"
    clientToken = "550e8400-e29b-41d4-a716-446655440000"
} 
   //sampleEnd
}