@aws-sdk/client-b2bi 3.687.0 → 3.692.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -46,12 +46,12 @@ export interface S3Location {
46
46
  * <p>Specifies the name of the Amazon S3 bucket.</p>
47
47
  * @public
48
48
  */
49
- bucketName?: string;
49
+ bucketName?: string | undefined;
50
50
  /**
51
51
  * <p>Specifies the Amazon S3 key for the file location.</p>
52
52
  * @public
53
53
  */
54
- key?: string;
54
+ key?: string | undefined;
55
55
  }
56
56
  /**
57
57
  * @public
@@ -164,12 +164,12 @@ export interface X12Details {
164
164
  * <p>Returns an enumerated type where each value identifies an X12 transaction set. Transaction sets are maintained by the X12 Accredited Standards Committee.</p>
165
165
  * @public
166
166
  */
167
- transactionSet?: X12TransactionSet;
167
+ transactionSet?: X12TransactionSet | undefined;
168
168
  /**
169
169
  * <p>Returns the version to use for the specified X12 transaction set.</p>
170
170
  * @public
171
171
  */
172
- version?: X12Version;
172
+ version?: X12Version | undefined;
173
173
  }
174
174
  /**
175
175
  * <p>Specifies the details for the EDI standard that is being used for the transformer.
@@ -212,7 +212,7 @@ export interface EdiConfiguration {
212
212
  * <p>Specifies whether this is capability is for inbound or outbound transformations.</p>
213
213
  * @public
214
214
  */
215
- capabilityDirection?: CapabilityDirection;
215
+ capabilityDirection?: CapabilityDirection | undefined;
216
216
  /**
217
217
  * <p>Returns the type of the capability. Currently, only <code>edi</code> is supported.</p>
218
218
  * @public
@@ -316,17 +316,17 @@ export interface CreateCapabilityRequest {
316
316
  * <p>Specifies one or more locations in Amazon S3, each specifying an EDI document that can be used with this capability. Each item contains the name of the bucket and the key, to identify the document's location.</p>
317
317
  * @public
318
318
  */
319
- instructionsDocuments?: S3Location[];
319
+ instructionsDocuments?: S3Location[] | undefined;
320
320
  /**
321
321
  * <p>Reserved for future use.</p>
322
322
  * @public
323
323
  */
324
- clientToken?: string;
324
+ clientToken?: string | undefined;
325
325
  /**
326
326
  * <p>Specifies the key-value pairs assigned to ARNs that you can use to group and search for resources by type. You can attach this metadata to resources (capabilities, partnerships, and so on) for any purpose.</p>
327
327
  * @public
328
328
  */
329
- tags?: Tag[];
329
+ tags?: Tag[] | undefined;
330
330
  }
331
331
  /**
332
332
  * @public
@@ -361,7 +361,7 @@ export interface CreateCapabilityResponse {
361
361
  * <p>Returns one or more locations in Amazon S3, each specifying an EDI document that can be used with this capability. Each item contains the name of the bucket and the key, to identify the document's location.</p>
362
362
  * @public
363
363
  */
364
- instructionsDocuments?: S3Location[];
364
+ instructionsDocuments?: S3Location[] | undefined;
365
365
  /**
366
366
  * <p>Returns a timestamp for creation date and time of the capability.</p>
367
367
  * @public
@@ -380,7 +380,7 @@ export declare class InternalServerException extends __BaseException {
380
380
  * <p>The server attempts to retry a failed command.</p>
381
381
  * @public
382
382
  */
383
- retryAfterSeconds?: number;
383
+ retryAfterSeconds?: number | undefined;
384
384
  /**
385
385
  * @internal
386
386
  */
@@ -442,7 +442,7 @@ export declare class ThrottlingException extends __BaseException {
442
442
  * <p>The server attempts to retry a command that was throttled.</p>
443
443
  * @public
444
444
  */
445
- retryAfterSeconds?: number;
445
+ retryAfterSeconds?: number | undefined;
446
446
  /**
447
447
  * @internal
448
448
  */
@@ -514,7 +514,7 @@ export interface GetCapabilityResponse {
514
514
  * <p>Returns one or more locations in Amazon S3, each specifying an EDI document that can be used with this capability. Each item contains the name of the bucket and the key, to identify the document's location.</p>
515
515
  * @public
516
516
  */
517
- instructionsDocuments?: S3Location[];
517
+ instructionsDocuments?: S3Location[] | undefined;
518
518
  /**
519
519
  * <p>Returns a timestamp for creation date and time of the capability.</p>
520
520
  * @public
@@ -524,7 +524,7 @@ export interface GetCapabilityResponse {
524
524
  * <p>Returns a timestamp for last time the capability was modified.</p>
525
525
  * @public
526
526
  */
527
- modifiedAt?: Date;
527
+ modifiedAt?: Date | undefined;
528
528
  }
529
529
  /**
530
530
  * @public
@@ -535,12 +535,12 @@ export interface ListCapabilitiesRequest {
535
535
  * You can then pass the <code>NextToken</code> parameter in a subsequent command to continue listing additional resources.</p>
536
536
  * @public
537
537
  */
538
- nextToken?: string;
538
+ nextToken?: string | undefined;
539
539
  /**
540
540
  * <p>Specifies the maximum number of capabilities to return.</p>
541
541
  * @public
542
542
  */
543
- maxResults?: number;
543
+ maxResults?: number | undefined;
544
544
  }
545
545
  /**
546
546
  * <p>Returns the capability summary details. A trading capability contains the information required to transform incoming EDI documents into JSON or XML outputs.</p>
@@ -571,7 +571,7 @@ export interface CapabilitySummary {
571
571
  * <p>Returns a timestamp that identifies the most recent date and time that the capability was modified.</p>
572
572
  * @public
573
573
  */
574
- modifiedAt?: Date;
574
+ modifiedAt?: Date | undefined;
575
575
  }
576
576
  /**
577
577
  * @public
@@ -587,7 +587,7 @@ export interface ListCapabilitiesResponse {
587
587
  * You can then pass the <code>NextToken</code> parameter in a subsequent command to continue listing additional resources.</p>
588
588
  * @public
589
589
  */
590
- nextToken?: string;
590
+ nextToken?: string | undefined;
591
591
  }
592
592
  /**
593
593
  * @public
@@ -602,17 +602,17 @@ export interface UpdateCapabilityRequest {
602
602
  * <p>Specifies a new name for the capability, to replace the existing name.</p>
603
603
  * @public
604
604
  */
605
- name?: string;
605
+ name?: string | undefined;
606
606
  /**
607
607
  * <p>Specifies a structure that contains the details for a capability.</p>
608
608
  * @public
609
609
  */
610
- configuration?: CapabilityConfiguration;
610
+ configuration?: CapabilityConfiguration | undefined;
611
611
  /**
612
612
  * <p>Specifies one or more locations in Amazon S3, each specifying an EDI document that can be used with this capability. Each item contains the name of the bucket and the key, to identify the document's location.</p>
613
613
  * @public
614
614
  */
615
- instructionsDocuments?: S3Location[];
615
+ instructionsDocuments?: S3Location[] | undefined;
616
616
  }
617
617
  /**
618
618
  * @public
@@ -647,7 +647,7 @@ export interface UpdateCapabilityResponse {
647
647
  * <p>Returns one or more locations in Amazon S3, each specifying an EDI document that can be used with this capability. Each item contains the name of the bucket and the key, to identify the document's location.</p>
648
648
  * @public
649
649
  */
650
- instructionsDocuments?: S3Location[];
650
+ instructionsDocuments?: S3Location[] | undefined;
651
651
  /**
652
652
  * <p>Returns a timestamp for creation date and time of the capability.</p>
653
653
  * @public
@@ -657,7 +657,7 @@ export interface UpdateCapabilityResponse {
657
657
  * <p>Returns a timestamp for last time the capability was modified.</p>
658
658
  * @public
659
659
  */
660
- modifiedAt?: Date;
660
+ modifiedAt?: Date | undefined;
661
661
  }
662
662
  /**
663
663
  * @public
@@ -712,7 +712,7 @@ export interface CreateStarterMappingTemplateRequest {
712
712
  * <p>Specify the location of the sample EDI file that is used to generate the mapping template.</p>
713
713
  * @public
714
714
  */
715
- outputSampleLocation?: S3Location;
715
+ outputSampleLocation?: S3Location | undefined;
716
716
  /**
717
717
  * <p>Specify the format for the mapping template: either JSONATA or XSLT.</p>
718
718
  * @public
@@ -737,6 +737,42 @@ export interface CreateStarterMappingTemplateResponse {
737
737
  */
738
738
  mappingTemplate: string | undefined;
739
739
  }
740
+ /**
741
+ * @public
742
+ */
743
+ export interface GenerateMappingRequest {
744
+ /**
745
+ * <p>Provide the contents of a sample X12 EDI file (for inbound EDI) or JSON/XML file (for outbound EDI) to use as a starting point for the mapping.</p>
746
+ * @public
747
+ */
748
+ inputFileContent: string | undefined;
749
+ /**
750
+ * <p>Provide the contents of a sample X12 EDI file (for outbound EDI) or JSON/XML file (for inbound EDI) to use as a target for the mapping.</p>
751
+ * @public
752
+ */
753
+ outputFileContent: string | undefined;
754
+ /**
755
+ * <p>Specify the mapping type: either <code>JSONATA</code> or <code>XSLT.</code>
756
+ * </p>
757
+ * @public
758
+ */
759
+ mappingType: MappingType | undefined;
760
+ }
761
+ /**
762
+ * @public
763
+ */
764
+ export interface GenerateMappingResponse {
765
+ /**
766
+ * <p>Returns a mapping template based on your inputs.</p>
767
+ * @public
768
+ */
769
+ mappingTemplate: string | undefined;
770
+ /**
771
+ * <p>Returns a percentage that estimates the accuracy of the generated mapping.</p>
772
+ * @public
773
+ */
774
+ mappingAccuracy?: number | undefined;
775
+ }
740
776
  /**
741
777
  * @public
742
778
  */
@@ -781,13 +817,13 @@ export interface GetTransformerJobResponse {
781
817
  * generated by the service.</p>
782
818
  * @public
783
819
  */
784
- outputFiles?: S3Location[];
820
+ outputFiles?: S3Location[] | undefined;
785
821
  /**
786
822
  * <p>Returns an optional error message, which gets populated when the job is not run
787
823
  * successfully.</p>
788
824
  * @public
789
825
  */
790
- message?: string;
826
+ message?: string | undefined;
791
827
  }
792
828
  /**
793
829
  * @public
@@ -807,7 +843,7 @@ export interface ListTagsForResourceResponse {
807
843
  * <p>Returns the key-value pairs assigned to ARNs that you can use to group and search for resources by type. You can attach this metadata to resources (capabilities, partnerships, and so on) for any purpose.</p>
808
844
  * @public
809
845
  */
810
- Tags?: Tag[];
846
+ Tags?: Tag[] | undefined;
811
847
  }
812
848
  /**
813
849
  * <p>In X12 EDI messages, delimiters are used to mark the end of segments or elements, and are defined in the interchange control header.
@@ -819,17 +855,17 @@ export interface X12Delimiters {
819
855
  * <p>The component, or sub-element, separator. The default value is <code>:</code> (colon).</p>
820
856
  * @public
821
857
  */
822
- componentSeparator?: string;
858
+ componentSeparator?: string | undefined;
823
859
  /**
824
860
  * <p>The data element separator. The default value is <code>*</code> (asterisk).</p>
825
861
  * @public
826
862
  */
827
- dataElementSeparator?: string;
863
+ dataElementSeparator?: string | undefined;
828
864
  /**
829
865
  * <p>The segment terminator. The default value is <code>~</code> (tilde).</p>
830
866
  * @public
831
867
  */
832
- segmentTerminator?: string;
868
+ segmentTerminator?: string | undefined;
833
869
  }
834
870
  /**
835
871
  * <p>Part of the X12 message structure. These are the functional group headers for the X12 EDI object.</p>
@@ -840,17 +876,17 @@ export interface X12FunctionalGroupHeaders {
840
876
  * <p>A value representing the code used to identify the party transmitting a message, at position GS-02.</p>
841
877
  * @public
842
878
  */
843
- applicationSenderCode?: string;
879
+ applicationSenderCode?: string | undefined;
844
880
  /**
845
881
  * <p>A value representing the code used to identify the party receiving a message, at position GS-03.</p>
846
882
  * @public
847
883
  */
848
- applicationReceiverCode?: string;
884
+ applicationReceiverCode?: string | undefined;
849
885
  /**
850
886
  * <p>A code that identifies the issuer of the standard, at position GS-07.</p>
851
887
  * @public
852
888
  */
853
- responsibleAgencyCode?: string;
889
+ responsibleAgencyCode?: string | undefined;
854
890
  }
855
891
  /**
856
892
  * <p>In X12, the Interchange Control Header is the first segment of an EDI document and is
@@ -864,22 +900,22 @@ export interface X12InterchangeControlHeaders {
864
900
  * <p>Located at position ISA-05 in the header. Qualifier for the sender ID. Together, the ID and qualifier uniquely identify the sending trading partner.</p>
865
901
  * @public
866
902
  */
867
- senderIdQualifier?: string;
903
+ senderIdQualifier?: string | undefined;
868
904
  /**
869
905
  * <p>Located at position ISA-06 in the header. This value (along with the <code>senderIdQualifier</code>) identifies the sender of the interchange. </p>
870
906
  * @public
871
907
  */
872
- senderId?: string;
908
+ senderId?: string | undefined;
873
909
  /**
874
910
  * <p>Located at position ISA-07 in the header. Qualifier for the receiver ID. Together, the ID and qualifier uniquely identify the receiving trading partner.</p>
875
911
  * @public
876
912
  */
877
- receiverIdQualifier?: string;
913
+ receiverIdQualifier?: string | undefined;
878
914
  /**
879
915
  * <p>Located at position ISA-08 in the header. This value (along with the <code>receiverIdQualifier</code>) identifies the intended recipient of the interchange. </p>
880
916
  * @public
881
917
  */
882
- receiverId?: string;
918
+ receiverId?: string | undefined;
883
919
  /**
884
920
  * <p>Located at position ISA-11 in the header. This string makes it easier when you need to group similar adjacent element values together without using extra segments.</p>
885
921
  * <note>
@@ -889,12 +925,12 @@ export interface X12InterchangeControlHeaders {
889
925
  * </note>
890
926
  * @public
891
927
  */
892
- repetitionSeparator?: string;
928
+ repetitionSeparator?: string | undefined;
893
929
  /**
894
930
  * <p>Located at position ISA-14 in the header. The value "1" indicates that the sender is requesting an interchange acknowledgment at receipt of the interchange. The value "0" is used otherwise.</p>
895
931
  * @public
896
932
  */
897
- acknowledgmentRequestedCode?: string;
933
+ acknowledgmentRequestedCode?: string | undefined;
898
934
  /**
899
935
  * <p>Located at position ISA-15 in the header. Specifies how this interchange is being used:</p>
900
936
  * <ul>
@@ -913,7 +949,7 @@ export interface X12InterchangeControlHeaders {
913
949
  * </ul>
914
950
  * @public
915
951
  */
916
- usageIndicatorCode?: string;
952
+ usageIndicatorCode?: string | undefined;
917
953
  }
918
954
  /**
919
955
  * <p>A structure containing the details for an outbound EDI object.</p>
@@ -924,22 +960,22 @@ export interface X12OutboundEdiHeaders {
924
960
  * <p>In X12 EDI messages, delimiters are used to mark the end of segments or elements, and are defined in the interchange control header.</p>
925
961
  * @public
926
962
  */
927
- interchangeControlHeaders?: X12InterchangeControlHeaders;
963
+ interchangeControlHeaders?: X12InterchangeControlHeaders | undefined;
928
964
  /**
929
965
  * <p>The functional group headers for the X12 object.</p>
930
966
  * @public
931
967
  */
932
- functionalGroupHeaders?: X12FunctionalGroupHeaders;
968
+ functionalGroupHeaders?: X12FunctionalGroupHeaders | undefined;
933
969
  /**
934
970
  * <p>The delimiters, for example semicolon (<code>;</code>), that separates sections of the headers for the X12 object.</p>
935
971
  * @public
936
972
  */
937
- delimiters?: X12Delimiters;
973
+ delimiters?: X12Delimiters | undefined;
938
974
  /**
939
975
  * <p>Specifies whether or not to validate the EDI for this X12 object: <code>TRUE</code> or <code>FALSE</code>.</p>
940
976
  * @public
941
977
  */
942
- validateEdi?: boolean;
978
+ validateEdi?: boolean | undefined;
943
979
  }
944
980
  /**
945
981
  * <p>A wrapper structure for an X12 definition object.</p>
@@ -962,7 +998,7 @@ export interface X12Envelope {
962
998
  * <p>A container for the X12 outbound EDI headers.</p>
963
999
  * @public
964
1000
  */
965
- common?: X12OutboundEdiHeaders;
1001
+ common?: X12OutboundEdiHeaders | undefined;
966
1002
  }
967
1003
  /**
968
1004
  * <p>A container for outbound EDI options.</p>
@@ -1003,7 +1039,7 @@ export interface CapabilityOptions {
1003
1039
  * <p>A structure that contains the outbound EDI options.</p>
1004
1040
  * @public
1005
1041
  */
1006
- outboundEdi?: OutboundEdiOptions;
1042
+ outboundEdi?: OutboundEdiOptions | undefined;
1007
1043
  }
1008
1044
  /**
1009
1045
  * @public
@@ -1028,7 +1064,7 @@ export interface CreatePartnershipRequest {
1028
1064
  * <p>Specifies the phone number associated with the partnership.</p>
1029
1065
  * @public
1030
1066
  */
1031
- phone?: string;
1067
+ phone?: string | undefined;
1032
1068
  /**
1033
1069
  * <p>Specifies a list of the capabilities associated with this partnership.</p>
1034
1070
  * @public
@@ -1038,17 +1074,17 @@ export interface CreatePartnershipRequest {
1038
1074
  * <p>Specify the structure that contains the details for the associated capabilities.</p>
1039
1075
  * @public
1040
1076
  */
1041
- capabilityOptions?: CapabilityOptions;
1077
+ capabilityOptions?: CapabilityOptions | undefined;
1042
1078
  /**
1043
1079
  * <p>Reserved for future use.</p>
1044
1080
  * @public
1045
1081
  */
1046
- clientToken?: string;
1082
+ clientToken?: string | undefined;
1047
1083
  /**
1048
1084
  * <p>Specifies the key-value pairs assigned to ARNs that you can use to group and search for resources by type. You can attach this metadata to resources (capabilities, partnerships, and so on) for any purpose.</p>
1049
1085
  * @public
1050
1086
  */
1051
- tags?: Tag[];
1087
+ tags?: Tag[] | undefined;
1052
1088
  }
1053
1089
  /**
1054
1090
  * @public
@@ -1073,32 +1109,32 @@ export interface CreatePartnershipResponse {
1073
1109
  * <p>Returns a descriptive name for the partnership.</p>
1074
1110
  * @public
1075
1111
  */
1076
- name?: string;
1112
+ name?: string | undefined;
1077
1113
  /**
1078
1114
  * <p>Returns the email address associated with this trading partner.</p>
1079
1115
  * @public
1080
1116
  */
1081
- email?: string;
1117
+ email?: string | undefined;
1082
1118
  /**
1083
1119
  * <p>Returns the phone number associated with the partnership.</p>
1084
1120
  * @public
1085
1121
  */
1086
- phone?: string;
1122
+ phone?: string | undefined;
1087
1123
  /**
1088
1124
  * <p>Returns one or more capabilities associated with this partnership.</p>
1089
1125
  * @public
1090
1126
  */
1091
- capabilities?: string[];
1127
+ capabilities?: string[] | undefined;
1092
1128
  /**
1093
1129
  * <p>Returns the structure that contains the details for the associated capabilities.</p>
1094
1130
  * @public
1095
1131
  */
1096
- capabilityOptions?: CapabilityOptions;
1132
+ capabilityOptions?: CapabilityOptions | undefined;
1097
1133
  /**
1098
1134
  * <p>Returns the unique, system-generated identifier for a trading partner.</p>
1099
1135
  * @public
1100
1136
  */
1101
- tradingPartnerId?: string;
1137
+ tradingPartnerId?: string | undefined;
1102
1138
  /**
1103
1139
  * <p>Returns a timestamp for creation date and time of the partnership.</p>
1104
1140
  * @public
@@ -1148,32 +1184,32 @@ export interface GetPartnershipResponse {
1148
1184
  * <p>Returns the display name of the partnership</p>
1149
1185
  * @public
1150
1186
  */
1151
- name?: string;
1187
+ name?: string | undefined;
1152
1188
  /**
1153
1189
  * <p>Returns the email address associated with this trading partner.</p>
1154
1190
  * @public
1155
1191
  */
1156
- email?: string;
1192
+ email?: string | undefined;
1157
1193
  /**
1158
1194
  * <p>Returns the phone number associated with the partnership.</p>
1159
1195
  * @public
1160
1196
  */
1161
- phone?: string;
1197
+ phone?: string | undefined;
1162
1198
  /**
1163
1199
  * <p>Returns one or more capabilities associated with this partnership.</p>
1164
1200
  * @public
1165
1201
  */
1166
- capabilities?: string[];
1202
+ capabilities?: string[] | undefined;
1167
1203
  /**
1168
1204
  * <p>Contains the details for an Outbound EDI capability.</p>
1169
1205
  * @public
1170
1206
  */
1171
- capabilityOptions?: CapabilityOptions;
1207
+ capabilityOptions?: CapabilityOptions | undefined;
1172
1208
  /**
1173
1209
  * <p>Returns the unique identifier for the partner for this partnership.</p>
1174
1210
  * @public
1175
1211
  */
1176
- tradingPartnerId?: string;
1212
+ tradingPartnerId?: string | undefined;
1177
1213
  /**
1178
1214
  * <p>Returns a timestamp for creation date and time of the partnership.</p>
1179
1215
  * @public
@@ -1183,7 +1219,7 @@ export interface GetPartnershipResponse {
1183
1219
  * <p>Returns a timestamp that identifies the most recent date and time that the partnership was modified.</p>
1184
1220
  * @public
1185
1221
  */
1186
- modifiedAt?: Date;
1222
+ modifiedAt?: Date | undefined;
1187
1223
  }
1188
1224
  /**
1189
1225
  * @public
@@ -1193,18 +1229,18 @@ export interface ListPartnershipsRequest {
1193
1229
  * <p>Specifies the unique, system-generated identifier for the profile connected to this partnership.</p>
1194
1230
  * @public
1195
1231
  */
1196
- profileId?: string;
1232
+ profileId?: string | undefined;
1197
1233
  /**
1198
1234
  * <p>When additional results are obtained from the command, a <code>NextToken</code> parameter is returned in the output.
1199
1235
  * You can then pass the <code>NextToken</code> parameter in a subsequent command to continue listing additional resources.</p>
1200
1236
  * @public
1201
1237
  */
1202
- nextToken?: string;
1238
+ nextToken?: string | undefined;
1203
1239
  /**
1204
1240
  * <p>Specifies the maximum number of capabilities to return.</p>
1205
1241
  * @public
1206
1242
  */
1207
- maxResults?: number;
1243
+ maxResults?: number | undefined;
1208
1244
  }
1209
1245
  /**
1210
1246
  * <p>A structure that contains the details for a partnership. A partnership represents the connection between you and your trading partner. It ties
@@ -1226,22 +1262,22 @@ export interface PartnershipSummary {
1226
1262
  * <p>Returns the name of the partnership.</p>
1227
1263
  * @public
1228
1264
  */
1229
- name?: string;
1265
+ name?: string | undefined;
1230
1266
  /**
1231
1267
  * <p>Returns one or more capabilities associated with this partnership.</p>
1232
1268
  * @public
1233
1269
  */
1234
- capabilities?: string[];
1270
+ capabilities?: string[] | undefined;
1235
1271
  /**
1236
1272
  * <p>Contains the details for an Outbound EDI capability.</p>
1237
1273
  * @public
1238
1274
  */
1239
- capabilityOptions?: CapabilityOptions;
1275
+ capabilityOptions?: CapabilityOptions | undefined;
1240
1276
  /**
1241
1277
  * <p>Returns the unique, system-generated identifier for a trading partner.</p>
1242
1278
  * @public
1243
1279
  */
1244
- tradingPartnerId?: string;
1280
+ tradingPartnerId?: string | undefined;
1245
1281
  /**
1246
1282
  * <p>Returns a timestamp for creation date and time of the partnership.</p>
1247
1283
  * @public
@@ -1251,7 +1287,7 @@ export interface PartnershipSummary {
1251
1287
  * <p>Returns a timestamp that identifies the most recent date and time that the partnership was modified.</p>
1252
1288
  * @public
1253
1289
  */
1254
- modifiedAt?: Date;
1290
+ modifiedAt?: Date | undefined;
1255
1291
  }
1256
1292
  /**
1257
1293
  * @public
@@ -1267,7 +1303,7 @@ export interface ListPartnershipsResponse {
1267
1303
  * You can then pass the <code>NextToken</code> parameter in a subsequent command to continue listing additional resources.</p>
1268
1304
  * @public
1269
1305
  */
1270
- nextToken?: string;
1306
+ nextToken?: string | undefined;
1271
1307
  }
1272
1308
  /**
1273
1309
  * @public
@@ -1282,17 +1318,17 @@ export interface UpdatePartnershipRequest {
1282
1318
  * <p>The name of the partnership, used to identify it.</p>
1283
1319
  * @public
1284
1320
  */
1285
- name?: string;
1321
+ name?: string | undefined;
1286
1322
  /**
1287
1323
  * <p>List of the capabilities associated with this partnership.</p>
1288
1324
  * @public
1289
1325
  */
1290
- capabilities?: string[];
1326
+ capabilities?: string[] | undefined;
1291
1327
  /**
1292
1328
  * <p>To update, specify the structure that contains the details for the associated capabilities.</p>
1293
1329
  * @public
1294
1330
  */
1295
- capabilityOptions?: CapabilityOptions;
1331
+ capabilityOptions?: CapabilityOptions | undefined;
1296
1332
  }
1297
1333
  /**
1298
1334
  * @public
@@ -1317,32 +1353,32 @@ export interface UpdatePartnershipResponse {
1317
1353
  * <p>The name of the partnership, used to identify it.</p>
1318
1354
  * @public
1319
1355
  */
1320
- name?: string;
1356
+ name?: string | undefined;
1321
1357
  /**
1322
1358
  * <p>Returns the email address associated with this trading partner.</p>
1323
1359
  * @public
1324
1360
  */
1325
- email?: string;
1361
+ email?: string | undefined;
1326
1362
  /**
1327
1363
  * <p>Returns the phone number associated with the partnership.</p>
1328
1364
  * @public
1329
1365
  */
1330
- phone?: string;
1366
+ phone?: string | undefined;
1331
1367
  /**
1332
1368
  * <p>Returns one or more capabilities associated with this partnership.</p>
1333
1369
  * @public
1334
1370
  */
1335
- capabilities?: string[];
1371
+ capabilities?: string[] | undefined;
1336
1372
  /**
1337
1373
  * <p>Returns the structure that contains the details for the associated capabilities.</p>
1338
1374
  * @public
1339
1375
  */
1340
- capabilityOptions?: CapabilityOptions;
1376
+ capabilityOptions?: CapabilityOptions | undefined;
1341
1377
  /**
1342
1378
  * <p>Returns the unique, system-generated identifier for a trading partner.</p>
1343
1379
  * @public
1344
1380
  */
1345
- tradingPartnerId?: string;
1381
+ tradingPartnerId?: string | undefined;
1346
1382
  /**
1347
1383
  * <p>Returns a timestamp that identifies the most recent date and time that the partnership was modified.</p>
1348
1384
  * @public
@@ -1352,7 +1388,7 @@ export interface UpdatePartnershipResponse {
1352
1388
  * <p>Returns a timestamp that identifies the most recent date and time that the partnership was modified.</p>
1353
1389
  * @public
1354
1390
  */
1355
- modifiedAt?: Date;
1391
+ modifiedAt?: Date | undefined;
1356
1392
  }
1357
1393
  /**
1358
1394
  * @public
@@ -1379,7 +1415,7 @@ export interface CreateProfileRequest {
1379
1415
  * <p>Specifies the email address associated with this customer profile.</p>
1380
1416
  * @public
1381
1417
  */
1382
- email?: string;
1418
+ email?: string | undefined;
1383
1419
  /**
1384
1420
  * <p>Specifies the phone number associated with the profile.</p>
1385
1421
  * @public
@@ -1399,12 +1435,12 @@ export interface CreateProfileRequest {
1399
1435
  * <p>Reserved for future use.</p>
1400
1436
  * @public
1401
1437
  */
1402
- clientToken?: string;
1438
+ clientToken?: string | undefined;
1403
1439
  /**
1404
1440
  * <p>Specifies the key-value pairs assigned to ARNs that you can use to group and search for resources by type. You can attach this metadata to resources (capabilities, partnerships, and so on) for any purpose.</p>
1405
1441
  * @public
1406
1442
  */
1407
- tags?: Tag[];
1443
+ tags?: Tag[] | undefined;
1408
1444
  }
1409
1445
  /**
1410
1446
  * @public
@@ -1439,17 +1475,17 @@ export interface CreateProfileResponse {
1439
1475
  * <p>Returns the email address associated with this customer profile.</p>
1440
1476
  * @public
1441
1477
  */
1442
- email?: string;
1478
+ email?: string | undefined;
1443
1479
  /**
1444
1480
  * <p>Returns whether or not logging is turned on for this profile.</p>
1445
1481
  * @public
1446
1482
  */
1447
- logging?: Logging;
1483
+ logging?: Logging | undefined;
1448
1484
  /**
1449
1485
  * <p>Returns the name of the logging group.</p>
1450
1486
  * @public
1451
1487
  */
1452
- logGroupName?: string;
1488
+ logGroupName?: string | undefined;
1453
1489
  /**
1454
1490
  * <p>Returns a timestamp representing the time the profile was created.</p>
1455
1491
  * @public
@@ -1499,7 +1535,7 @@ export interface GetProfileResponse {
1499
1535
  * <p>Returns the email address associated with this customer profile.</p>
1500
1536
  * @public
1501
1537
  */
1502
- email?: string;
1538
+ email?: string | undefined;
1503
1539
  /**
1504
1540
  * <p>Returns the phone number associated with the profile.</p>
1505
1541
  * @public
@@ -1514,12 +1550,12 @@ export interface GetProfileResponse {
1514
1550
  * <p>Returns whether or not logging is enabled for this profile.</p>
1515
1551
  * @public
1516
1552
  */
1517
- logging?: Logging;
1553
+ logging?: Logging | undefined;
1518
1554
  /**
1519
1555
  * <p>Returns the name of the logging group.</p>
1520
1556
  * @public
1521
1557
  */
1522
- logGroupName?: string;
1558
+ logGroupName?: string | undefined;
1523
1559
  /**
1524
1560
  * <p>Returns a timestamp for creation date and time of the transformer.</p>
1525
1561
  * @public
@@ -1529,7 +1565,7 @@ export interface GetProfileResponse {
1529
1565
  * <p>Returns a timestamp for last time the profile was modified.</p>
1530
1566
  * @public
1531
1567
  */
1532
- modifiedAt?: Date;
1568
+ modifiedAt?: Date | undefined;
1533
1569
  }
1534
1570
  /**
1535
1571
  * @public
@@ -1540,12 +1576,12 @@ export interface ListProfilesRequest {
1540
1576
  * You can then pass the <code>NextToken</code> parameter in a subsequent command to continue listing additional resources.</p>
1541
1577
  * @public
1542
1578
  */
1543
- nextToken?: string;
1579
+ nextToken?: string | undefined;
1544
1580
  /**
1545
1581
  * <p>Specifies the maximum number of profiles to return.</p>
1546
1582
  * @public
1547
1583
  */
1548
- maxResults?: number;
1584
+ maxResults?: number | undefined;
1549
1585
  }
1550
1586
  /**
1551
1587
  * <p>Contains the details for a profile. A profile is the mechanism used to create the concept of
@@ -1572,12 +1608,12 @@ export interface ProfileSummary {
1572
1608
  * <p>Specifies whether or not logging is enabled for this profile.</p>
1573
1609
  * @public
1574
1610
  */
1575
- logging?: Logging;
1611
+ logging?: Logging | undefined;
1576
1612
  /**
1577
1613
  * <p>Returns the name of the logging group.</p>
1578
1614
  * @public
1579
1615
  */
1580
- logGroupName?: string;
1616
+ logGroupName?: string | undefined;
1581
1617
  /**
1582
1618
  * <p>Returns the timestamp for creation date and time of the profile.</p>
1583
1619
  * @public
@@ -1587,7 +1623,7 @@ export interface ProfileSummary {
1587
1623
  * <p>Returns the timestamp that identifies the most recent date and time that the profile was modified.</p>
1588
1624
  * @public
1589
1625
  */
1590
- modifiedAt?: Date;
1626
+ modifiedAt?: Date | undefined;
1591
1627
  }
1592
1628
  /**
1593
1629
  * @public
@@ -1603,7 +1639,7 @@ export interface ListProfilesResponse {
1603
1639
  * You can then pass the <code>NextToken</code> parameter in a subsequent command to continue listing additional resources.</p>
1604
1640
  * @public
1605
1641
  */
1606
- nextToken?: string;
1642
+ nextToken?: string | undefined;
1607
1643
  }
1608
1644
  /**
1609
1645
  * @public
@@ -1618,22 +1654,22 @@ export interface UpdateProfileRequest {
1618
1654
  * <p>The name of the profile, used to identify it.</p>
1619
1655
  * @public
1620
1656
  */
1621
- name?: string;
1657
+ name?: string | undefined;
1622
1658
  /**
1623
1659
  * <p>Specifies the email address associated with this customer profile.</p>
1624
1660
  * @public
1625
1661
  */
1626
- email?: string;
1662
+ email?: string | undefined;
1627
1663
  /**
1628
1664
  * <p>Specifies the phone number associated with the profile.</p>
1629
1665
  * @public
1630
1666
  */
1631
- phone?: string;
1667
+ phone?: string | undefined;
1632
1668
  /**
1633
1669
  * <p>Specifies the name for the business associated with this profile.</p>
1634
1670
  * @public
1635
1671
  */
1636
- businessName?: string;
1672
+ businessName?: string | undefined;
1637
1673
  }
1638
1674
  /**
1639
1675
  * @public
@@ -1658,7 +1694,7 @@ export interface UpdateProfileResponse {
1658
1694
  * <p>Returns the email address associated with this customer profile.</p>
1659
1695
  * @public
1660
1696
  */
1661
- email?: string;
1697
+ email?: string | undefined;
1662
1698
  /**
1663
1699
  * <p>Returns the phone number associated with the profile.</p>
1664
1700
  * @public
@@ -1673,12 +1709,12 @@ export interface UpdateProfileResponse {
1673
1709
  * <p>Specifies whether or not logging is enabled for this profile.</p>
1674
1710
  * @public
1675
1711
  */
1676
- logging?: Logging;
1712
+ logging?: Logging | undefined;
1677
1713
  /**
1678
1714
  * <p>Returns the name of the logging group.</p>
1679
1715
  * @public
1680
1716
  */
1681
- logGroupName?: string;
1717
+ logGroupName?: string | undefined;
1682
1718
  /**
1683
1719
  * <p>Returns a timestamp for creation date and time of the profile.</p>
1684
1720
  * @public
@@ -1688,7 +1724,7 @@ export interface UpdateProfileResponse {
1688
1724
  * <p>Returns a timestamp for last time the profile was modified.</p>
1689
1725
  * @public
1690
1726
  */
1691
- modifiedAt?: Date;
1727
+ modifiedAt?: Date | undefined;
1692
1728
  }
1693
1729
  /**
1694
1730
  * @public
@@ -1713,7 +1749,7 @@ export interface StartTransformerJobRequest {
1713
1749
  * <p>Reserved for future use.</p>
1714
1750
  * @public
1715
1751
  */
1716
- clientToken?: string;
1752
+ clientToken?: string | undefined;
1717
1753
  }
1718
1754
  /**
1719
1755
  * @public
@@ -1887,13 +1923,13 @@ export interface ConversionTarget {
1887
1923
  * <p>A structure that contains the formatting details for the conversion target.</p>
1888
1924
  * @public
1889
1925
  */
1890
- formatDetails?: ConversionTargetFormatDetails;
1926
+ formatDetails?: ConversionTargetFormatDetails | undefined;
1891
1927
  /**
1892
1928
  * Customer uses this to provide a sample on what should file look like after conversion
1893
1929
  * X12 EDI use case around this would be discovering the file syntax
1894
1930
  * @public
1895
1931
  */
1896
- outputSampleFile?: OutputSampleFileSource;
1932
+ outputSampleFile?: OutputSampleFileSource | undefined;
1897
1933
  }
1898
1934
  /**
1899
1935
  * @public
@@ -1923,7 +1959,7 @@ export interface TestConversionResponse {
1923
1959
  * <p>Returns an array of strings, each containing a message that Amazon Web Services B2B Data Interchange generates during the conversion.</p>
1924
1960
  * @public
1925
1961
  */
1926
- validationMessages?: string[];
1962
+ validationMessages?: string[] | undefined;
1927
1963
  }
1928
1964
  /**
1929
1965
  * @public
@@ -2060,7 +2096,7 @@ export interface InputConversion {
2060
2096
  * <p>A structure that contains the formatting options for an inbound transformer.</p>
2061
2097
  * @public
2062
2098
  */
2063
- formatOptions?: FormatOptions;
2099
+ formatOptions?: FormatOptions | undefined;
2064
2100
  }
2065
2101
  /**
2066
2102
  * @public
@@ -2088,7 +2124,7 @@ export interface Mapping {
2088
2124
  * <p>A string that represents the mapping template, in the transformation language specified in <code>templateLanguage</code>.</p>
2089
2125
  * @public
2090
2126
  */
2091
- template?: string;
2127
+ template?: string | undefined;
2092
2128
  }
2093
2129
  /**
2094
2130
  * @public
@@ -2115,7 +2151,7 @@ export interface OutputConversion {
2115
2151
  * <p>A structure that contains the X12 transaction set and version for the transformer output.</p>
2116
2152
  * @public
2117
2153
  */
2118
- formatOptions?: FormatOptions;
2154
+ formatOptions?: FormatOptions | undefined;
2119
2155
  }
2120
2156
  /**
2121
2157
  * <p>An array of the Amazon S3 keys used to identify the location for your sample documents.</p>
@@ -2126,12 +2162,12 @@ export interface SampleDocumentKeys {
2126
2162
  * <p>An array of keys for your input sample documents.</p>
2127
2163
  * @public
2128
2164
  */
2129
- input?: string;
2165
+ input?: string | undefined;
2130
2166
  /**
2131
2167
  * <p>An array of keys for your output sample documents.</p>
2132
2168
  * @public
2133
2169
  */
2134
- output?: string;
2170
+ output?: string | undefined;
2135
2171
  }
2136
2172
  /**
2137
2173
  * <p>Describes a structure that contains the Amazon S3 bucket and an array of the corresponding keys used to identify the location for your sample documents.</p>
@@ -2162,19 +2198,19 @@ export interface CreateTransformerRequest {
2162
2198
  * <p>Reserved for future use.</p>
2163
2199
  * @public
2164
2200
  */
2165
- clientToken?: string;
2201
+ clientToken?: string | undefined;
2166
2202
  /**
2167
2203
  * <p>Specifies the key-value pairs assigned to ARNs that you can use to group and search for resources by type. You can attach this metadata to resources (capabilities, partnerships, and so on) for any purpose.</p>
2168
2204
  * @public
2169
2205
  */
2170
- tags?: Tag[];
2206
+ tags?: Tag[] | undefined;
2171
2207
  /**
2172
2208
  * @deprecated
2173
2209
  *
2174
2210
  * <p>Specifies that the currently supported file formats for EDI transformations are <code>JSON</code> and <code>XML</code>.</p>
2175
2211
  * @public
2176
2212
  */
2177
- fileFormat?: FileFormat;
2213
+ fileFormat?: FileFormat | undefined;
2178
2214
  /**
2179
2215
  * @deprecated
2180
2216
  *
@@ -2184,41 +2220,41 @@ export interface CreateTransformerRequest {
2184
2220
  * </note>
2185
2221
  * @public
2186
2222
  */
2187
- mappingTemplate?: string;
2223
+ mappingTemplate?: string | undefined;
2188
2224
  /**
2189
2225
  * @deprecated
2190
2226
  *
2191
2227
  * <p>Specifies 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.</p>
2192
2228
  * @public
2193
2229
  */
2194
- ediType?: EdiType;
2230
+ ediType?: EdiType | undefined;
2195
2231
  /**
2196
2232
  * @deprecated
2197
2233
  *
2198
2234
  * <p>Specifies a sample EDI document that is used by a transformer as a guide for processing the EDI data.</p>
2199
2235
  * @public
2200
2236
  */
2201
- sampleDocument?: string;
2237
+ sampleDocument?: string | undefined;
2202
2238
  /**
2203
2239
  * <p>Specify the <code>InputConversion</code> object, which contains the format options for the inbound transformation.</p>
2204
2240
  * @public
2205
2241
  */
2206
- inputConversion?: InputConversion;
2242
+ inputConversion?: InputConversion | undefined;
2207
2243
  /**
2208
2244
  * <p>Specify the structure that contains the mapping template and its language (either XSLT or JSONATA).</p>
2209
2245
  * @public
2210
2246
  */
2211
- mapping?: Mapping;
2247
+ mapping?: Mapping | undefined;
2212
2248
  /**
2213
2249
  * <p>A structure that contains the <code>OutputConversion</code> object, which contains the format options for the outbound transformation.</p>
2214
2250
  * @public
2215
2251
  */
2216
- outputConversion?: OutputConversion;
2252
+ outputConversion?: OutputConversion | undefined;
2217
2253
  /**
2218
2254
  * <p>Specify a structure that contains the Amazon S3 bucket and an array of the corresponding keys used to identify the location for your sample documents.</p>
2219
2255
  * @public
2220
2256
  */
2221
- sampleDocuments?: SampleDocuments;
2257
+ sampleDocuments?: SampleDocuments | undefined;
2222
2258
  }
2223
2259
  /**
2224
2260
  * @public
@@ -2269,48 +2305,48 @@ export interface CreateTransformerResponse {
2269
2305
  * <p>Returns that the currently supported file formats for EDI transformations are <code>JSON</code> and <code>XML</code>.</p>
2270
2306
  * @public
2271
2307
  */
2272
- fileFormat?: FileFormat;
2308
+ fileFormat?: FileFormat | undefined;
2273
2309
  /**
2274
2310
  * @deprecated
2275
2311
  *
2276
2312
  * <p>Returns the mapping template for the transformer. This template is used to map the parsed EDI file using JSONata or XSLT.</p>
2277
2313
  * @public
2278
2314
  */
2279
- mappingTemplate?: string;
2315
+ mappingTemplate?: string | undefined;
2280
2316
  /**
2281
2317
  * @deprecated
2282
2318
  *
2283
2319
  * <p>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.</p>
2284
2320
  * @public
2285
2321
  */
2286
- ediType?: EdiType;
2322
+ ediType?: EdiType | undefined;
2287
2323
  /**
2288
2324
  * @deprecated
2289
2325
  *
2290
2326
  * <p>Returns a sample EDI document that is used by a transformer as a guide for processing the EDI data.</p>
2291
2327
  * @public
2292
2328
  */
2293
- sampleDocument?: string;
2329
+ sampleDocument?: string | undefined;
2294
2330
  /**
2295
2331
  * <p>Returns the <code>InputConversion</code> object, which contains the format options for the inbound transformation.</p>
2296
2332
  * @public
2297
2333
  */
2298
- inputConversion?: InputConversion;
2334
+ inputConversion?: InputConversion | undefined;
2299
2335
  /**
2300
2336
  * <p>Returns the structure that contains the mapping template and its language (either XSLT or JSONATA).</p>
2301
2337
  * @public
2302
2338
  */
2303
- mapping?: Mapping;
2339
+ mapping?: Mapping | undefined;
2304
2340
  /**
2305
2341
  * <p>Returns the <code>OutputConversion</code> object, which contains the format options for the outbound transformation.</p>
2306
2342
  * @public
2307
2343
  */
2308
- outputConversion?: OutputConversion;
2344
+ outputConversion?: OutputConversion | undefined;
2309
2345
  /**
2310
2346
  * <p>Returns a structure that contains the Amazon S3 bucket and an array of the corresponding keys used to identify the location for your sample documents.</p>
2311
2347
  * @public
2312
2348
  */
2313
- sampleDocuments?: SampleDocuments;
2349
+ sampleDocuments?: SampleDocuments | undefined;
2314
2350
  }
2315
2351
  /**
2316
2352
  * @public
@@ -2367,55 +2403,55 @@ export interface GetTransformerResponse {
2367
2403
  * <p>Returns a timestamp for last time the transformer was modified.</p>
2368
2404
  * @public
2369
2405
  */
2370
- modifiedAt?: Date;
2406
+ modifiedAt?: Date | undefined;
2371
2407
  /**
2372
2408
  * @deprecated
2373
2409
  *
2374
2410
  * <p>Returns that the currently supported file formats for EDI transformations are <code>JSON</code> and <code>XML</code>.</p>
2375
2411
  * @public
2376
2412
  */
2377
- fileFormat?: FileFormat;
2413
+ fileFormat?: FileFormat | undefined;
2378
2414
  /**
2379
2415
  * @deprecated
2380
2416
  *
2381
2417
  * <p>Returns the mapping template for the transformer. This template is used to map the parsed EDI file using JSONata or XSLT.</p>
2382
2418
  * @public
2383
2419
  */
2384
- mappingTemplate?: string;
2420
+ mappingTemplate?: string | undefined;
2385
2421
  /**
2386
2422
  * @deprecated
2387
2423
  *
2388
2424
  * <p>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.</p>
2389
2425
  * @public
2390
2426
  */
2391
- ediType?: EdiType;
2427
+ ediType?: EdiType | undefined;
2392
2428
  /**
2393
2429
  * @deprecated
2394
2430
  *
2395
2431
  * <p>Returns a sample EDI document that is used by a transformer as a guide for processing the EDI data.</p>
2396
2432
  * @public
2397
2433
  */
2398
- sampleDocument?: string;
2434
+ sampleDocument?: string | undefined;
2399
2435
  /**
2400
2436
  * <p>Returns the <code>InputConversion</code> object, which contains the format options for the inbound transformation.</p>
2401
2437
  * @public
2402
2438
  */
2403
- inputConversion?: InputConversion;
2439
+ inputConversion?: InputConversion | undefined;
2404
2440
  /**
2405
2441
  * <p>Returns the structure that contains the mapping template and its language (either XSLT or JSONATA).</p>
2406
2442
  * @public
2407
2443
  */
2408
- mapping?: Mapping;
2444
+ mapping?: Mapping | undefined;
2409
2445
  /**
2410
2446
  * <p>Returns the <code>OutputConversion</code> object, which contains the format options for the outbound transformation.</p>
2411
2447
  * @public
2412
2448
  */
2413
- outputConversion?: OutputConversion;
2449
+ outputConversion?: OutputConversion | undefined;
2414
2450
  /**
2415
2451
  * <p>Returns a structure that contains the Amazon S3 bucket and an array of the corresponding keys used to identify the location for your sample documents.</p>
2416
2452
  * @public
2417
2453
  */
2418
- sampleDocuments?: SampleDocuments;
2454
+ sampleDocuments?: SampleDocuments | undefined;
2419
2455
  }
2420
2456
  /**
2421
2457
  * @public
@@ -2426,12 +2462,12 @@ export interface ListTransformersRequest {
2426
2462
  * You can then pass the <code>NextToken</code> parameter in a subsequent command to continue listing additional resources.</p>
2427
2463
  * @public
2428
2464
  */
2429
- nextToken?: string;
2465
+ nextToken?: string | undefined;
2430
2466
  /**
2431
2467
  * <p>Specifies the number of items to return for the API response.</p>
2432
2468
  * @public
2433
2469
  */
2434
- maxResults?: number;
2470
+ maxResults?: number | undefined;
2435
2471
  }
2436
2472
  /**
2437
2473
  * <p>Contains the details for a transformer object. A transformer can take an EDI file as input and transform it into a JSON-or XML-formatted document. Alternatively,
@@ -2466,55 +2502,55 @@ export interface TransformerSummary {
2466
2502
  * <p>Returns a timestamp representing the date and time for the most recent change for the transformer object.</p>
2467
2503
  * @public
2468
2504
  */
2469
- modifiedAt?: Date;
2505
+ modifiedAt?: Date | undefined;
2470
2506
  /**
2471
2507
  * @deprecated
2472
2508
  *
2473
2509
  * <p>Returns that the currently supported file formats for EDI transformations are <code>JSON</code> and <code>XML</code>.</p>
2474
2510
  * @public
2475
2511
  */
2476
- fileFormat?: FileFormat;
2512
+ fileFormat?: FileFormat | undefined;
2477
2513
  /**
2478
2514
  * @deprecated
2479
2515
  *
2480
2516
  * <p>Returns the mapping template for the transformer. This template is used to map the parsed EDI file using JSONata or XSLT.</p>
2481
2517
  * @public
2482
2518
  */
2483
- mappingTemplate?: string;
2519
+ mappingTemplate?: string | undefined;
2484
2520
  /**
2485
2521
  * @deprecated
2486
2522
  *
2487
2523
  * <p>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.</p>
2488
2524
  * @public
2489
2525
  */
2490
- ediType?: EdiType;
2526
+ ediType?: EdiType | undefined;
2491
2527
  /**
2492
2528
  * @deprecated
2493
2529
  *
2494
2530
  * <p>Returns a sample EDI document that is used by a transformer as a guide for processing the EDI data.</p>
2495
2531
  * @public
2496
2532
  */
2497
- sampleDocument?: string;
2533
+ sampleDocument?: string | undefined;
2498
2534
  /**
2499
2535
  * <p>Returns a structure that contains the format options for the transformation.</p>
2500
2536
  * @public
2501
2537
  */
2502
- inputConversion?: InputConversion;
2538
+ inputConversion?: InputConversion | undefined;
2503
2539
  /**
2504
2540
  * <p>Returns the structure that contains the mapping template and its language (either XSLT or JSONATA).</p>
2505
2541
  * @public
2506
2542
  */
2507
- mapping?: Mapping;
2543
+ mapping?: Mapping | undefined;
2508
2544
  /**
2509
2545
  * <p>Returns the <code>OutputConversion</code> object, which contains the format options for the outbound transformation.</p>
2510
2546
  * @public
2511
2547
  */
2512
- outputConversion?: OutputConversion;
2548
+ outputConversion?: OutputConversion | undefined;
2513
2549
  /**
2514
2550
  * <p>Returns a structure that contains the Amazon S3 bucket and an array of the corresponding keys used to identify the location for your sample documents.</p>
2515
2551
  * @public
2516
2552
  */
2517
- sampleDocuments?: SampleDocuments;
2553
+ sampleDocuments?: SampleDocuments | undefined;
2518
2554
  }
2519
2555
  /**
2520
2556
  * @public
@@ -2532,7 +2568,7 @@ export interface ListTransformersResponse {
2532
2568
  * You can then pass the <code>NextToken</code> parameter in a subsequent command to continue listing additional resources.</p>
2533
2569
  * @public
2534
2570
  */
2535
- nextToken?: string;
2571
+ nextToken?: string | undefined;
2536
2572
  }
2537
2573
  /**
2538
2574
  * @public
@@ -2547,19 +2583,19 @@ export interface UpdateTransformerRequest {
2547
2583
  * <p>Specify a new name for the transformer, if you want to update it.</p>
2548
2584
  * @public
2549
2585
  */
2550
- name?: string;
2586
+ name?: string | undefined;
2551
2587
  /**
2552
- * <p>Specifies the transformer's status. You can update the state of the transformer, from <code>active</code> to <code>inactive</code>, or <code>inactive</code> to <code>active</code>.</p>
2588
+ * <p>Specifies the transformer's status. You can update the state of the transformer from <code>inactive</code> to <code>active</code>.</p>
2553
2589
  * @public
2554
2590
  */
2555
- status?: TransformerStatus;
2591
+ status?: TransformerStatus | undefined;
2556
2592
  /**
2557
2593
  * @deprecated
2558
2594
  *
2559
2595
  * <p>Specifies that the currently supported file formats for EDI transformations are <code>JSON</code> and <code>XML</code>.</p>
2560
2596
  * @public
2561
2597
  */
2562
- fileFormat?: FileFormat;
2598
+ fileFormat?: FileFormat | undefined;
2563
2599
  /**
2564
2600
  * @deprecated
2565
2601
  *
@@ -2569,41 +2605,41 @@ export interface UpdateTransformerRequest {
2569
2605
  * </note>
2570
2606
  * @public
2571
2607
  */
2572
- mappingTemplate?: string;
2608
+ mappingTemplate?: string | undefined;
2573
2609
  /**
2574
2610
  * @deprecated
2575
2611
  *
2576
2612
  * <p>Specifies 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.</p>
2577
2613
  * @public
2578
2614
  */
2579
- ediType?: EdiType;
2615
+ ediType?: EdiType | undefined;
2580
2616
  /**
2581
2617
  * @deprecated
2582
2618
  *
2583
2619
  * <p>Specifies a sample EDI document that is used by a transformer as a guide for processing the EDI data.</p>
2584
2620
  * @public
2585
2621
  */
2586
- sampleDocument?: string;
2622
+ sampleDocument?: string | undefined;
2587
2623
  /**
2588
2624
  * <p>To update, specify the <code>InputConversion</code> object, which contains the format options for the inbound transformation.</p>
2589
2625
  * @public
2590
2626
  */
2591
- inputConversion?: InputConversion;
2627
+ inputConversion?: InputConversion | undefined;
2592
2628
  /**
2593
2629
  * <p>Specify the structure that contains the mapping template and its language (either XSLT or JSONATA).</p>
2594
2630
  * @public
2595
2631
  */
2596
- mapping?: Mapping;
2632
+ mapping?: Mapping | undefined;
2597
2633
  /**
2598
2634
  * <p>To update, specify the <code>OutputConversion</code> object, which contains the format options for the outbound transformation.</p>
2599
2635
  * @public
2600
2636
  */
2601
- outputConversion?: OutputConversion;
2637
+ outputConversion?: OutputConversion | undefined;
2602
2638
  /**
2603
2639
  * <p>Specify a structure that contains the Amazon S3 bucket and an array of the corresponding keys used to identify the location for your sample documents.</p>
2604
2640
  * @public
2605
2641
  */
2606
- sampleDocuments?: SampleDocuments;
2642
+ sampleDocuments?: SampleDocuments | undefined;
2607
2643
  }
2608
2644
  /**
2609
2645
  * @public
@@ -2647,48 +2683,48 @@ export interface UpdateTransformerResponse {
2647
2683
  * <p>Returns that the currently supported file formats for EDI transformations are <code>JSON</code> and <code>XML</code>.</p>
2648
2684
  * @public
2649
2685
  */
2650
- fileFormat?: FileFormat;
2686
+ fileFormat?: FileFormat | undefined;
2651
2687
  /**
2652
2688
  * @deprecated
2653
2689
  *
2654
2690
  * <p>Returns the mapping template for the transformer. This template is used to map the parsed EDI file using JSONata or XSLT.</p>
2655
2691
  * @public
2656
2692
  */
2657
- mappingTemplate?: string;
2693
+ mappingTemplate?: string | undefined;
2658
2694
  /**
2659
2695
  * @deprecated
2660
2696
  *
2661
2697
  * <p>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.</p>
2662
2698
  * @public
2663
2699
  */
2664
- ediType?: EdiType;
2700
+ ediType?: EdiType | undefined;
2665
2701
  /**
2666
2702
  * @deprecated
2667
2703
  *
2668
2704
  * <p>Returns a sample EDI document that is used by a transformer as a guide for processing the EDI data.</p>
2669
2705
  * @public
2670
2706
  */
2671
- sampleDocument?: string;
2707
+ sampleDocument?: string | undefined;
2672
2708
  /**
2673
2709
  * <p>Returns the <code>InputConversion</code> object, which contains the format options for the inbound transformation.</p>
2674
2710
  * @public
2675
2711
  */
2676
- inputConversion?: InputConversion;
2712
+ inputConversion?: InputConversion | undefined;
2677
2713
  /**
2678
2714
  * <p>Returns the structure that contains the mapping template and its language (either XSLT or JSONATA).</p>
2679
2715
  * @public
2680
2716
  */
2681
- mapping?: Mapping;
2717
+ mapping?: Mapping | undefined;
2682
2718
  /**
2683
2719
  * <p>Returns the <code>OutputConversion</code> object, which contains the format options for the outbound transformation.</p>
2684
2720
  * @public
2685
2721
  */
2686
- outputConversion?: OutputConversion;
2722
+ outputConversion?: OutputConversion | undefined;
2687
2723
  /**
2688
2724
  * <p>Returns a structure that contains the Amazon S3 bucket and an array of the corresponding keys used to identify the location for your sample documents.</p>
2689
2725
  * @public
2690
2726
  */
2691
- sampleDocuments?: SampleDocuments;
2727
+ sampleDocuments?: SampleDocuments | undefined;
2692
2728
  }
2693
2729
  /**
2694
2730
  * @public