Class: Aws::SupplyChain::Types::CreateBillOfMaterialsImportJobRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SupplyChain::Types::CreateBillOfMaterialsImportJobRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-supplychain/types.rb
Overview
The request parameters for CreateBillOfMaterialsImportJob.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
An idempotency token ensures the API request is only completed no more than once.
-
#instance_id ⇒ String
The AWS Supply Chain instance identifier.
-
#s3uri ⇒ String
The S3 URI of the CSV file to be imported.
Instance Attribute Details
#client_token ⇒ String
An idempotency token ensures the API request is only completed no more than once. This way, retrying the request will not trigger the operation multiple times. A client token is a unique, case-sensitive string of 33 to 128 ASCII characters. To make an idempotent API request, specify a client token in the request. You should not reuse the same client token for other requests. If you retry a successful request with the same client token, the request will succeed with no further actions being taken, and you will receive the same API response as the original successful request.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
102 103 104 105 106 107 108 |
# File 'lib/aws-sdk-supplychain/types.rb', line 102 class CreateBillOfMaterialsImportJobRequest < Struct.new( :instance_id, :s3uri, :client_token) SENSITIVE = [] include Aws::Structure end |
#instance_id ⇒ String
The AWS Supply Chain instance identifier.
102 103 104 105 106 107 108 |
# File 'lib/aws-sdk-supplychain/types.rb', line 102 class CreateBillOfMaterialsImportJobRequest < Struct.new( :instance_id, :s3uri, :client_token) SENSITIVE = [] include Aws::Structure end |
#s3uri ⇒ String
The S3 URI of the CSV file to be imported. The bucket must grant permissions for AWS Supply Chain to read the file.
102 103 104 105 106 107 108 |
# File 'lib/aws-sdk-supplychain/types.rb', line 102 class CreateBillOfMaterialsImportJobRequest < Struct.new( :instance_id, :s3uri, :client_token) SENSITIVE = [] include Aws::Structure end |