Show / Hide Table of Contents

Class CfnTransformer.X12SplitOptionsProperty

Contains options for splitting X12 EDI files into smaller units.

Inheritance
object
CfnTransformer.X12SplitOptionsProperty
Implements
CfnTransformer.IX12SplitOptionsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.B2BI
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTransformer.X12SplitOptionsProperty : CfnTransformer.IX12SplitOptionsProperty
Syntax (vb)
Public Class CfnTransformer.X12SplitOptionsProperty Implements CfnTransformer.IX12SplitOptionsProperty
Remarks

This is useful for processing large EDI files more efficiently.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12splitoptions.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.B2BI;

             var x12SplitOptionsProperty = new X12SplitOptionsProperty {
                 SplitBy = "splitBy"
             };

Synopsis

Constructors

X12SplitOptionsProperty()

Contains options for splitting X12 EDI files into smaller units.

Properties

SplitBy

Specifies the method used to split X12 EDI files.

Constructors

X12SplitOptionsProperty()

Contains options for splitting X12 EDI files into smaller units.

public X12SplitOptionsProperty()
Remarks

This is useful for processing large EDI files more efficiently.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12splitoptions.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.B2BI;

             var x12SplitOptionsProperty = new X12SplitOptionsProperty {
                 SplitBy = "splitBy"
             };

Properties

SplitBy

Specifies the method used to split X12 EDI files.

public string? SplitBy { get; set; }
Property Value

string

Remarks

Valid values include TRANSACTION (split by individual transaction sets), or NONE (no splitting).

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12splitoptions.html#cfn-b2bi-transformer-x12splitoptions-splitby

Implements

CfnTransformer.IX12SplitOptionsProperty
Back to top Generated by DocFX