Interface TestMappingRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,B2BiRequest.Builder,Buildable,CopyableBuilder<TestMappingRequest.Builder,TestMappingRequest>,SdkBuilder<TestMappingRequest.Builder,TestMappingRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- TestMappingRequest
public static interface TestMappingRequest.Builder extends B2BiRequest.Builder, SdkPojo, CopyableBuilder<TestMappingRequest.Builder,TestMappingRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TestMappingRequest.BuilderfileFormat(String fileFormat)Specifies that the currently supported file formats for EDI transformations areJSONandXML.TestMappingRequest.BuilderfileFormat(FileFormat fileFormat)Specifies that the currently supported file formats for EDI transformations areJSONandXML.TestMappingRequest.BuilderinputFileContent(String inputFileContent)Specify the contents of the EDI (electronic data interchange) XML or JSON file that is used as input for the transform.TestMappingRequest.BuildermappingTemplate(String mappingTemplate)Specifies the mapping template for the transformer.TestMappingRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)TestMappingRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.b2bi.model.B2BiRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
inputFileContent
TestMappingRequest.Builder inputFileContent(String inputFileContent)
Specify the contents of the EDI (electronic data interchange) XML or JSON file that is used as input for the transform.
- Parameters:
inputFileContent- Specify the contents of the EDI (electronic data interchange) XML or JSON file that is used as input for the transform.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mappingTemplate
TestMappingRequest.Builder mappingTemplate(String mappingTemplate)
Specifies the mapping template for the transformer. This template is used to map the parsed EDI file using JSONata or XSLT.
This parameter is available for backwards compatibility. Use the Mapping data type instead.
- Parameters:
mappingTemplate- Specifies the mapping template for the transformer. This template is used to map the parsed EDI file using JSONata or XSLT.This parameter is available for backwards compatibility. Use the Mapping data type instead.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileFormat
TestMappingRequest.Builder fileFormat(String fileFormat)
Specifies that the currently supported file formats for EDI transformations are
JSONandXML.- Parameters:
fileFormat- Specifies that the currently supported file formats for EDI transformations areJSONandXML.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FileFormat,FileFormat
-
fileFormat
TestMappingRequest.Builder fileFormat(FileFormat fileFormat)
Specifies that the currently supported file formats for EDI transformations are
JSONandXML.- Parameters:
fileFormat- Specifies that the currently supported file formats for EDI transformations areJSONandXML.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FileFormat,FileFormat
-
overrideConfiguration
TestMappingRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
TestMappingRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-