interface X12AdvancedOptionsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_b2bi.CfnTransformer.X12AdvancedOptionsProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsb2bi#CfnTransformer_X12AdvancedOptionsProperty |
![]() | software.amazon.awscdk.services.b2bi.CfnTransformer.X12AdvancedOptionsProperty |
![]() | aws_cdk.aws_b2bi.CfnTransformer.X12AdvancedOptionsProperty |
![]() | aws-cdk-lib » aws_b2bi » CfnTransformer » X12AdvancedOptionsProperty |
Contains advanced options specific to X12 EDI processing, such as splitting large X12 files into smaller units.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_b2bi as b2bi } from 'aws-cdk-lib';
const x12AdvancedOptionsProperty: b2bi.CfnTransformer.X12AdvancedOptionsProperty = {
splitOptions: {
splitBy: 'splitBy',
},
validationOptions: {
validationRules: [{
codeListValidationRule: {
elementId: 'elementId',
// the properties below are optional
codesToAdd: ['codesToAdd'],
codesToRemove: ['codesToRemove'],
},
elementLengthValidationRule: {
elementId: 'elementId',
maxLength: 123,
minLength: 123,
},
elementRequirementValidationRule: {
elementPosition: 'elementPosition',
requirement: 'requirement',
},
}],
},
};
Properties
Name | Type | Description |
---|---|---|
split | IResolvable | X12 | Specifies options for splitting X12 EDI files. |
validation | IResolvable | X12 | Specifies validation options for X12 EDI processing. |
splitOptions?
Type:
IResolvable
|
X12
(optional)
Specifies options for splitting X12 EDI files.
These options control how large X12 files are divided into smaller, more manageable units.
validationOptions?
Type:
IResolvable
|
X12
(optional)
Specifies validation options for X12 EDI processing.
These options control how validation rules are applied during EDI document processing, including custom validation rules for element length constraints, code list validations, and element requirement checks.