Interface CfnTransformerProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransformerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.94.0 (build b380f01)",
date="2024-03-14T22:21:50.695Z")
@Stability(Stable)
public interface CfnTransformerProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnTransformer.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.b2bi.*;
CfnTransformerProps cfnTransformerProps = CfnTransformerProps.builder()
.ediType(EdiTypeProperty.builder()
.x12Details(X12DetailsProperty.builder()
.transactionSet("transactionSet")
.version("version")
.build())
.build())
.fileFormat("fileFormat")
.mappingTemplate("mappingTemplate")
.name("name")
.status("status")
// the properties below are optional
.sampleDocument("sampleDocument")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTransformerPropsstatic final classAn implementation forCfnTransformerProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnTransformerProps.Builderbuilder()Returns the details for the EDI standard that is being used for the transformer.Returns that the currently supported file formats for EDI transformations areJSONandXML.Returns a sample EDI document that is used by a transformer as a guide for processing the EDI data.getName()Returns the descriptive name for the transformer.default StringReturns a sample EDI document that is used by a transformer as a guide for processing the EDI data.Returns the state of the newly created transformer.getTags()A key-value pair for a specific transformer.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEdiType
Returns the details for the EDI standard that is being used for the transformer.Currently, only X12 is supported. X12 is a set of standards and corresponding messages that define specific business documents.
- See Also:
-
getFileFormat
Returns that the currently supported file formats for EDI transformations areJSONandXML.- See Also:
-
getMappingTemplate
Returns a sample EDI document that is used by a transformer as a guide for processing the EDI data.- See Also:
-
getName
Returns the descriptive name for the transformer.- See Also:
-
getStatus
Returns the state of the newly created transformer.The transformer can be either
activeorinactive. For the transformer to be used in a capability, its status mustactive.- See Also:
-
getSampleDocument
Returns a sample EDI document that is used by a transformer as a guide for processing the EDI data.- See Also:
-
getTags
A key-value pair for a specific transformer.Tags are metadata that you can use to search for and group capabilities for various purposes.
- See Also:
-
builder
- Returns:
- a
CfnTransformerProps.BuilderofCfnTransformerProps
-