Show / Hide Table of Contents

Class CfnPartnership.X12ControlNumbersProperty

Contains configuration for X12 control numbers used in X12 EDI generation.

Inheritance
object
CfnPartnership.X12ControlNumbersProperty
Implements
CfnPartnership.IX12ControlNumbersProperty
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 CfnPartnership.X12ControlNumbersProperty : CfnPartnership.IX12ControlNumbersProperty
Syntax (vb)
Public Class CfnPartnership.X12ControlNumbersProperty Implements CfnPartnership.IX12ControlNumbersProperty
Remarks

Control numbers are used to uniquely identify interchanges, functional groups, and transaction sets.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12controlnumbers.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 x12ControlNumbersProperty = new X12ControlNumbersProperty {
                 StartingFunctionalGroupControlNumber = 123,
                 StartingInterchangeControlNumber = 123,
                 StartingTransactionSetControlNumber = 123
             };

Synopsis

Constructors

X12ControlNumbersProperty()

Contains configuration for X12 control numbers used in X12 EDI generation.

Properties

StartingFunctionalGroupControlNumber

Specifies the starting functional group control number (GS06) to use for X12 EDI generation.

StartingInterchangeControlNumber

Specifies the starting interchange control number (ISA13) to use for X12 EDI generation.

StartingTransactionSetControlNumber

Specifies the starting transaction set control number (ST02) to use for X12 EDI generation.

Constructors

X12ControlNumbersProperty()

Contains configuration for X12 control numbers used in X12 EDI generation.

public X12ControlNumbersProperty()
Remarks

Control numbers are used to uniquely identify interchanges, functional groups, and transaction sets.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12controlnumbers.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 x12ControlNumbersProperty = new X12ControlNumbersProperty {
                 StartingFunctionalGroupControlNumber = 123,
                 StartingInterchangeControlNumber = 123,
                 StartingTransactionSetControlNumber = 123
             };

Properties

StartingFunctionalGroupControlNumber

Specifies the starting functional group control number (GS06) to use for X12 EDI generation.

public double? StartingFunctionalGroupControlNumber { get; set; }
Property Value

double?

Remarks

This number is incremented for each new functional group. For the GS (functional group) envelope, AWS B2B Data Interchange generates a functional group control number that is unique to the sender ID, receiver ID, and functional identifier code combination.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12controlnumbers.html#cfn-b2bi-partnership-x12controlnumbers-startingfunctionalgroupcontrolnumber

StartingInterchangeControlNumber

Specifies the starting interchange control number (ISA13) to use for X12 EDI generation.

public double? StartingInterchangeControlNumber { get; set; }
Property Value

double?

Remarks

This number is incremented for each new interchange. For the ISA (interchange) envelope, AWS B2B Data Interchange generates an interchange control number that is unique for the ISA05 and ISA06 (sender) & ISA07 and ISA08 (receiver) combination.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12controlnumbers.html#cfn-b2bi-partnership-x12controlnumbers-startinginterchangecontrolnumber

StartingTransactionSetControlNumber

Specifies the starting transaction set control number (ST02) to use for X12 EDI generation.

public double? StartingTransactionSetControlNumber { get; set; }
Property Value

double?

Remarks

This number is incremented for each new transaction set.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12controlnumbers.html#cfn-b2bi-partnership-x12controlnumbers-startingtransactionsetcontrolnumber

Implements

CfnPartnership.IX12ControlNumbersProperty
Back to top Generated by DocFX