Class CfnCapability.EdiConfigurationProperty
Specifies the details for the EDI (electronic data interchange) transformation.
Inheritance
Implements
Namespace: Amazon.CDK.AwsB2Bi
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class EdiConfigurationProperty : Object, CfnCapability.IEdiConfigurationProperty
Syntax (vb)
Public Class EdiConfigurationProperty
Inherits Object
Implements CfnCapability.IEdiConfigurationProperty
Remarks
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 ediConfigurationProperty = new EdiConfigurationProperty {
InputLocation = new S3LocationProperty {
BucketName = "bucketName",
Key = "key"
},
OutputLocation = new S3LocationProperty {
BucketName = "bucketName",
Key = "key"
},
TransformerId = "transformerId",
Type = new EdiTypeProperty {
X12Details = new X12DetailsProperty {
TransactionSet = "transactionSet",
Version = "version"
}
},
// the properties below are optional
CapabilityDirection = "capabilityDirection"
};
Synopsis
Constructors
Edi |
Properties
Capability |
Specifies whether this is capability is for inbound or outbound transformations. |
Input |
Contains the Amazon S3 bucket and prefix for the location of the input file, which is contained in an |
Output |
Contains the Amazon S3 bucket and prefix for the location of the output file, which is contained in an |
Transformer |
Returns the system-assigned unique identifier for the transformer. |
Type | Returns the type of the capability. |
Constructors
EdiConfigurationProperty()
public EdiConfigurationProperty()
Properties
CapabilityDirection
Specifies whether this is capability is for inbound or outbound transformations.
public string CapabilityDirection { get; set; }
Property Value
System.
Remarks
InputLocation
Contains the Amazon S3 bucket and prefix for the location of the input file, which is contained in an S3Location
object.
public object InputLocation { get; set; }
Property Value
System.
Remarks
OutputLocation
Contains the Amazon S3 bucket and prefix for the location of the output file, which is contained in an S3Location
object.
public object OutputLocation { get; set; }
Property Value
System.
Remarks
TransformerId
Returns the system-assigned unique identifier for the transformer.
public string TransformerId { get; set; }
Property Value
System.
Remarks
Type
Returns the type of the capability.
public object Type { get; set; }
Property Value
System.
Remarks
Currently, only edi
is supported.