aws-cdk-lib 2.201.0__py3-none-any.whl → 2.203.0__py3-none-any.whl
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.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +70 -71
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.201.0.jsii.tgz → aws-cdk-lib@2.203.0.jsii.tgz} +0 -0
- aws_cdk/aws_accessanalyzer/__init__.py +310 -4
- aws_cdk/aws_aiops/__init__.py +964 -0
- aws_cdk/aws_amplify/__init__.py +127 -0
- aws_cdk/aws_arczonalshift/__init__.py +8 -8
- aws_cdk/aws_athena/__init__.py +12 -11
- aws_cdk/aws_b2bi/__init__.py +782 -3
- aws_cdk/aws_backup/__init__.py +22 -0
- aws_cdk/aws_batch/__init__.py +53 -1
- aws_cdk/aws_bedrock/__init__.py +123 -9
- aws_cdk/aws_cleanrooms/__init__.py +157 -154
- aws_cdk/aws_cloudformation/__init__.py +28 -28
- aws_cdk/aws_cloudfront/__init__.py +92 -57
- aws_cdk/aws_cloudfront/experimental/__init__.py +42 -3
- aws_cdk/aws_cloudwatch/__init__.py +228 -2
- aws_cdk/aws_connect/__init__.py +120 -8
- aws_cdk/aws_connectcampaignsv2/__init__.py +25 -4
- aws_cdk/aws_customerprofiles/__init__.py +150 -30
- aws_cdk/aws_datazone/__init__.py +23 -4
- aws_cdk/aws_deadline/__init__.py +4 -4
- aws_cdk/aws_dsql/__init__.py +148 -0
- aws_cdk/aws_ec2/__init__.py +321 -19
- aws_cdk/aws_ecr/__init__.py +3 -3
- aws_cdk/aws_ecs/__init__.py +48 -13
- aws_cdk/aws_efs/__init__.py +17 -6
- aws_cdk/aws_eks/__init__.py +180 -158
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +4 -2
- aws_cdk/aws_emrserverless/__init__.py +118 -0
- aws_cdk/aws_fsx/__init__.py +891 -0
- aws_cdk/aws_glue/__init__.py +58 -24
- aws_cdk/aws_iam/__init__.py +11 -11
- aws_cdk/aws_inspectorv2/__init__.py +442 -3
- aws_cdk/aws_kendra/__init__.py +10 -5
- aws_cdk/aws_kms/__init__.py +24 -12
- aws_cdk/aws_lambda/__init__.py +938 -36
- aws_cdk/aws_lambda_event_sources/__init__.py +638 -1
- aws_cdk/aws_lambda_nodejs/__init__.py +37 -3
- aws_cdk/aws_lex/__init__.py +703 -0
- aws_cdk/aws_logs/__init__.py +144 -0
- aws_cdk/aws_mediatailor/__init__.py +399 -0
- aws_cdk/aws_mpa/__init__.py +1475 -0
- aws_cdk/aws_msk/__init__.py +21 -2
- aws_cdk/aws_mwaa/__init__.py +45 -2
- aws_cdk/aws_networkfirewall/__init__.py +4 -2
- aws_cdk/aws_networkmanager/__init__.py +51 -3
- aws_cdk/aws_opsworkscm/__init__.py +44 -2
- aws_cdk/aws_rds/__init__.py +175 -42
- aws_cdk/aws_redshiftserverless/__init__.py +632 -0
- aws_cdk/aws_route53resolver/__init__.py +58 -10
- aws_cdk/aws_s3/__init__.py +19 -1
- aws_cdk/aws_s3tables/__init__.py +230 -0
- aws_cdk/aws_sagemaker/__init__.py +14 -10
- aws_cdk/aws_securityhub/__init__.py +2887 -56
- aws_cdk/aws_synthetics/__init__.py +21 -0
- aws_cdk/aws_vpclattice/__init__.py +6 -4
- aws_cdk/aws_wafv2/__init__.py +849 -18
- aws_cdk/aws_workspacesinstances/__init__.py +3243 -0
- aws_cdk/cloud_assembly_schema/__init__.py +200 -4
- aws_cdk/cx_api/__init__.py +29 -14
- aws_cdk/pipelines/__init__.py +178 -41
- aws_cdk/triggers/__init__.py +41 -4
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/METADATA +3 -3
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/RECORD +69 -66
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_b2bi/__init__.py
CHANGED
|
@@ -938,9 +938,22 @@ class CfnPartnership(
|
|
|
938
938
|
|
|
939
939
|
# the properties below are optional
|
|
940
940
|
capability_options=b2bi.CfnPartnership.CapabilityOptionsProperty(
|
|
941
|
+
inbound_edi=b2bi.CfnPartnership.InboundEdiOptionsProperty(
|
|
942
|
+
x12=b2bi.CfnPartnership.X12InboundEdiOptionsProperty(
|
|
943
|
+
acknowledgment_options=b2bi.CfnPartnership.X12AcknowledgmentOptionsProperty(
|
|
944
|
+
functional_acknowledgment="functionalAcknowledgment",
|
|
945
|
+
technical_acknowledgment="technicalAcknowledgment"
|
|
946
|
+
)
|
|
947
|
+
)
|
|
948
|
+
),
|
|
941
949
|
outbound_edi=b2bi.CfnPartnership.OutboundEdiOptionsProperty(
|
|
942
950
|
x12=b2bi.CfnPartnership.X12EnvelopeProperty(
|
|
943
951
|
common=b2bi.CfnPartnership.X12OutboundEdiHeadersProperty(
|
|
952
|
+
control_numbers=b2bi.CfnPartnership.X12ControlNumbersProperty(
|
|
953
|
+
starting_functional_group_control_number=123,
|
|
954
|
+
starting_interchange_control_number=123,
|
|
955
|
+
starting_transaction_set_control_number=123
|
|
956
|
+
),
|
|
944
957
|
delimiters=b2bi.CfnPartnership.X12DelimitersProperty(
|
|
945
958
|
component_separator="componentSeparator",
|
|
946
959
|
data_element_separator="dataElementSeparator",
|
|
@@ -951,6 +964,7 @@ class CfnPartnership(
|
|
|
951
964
|
application_sender_code="applicationSenderCode",
|
|
952
965
|
responsible_agency_code="responsibleAgencyCode"
|
|
953
966
|
),
|
|
967
|
+
gs05_time_format="gs05TimeFormat",
|
|
954
968
|
interchange_control_headers=b2bi.CfnPartnership.X12InterchangeControlHeadersProperty(
|
|
955
969
|
acknowledgment_requested_code="acknowledgmentRequestedCode",
|
|
956
970
|
receiver_id="receiverId",
|
|
@@ -961,6 +975,11 @@ class CfnPartnership(
|
|
|
961
975
|
usage_indicator_code="usageIndicatorCode"
|
|
962
976
|
),
|
|
963
977
|
validate_edi=False
|
|
978
|
+
),
|
|
979
|
+
wrap_options=b2bi.CfnPartnership.WrapOptionsProperty(
|
|
980
|
+
line_length=123,
|
|
981
|
+
line_terminator="lineTerminator",
|
|
982
|
+
wrap_by="wrapBy"
|
|
964
983
|
)
|
|
965
984
|
)
|
|
966
985
|
)
|
|
@@ -1196,16 +1215,18 @@ class CfnPartnership(
|
|
|
1196
1215
|
@jsii.data_type(
|
|
1197
1216
|
jsii_type="aws-cdk-lib.aws_b2bi.CfnPartnership.CapabilityOptionsProperty",
|
|
1198
1217
|
jsii_struct_bases=[],
|
|
1199
|
-
name_mapping={"outbound_edi": "outboundEdi"},
|
|
1218
|
+
name_mapping={"inbound_edi": "inboundEdi", "outbound_edi": "outboundEdi"},
|
|
1200
1219
|
)
|
|
1201
1220
|
class CapabilityOptionsProperty:
|
|
1202
1221
|
def __init__(
|
|
1203
1222
|
self,
|
|
1204
1223
|
*,
|
|
1224
|
+
inbound_edi: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnership.InboundEdiOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1205
1225
|
outbound_edi: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnership.OutboundEdiOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1206
1226
|
) -> None:
|
|
1207
1227
|
'''Contains the details for an Outbound EDI capability.
|
|
1208
1228
|
|
|
1229
|
+
:param inbound_edi:
|
|
1209
1230
|
:param outbound_edi: A structure that contains the outbound EDI options.
|
|
1210
1231
|
|
|
1211
1232
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-capabilityoptions.html
|
|
@@ -1218,9 +1239,22 @@ class CfnPartnership(
|
|
|
1218
1239
|
from aws_cdk import aws_b2bi as b2bi
|
|
1219
1240
|
|
|
1220
1241
|
capability_options_property = b2bi.CfnPartnership.CapabilityOptionsProperty(
|
|
1242
|
+
inbound_edi=b2bi.CfnPartnership.InboundEdiOptionsProperty(
|
|
1243
|
+
x12=b2bi.CfnPartnership.X12InboundEdiOptionsProperty(
|
|
1244
|
+
acknowledgment_options=b2bi.CfnPartnership.X12AcknowledgmentOptionsProperty(
|
|
1245
|
+
functional_acknowledgment="functionalAcknowledgment",
|
|
1246
|
+
technical_acknowledgment="technicalAcknowledgment"
|
|
1247
|
+
)
|
|
1248
|
+
)
|
|
1249
|
+
),
|
|
1221
1250
|
outbound_edi=b2bi.CfnPartnership.OutboundEdiOptionsProperty(
|
|
1222
1251
|
x12=b2bi.CfnPartnership.X12EnvelopeProperty(
|
|
1223
1252
|
common=b2bi.CfnPartnership.X12OutboundEdiHeadersProperty(
|
|
1253
|
+
control_numbers=b2bi.CfnPartnership.X12ControlNumbersProperty(
|
|
1254
|
+
starting_functional_group_control_number=123,
|
|
1255
|
+
starting_interchange_control_number=123,
|
|
1256
|
+
starting_transaction_set_control_number=123
|
|
1257
|
+
),
|
|
1224
1258
|
delimiters=b2bi.CfnPartnership.X12DelimitersProperty(
|
|
1225
1259
|
component_separator="componentSeparator",
|
|
1226
1260
|
data_element_separator="dataElementSeparator",
|
|
@@ -1231,6 +1265,7 @@ class CfnPartnership(
|
|
|
1231
1265
|
application_sender_code="applicationSenderCode",
|
|
1232
1266
|
responsible_agency_code="responsibleAgencyCode"
|
|
1233
1267
|
),
|
|
1268
|
+
gs05_time_format="gs05TimeFormat",
|
|
1234
1269
|
interchange_control_headers=b2bi.CfnPartnership.X12InterchangeControlHeadersProperty(
|
|
1235
1270
|
acknowledgment_requested_code="acknowledgmentRequestedCode",
|
|
1236
1271
|
receiver_id="receiverId",
|
|
@@ -1241,6 +1276,11 @@ class CfnPartnership(
|
|
|
1241
1276
|
usage_indicator_code="usageIndicatorCode"
|
|
1242
1277
|
),
|
|
1243
1278
|
validate_edi=False
|
|
1279
|
+
),
|
|
1280
|
+
wrap_options=b2bi.CfnPartnership.WrapOptionsProperty(
|
|
1281
|
+
line_length=123,
|
|
1282
|
+
line_terminator="lineTerminator",
|
|
1283
|
+
wrap_by="wrapBy"
|
|
1244
1284
|
)
|
|
1245
1285
|
)
|
|
1246
1286
|
)
|
|
@@ -1248,11 +1288,24 @@ class CfnPartnership(
|
|
|
1248
1288
|
'''
|
|
1249
1289
|
if __debug__:
|
|
1250
1290
|
type_hints = typing.get_type_hints(_typecheckingstub__489c8d62d1ea0d603790b535b3f02b6d30eee2c7a02cd1b1d2a497a7f9f54c2b)
|
|
1291
|
+
check_type(argname="argument inbound_edi", value=inbound_edi, expected_type=type_hints["inbound_edi"])
|
|
1251
1292
|
check_type(argname="argument outbound_edi", value=outbound_edi, expected_type=type_hints["outbound_edi"])
|
|
1252
1293
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
1294
|
+
if inbound_edi is not None:
|
|
1295
|
+
self._values["inbound_edi"] = inbound_edi
|
|
1253
1296
|
if outbound_edi is not None:
|
|
1254
1297
|
self._values["outbound_edi"] = outbound_edi
|
|
1255
1298
|
|
|
1299
|
+
@builtins.property
|
|
1300
|
+
def inbound_edi(
|
|
1301
|
+
self,
|
|
1302
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.InboundEdiOptionsProperty"]]:
|
|
1303
|
+
'''
|
|
1304
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-capabilityoptions.html#cfn-b2bi-partnership-capabilityoptions-inboundedi
|
|
1305
|
+
'''
|
|
1306
|
+
result = self._values.get("inbound_edi")
|
|
1307
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.InboundEdiOptionsProperty"]], result)
|
|
1308
|
+
|
|
1256
1309
|
@builtins.property
|
|
1257
1310
|
def outbound_edi(
|
|
1258
1311
|
self,
|
|
@@ -1275,6 +1328,66 @@ class CfnPartnership(
|
|
|
1275
1328
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
1276
1329
|
)
|
|
1277
1330
|
|
|
1331
|
+
@jsii.data_type(
|
|
1332
|
+
jsii_type="aws-cdk-lib.aws_b2bi.CfnPartnership.InboundEdiOptionsProperty",
|
|
1333
|
+
jsii_struct_bases=[],
|
|
1334
|
+
name_mapping={"x12": "x12"},
|
|
1335
|
+
)
|
|
1336
|
+
class InboundEdiOptionsProperty:
|
|
1337
|
+
def __init__(
|
|
1338
|
+
self,
|
|
1339
|
+
*,
|
|
1340
|
+
x12: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnership.X12InboundEdiOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1341
|
+
) -> None:
|
|
1342
|
+
'''
|
|
1343
|
+
:param x12:
|
|
1344
|
+
|
|
1345
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-inboundedioptions.html
|
|
1346
|
+
:exampleMetadata: fixture=_generated
|
|
1347
|
+
|
|
1348
|
+
Example::
|
|
1349
|
+
|
|
1350
|
+
# The code below shows an example of how to instantiate this type.
|
|
1351
|
+
# The values are placeholders you should change.
|
|
1352
|
+
from aws_cdk import aws_b2bi as b2bi
|
|
1353
|
+
|
|
1354
|
+
inbound_edi_options_property = b2bi.CfnPartnership.InboundEdiOptionsProperty(
|
|
1355
|
+
x12=b2bi.CfnPartnership.X12InboundEdiOptionsProperty(
|
|
1356
|
+
acknowledgment_options=b2bi.CfnPartnership.X12AcknowledgmentOptionsProperty(
|
|
1357
|
+
functional_acknowledgment="functionalAcknowledgment",
|
|
1358
|
+
technical_acknowledgment="technicalAcknowledgment"
|
|
1359
|
+
)
|
|
1360
|
+
)
|
|
1361
|
+
)
|
|
1362
|
+
'''
|
|
1363
|
+
if __debug__:
|
|
1364
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b6c324487b61389216d4c37a2c38661a9fd27a782f0b1d30b4da2197c02472ca)
|
|
1365
|
+
check_type(argname="argument x12", value=x12, expected_type=type_hints["x12"])
|
|
1366
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
1367
|
+
if x12 is not None:
|
|
1368
|
+
self._values["x12"] = x12
|
|
1369
|
+
|
|
1370
|
+
@builtins.property
|
|
1371
|
+
def x12(
|
|
1372
|
+
self,
|
|
1373
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.X12InboundEdiOptionsProperty"]]:
|
|
1374
|
+
'''
|
|
1375
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-inboundedioptions.html#cfn-b2bi-partnership-inboundedioptions-x12
|
|
1376
|
+
'''
|
|
1377
|
+
result = self._values.get("x12")
|
|
1378
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.X12InboundEdiOptionsProperty"]], result)
|
|
1379
|
+
|
|
1380
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1381
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1382
|
+
|
|
1383
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1384
|
+
return not (rhs == self)
|
|
1385
|
+
|
|
1386
|
+
def __repr__(self) -> str:
|
|
1387
|
+
return "InboundEdiOptionsProperty(%s)" % ", ".join(
|
|
1388
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1389
|
+
)
|
|
1390
|
+
|
|
1278
1391
|
@jsii.data_type(
|
|
1279
1392
|
jsii_type="aws-cdk-lib.aws_b2bi.CfnPartnership.OutboundEdiOptionsProperty",
|
|
1280
1393
|
jsii_struct_bases=[],
|
|
@@ -1302,6 +1415,11 @@ class CfnPartnership(
|
|
|
1302
1415
|
outbound_edi_options_property = b2bi.CfnPartnership.OutboundEdiOptionsProperty(
|
|
1303
1416
|
x12=b2bi.CfnPartnership.X12EnvelopeProperty(
|
|
1304
1417
|
common=b2bi.CfnPartnership.X12OutboundEdiHeadersProperty(
|
|
1418
|
+
control_numbers=b2bi.CfnPartnership.X12ControlNumbersProperty(
|
|
1419
|
+
starting_functional_group_control_number=123,
|
|
1420
|
+
starting_interchange_control_number=123,
|
|
1421
|
+
starting_transaction_set_control_number=123
|
|
1422
|
+
),
|
|
1305
1423
|
delimiters=b2bi.CfnPartnership.X12DelimitersProperty(
|
|
1306
1424
|
component_separator="componentSeparator",
|
|
1307
1425
|
data_element_separator="dataElementSeparator",
|
|
@@ -1312,6 +1430,7 @@ class CfnPartnership(
|
|
|
1312
1430
|
application_sender_code="applicationSenderCode",
|
|
1313
1431
|
responsible_agency_code="responsibleAgencyCode"
|
|
1314
1432
|
),
|
|
1433
|
+
gs05_time_format="gs05TimeFormat",
|
|
1315
1434
|
interchange_control_headers=b2bi.CfnPartnership.X12InterchangeControlHeadersProperty(
|
|
1316
1435
|
acknowledgment_requested_code="acknowledgmentRequestedCode",
|
|
1317
1436
|
receiver_id="receiverId",
|
|
@@ -1322,6 +1441,11 @@ class CfnPartnership(
|
|
|
1322
1441
|
usage_indicator_code="usageIndicatorCode"
|
|
1323
1442
|
),
|
|
1324
1443
|
validate_edi=False
|
|
1444
|
+
),
|
|
1445
|
+
wrap_options=b2bi.CfnPartnership.WrapOptionsProperty(
|
|
1446
|
+
line_length=123,
|
|
1447
|
+
line_terminator="lineTerminator",
|
|
1448
|
+
wrap_by="wrapBy"
|
|
1325
1449
|
)
|
|
1326
1450
|
)
|
|
1327
1451
|
)
|
|
@@ -1356,6 +1480,251 @@ class CfnPartnership(
|
|
|
1356
1480
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
1357
1481
|
)
|
|
1358
1482
|
|
|
1483
|
+
@jsii.data_type(
|
|
1484
|
+
jsii_type="aws-cdk-lib.aws_b2bi.CfnPartnership.WrapOptionsProperty",
|
|
1485
|
+
jsii_struct_bases=[],
|
|
1486
|
+
name_mapping={
|
|
1487
|
+
"line_length": "lineLength",
|
|
1488
|
+
"line_terminator": "lineTerminator",
|
|
1489
|
+
"wrap_by": "wrapBy",
|
|
1490
|
+
},
|
|
1491
|
+
)
|
|
1492
|
+
class WrapOptionsProperty:
|
|
1493
|
+
def __init__(
|
|
1494
|
+
self,
|
|
1495
|
+
*,
|
|
1496
|
+
line_length: typing.Optional[jsii.Number] = None,
|
|
1497
|
+
line_terminator: typing.Optional[builtins.str] = None,
|
|
1498
|
+
wrap_by: typing.Optional[builtins.str] = None,
|
|
1499
|
+
) -> None:
|
|
1500
|
+
'''
|
|
1501
|
+
:param line_length:
|
|
1502
|
+
:param line_terminator:
|
|
1503
|
+
:param wrap_by:
|
|
1504
|
+
|
|
1505
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-wrapoptions.html
|
|
1506
|
+
:exampleMetadata: fixture=_generated
|
|
1507
|
+
|
|
1508
|
+
Example::
|
|
1509
|
+
|
|
1510
|
+
# The code below shows an example of how to instantiate this type.
|
|
1511
|
+
# The values are placeholders you should change.
|
|
1512
|
+
from aws_cdk import aws_b2bi as b2bi
|
|
1513
|
+
|
|
1514
|
+
wrap_options_property = b2bi.CfnPartnership.WrapOptionsProperty(
|
|
1515
|
+
line_length=123,
|
|
1516
|
+
line_terminator="lineTerminator",
|
|
1517
|
+
wrap_by="wrapBy"
|
|
1518
|
+
)
|
|
1519
|
+
'''
|
|
1520
|
+
if __debug__:
|
|
1521
|
+
type_hints = typing.get_type_hints(_typecheckingstub__e655ba69d2815891585dad9698c9aca0d8f46825094f69219bf726ac7cc3dfb3)
|
|
1522
|
+
check_type(argname="argument line_length", value=line_length, expected_type=type_hints["line_length"])
|
|
1523
|
+
check_type(argname="argument line_terminator", value=line_terminator, expected_type=type_hints["line_terminator"])
|
|
1524
|
+
check_type(argname="argument wrap_by", value=wrap_by, expected_type=type_hints["wrap_by"])
|
|
1525
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
1526
|
+
if line_length is not None:
|
|
1527
|
+
self._values["line_length"] = line_length
|
|
1528
|
+
if line_terminator is not None:
|
|
1529
|
+
self._values["line_terminator"] = line_terminator
|
|
1530
|
+
if wrap_by is not None:
|
|
1531
|
+
self._values["wrap_by"] = wrap_by
|
|
1532
|
+
|
|
1533
|
+
@builtins.property
|
|
1534
|
+
def line_length(self) -> typing.Optional[jsii.Number]:
|
|
1535
|
+
'''
|
|
1536
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-wrapoptions.html#cfn-b2bi-partnership-wrapoptions-linelength
|
|
1537
|
+
'''
|
|
1538
|
+
result = self._values.get("line_length")
|
|
1539
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
1540
|
+
|
|
1541
|
+
@builtins.property
|
|
1542
|
+
def line_terminator(self) -> typing.Optional[builtins.str]:
|
|
1543
|
+
'''
|
|
1544
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-wrapoptions.html#cfn-b2bi-partnership-wrapoptions-lineterminator
|
|
1545
|
+
'''
|
|
1546
|
+
result = self._values.get("line_terminator")
|
|
1547
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1548
|
+
|
|
1549
|
+
@builtins.property
|
|
1550
|
+
def wrap_by(self) -> typing.Optional[builtins.str]:
|
|
1551
|
+
'''
|
|
1552
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-wrapoptions.html#cfn-b2bi-partnership-wrapoptions-wrapby
|
|
1553
|
+
'''
|
|
1554
|
+
result = self._values.get("wrap_by")
|
|
1555
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1556
|
+
|
|
1557
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1558
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1559
|
+
|
|
1560
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1561
|
+
return not (rhs == self)
|
|
1562
|
+
|
|
1563
|
+
def __repr__(self) -> str:
|
|
1564
|
+
return "WrapOptionsProperty(%s)" % ", ".join(
|
|
1565
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1566
|
+
)
|
|
1567
|
+
|
|
1568
|
+
@jsii.data_type(
|
|
1569
|
+
jsii_type="aws-cdk-lib.aws_b2bi.CfnPartnership.X12AcknowledgmentOptionsProperty",
|
|
1570
|
+
jsii_struct_bases=[],
|
|
1571
|
+
name_mapping={
|
|
1572
|
+
"functional_acknowledgment": "functionalAcknowledgment",
|
|
1573
|
+
"technical_acknowledgment": "technicalAcknowledgment",
|
|
1574
|
+
},
|
|
1575
|
+
)
|
|
1576
|
+
class X12AcknowledgmentOptionsProperty:
|
|
1577
|
+
def __init__(
|
|
1578
|
+
self,
|
|
1579
|
+
*,
|
|
1580
|
+
functional_acknowledgment: builtins.str,
|
|
1581
|
+
technical_acknowledgment: builtins.str,
|
|
1582
|
+
) -> None:
|
|
1583
|
+
'''
|
|
1584
|
+
:param functional_acknowledgment:
|
|
1585
|
+
:param technical_acknowledgment:
|
|
1586
|
+
|
|
1587
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12acknowledgmentoptions.html
|
|
1588
|
+
:exampleMetadata: fixture=_generated
|
|
1589
|
+
|
|
1590
|
+
Example::
|
|
1591
|
+
|
|
1592
|
+
# The code below shows an example of how to instantiate this type.
|
|
1593
|
+
# The values are placeholders you should change.
|
|
1594
|
+
from aws_cdk import aws_b2bi as b2bi
|
|
1595
|
+
|
|
1596
|
+
x12_acknowledgment_options_property = b2bi.CfnPartnership.X12AcknowledgmentOptionsProperty(
|
|
1597
|
+
functional_acknowledgment="functionalAcknowledgment",
|
|
1598
|
+
technical_acknowledgment="technicalAcknowledgment"
|
|
1599
|
+
)
|
|
1600
|
+
'''
|
|
1601
|
+
if __debug__:
|
|
1602
|
+
type_hints = typing.get_type_hints(_typecheckingstub__cd25022ffe4e73fd8bbd9369b880ae7c91c4a3b0583614cce2974320e88eaa3a)
|
|
1603
|
+
check_type(argname="argument functional_acknowledgment", value=functional_acknowledgment, expected_type=type_hints["functional_acknowledgment"])
|
|
1604
|
+
check_type(argname="argument technical_acknowledgment", value=technical_acknowledgment, expected_type=type_hints["technical_acknowledgment"])
|
|
1605
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
1606
|
+
"functional_acknowledgment": functional_acknowledgment,
|
|
1607
|
+
"technical_acknowledgment": technical_acknowledgment,
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
@builtins.property
|
|
1611
|
+
def functional_acknowledgment(self) -> builtins.str:
|
|
1612
|
+
'''
|
|
1613
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12acknowledgmentoptions.html#cfn-b2bi-partnership-x12acknowledgmentoptions-functionalacknowledgment
|
|
1614
|
+
'''
|
|
1615
|
+
result = self._values.get("functional_acknowledgment")
|
|
1616
|
+
assert result is not None, "Required property 'functional_acknowledgment' is missing"
|
|
1617
|
+
return typing.cast(builtins.str, result)
|
|
1618
|
+
|
|
1619
|
+
@builtins.property
|
|
1620
|
+
def technical_acknowledgment(self) -> builtins.str:
|
|
1621
|
+
'''
|
|
1622
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12acknowledgmentoptions.html#cfn-b2bi-partnership-x12acknowledgmentoptions-technicalacknowledgment
|
|
1623
|
+
'''
|
|
1624
|
+
result = self._values.get("technical_acknowledgment")
|
|
1625
|
+
assert result is not None, "Required property 'technical_acknowledgment' is missing"
|
|
1626
|
+
return typing.cast(builtins.str, result)
|
|
1627
|
+
|
|
1628
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1629
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1630
|
+
|
|
1631
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1632
|
+
return not (rhs == self)
|
|
1633
|
+
|
|
1634
|
+
def __repr__(self) -> str:
|
|
1635
|
+
return "X12AcknowledgmentOptionsProperty(%s)" % ", ".join(
|
|
1636
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1637
|
+
)
|
|
1638
|
+
|
|
1639
|
+
@jsii.data_type(
|
|
1640
|
+
jsii_type="aws-cdk-lib.aws_b2bi.CfnPartnership.X12ControlNumbersProperty",
|
|
1641
|
+
jsii_struct_bases=[],
|
|
1642
|
+
name_mapping={
|
|
1643
|
+
"starting_functional_group_control_number": "startingFunctionalGroupControlNumber",
|
|
1644
|
+
"starting_interchange_control_number": "startingInterchangeControlNumber",
|
|
1645
|
+
"starting_transaction_set_control_number": "startingTransactionSetControlNumber",
|
|
1646
|
+
},
|
|
1647
|
+
)
|
|
1648
|
+
class X12ControlNumbersProperty:
|
|
1649
|
+
def __init__(
|
|
1650
|
+
self,
|
|
1651
|
+
*,
|
|
1652
|
+
starting_functional_group_control_number: typing.Optional[jsii.Number] = None,
|
|
1653
|
+
starting_interchange_control_number: typing.Optional[jsii.Number] = None,
|
|
1654
|
+
starting_transaction_set_control_number: typing.Optional[jsii.Number] = None,
|
|
1655
|
+
) -> None:
|
|
1656
|
+
'''
|
|
1657
|
+
:param starting_functional_group_control_number:
|
|
1658
|
+
:param starting_interchange_control_number:
|
|
1659
|
+
:param starting_transaction_set_control_number:
|
|
1660
|
+
|
|
1661
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12controlnumbers.html
|
|
1662
|
+
:exampleMetadata: fixture=_generated
|
|
1663
|
+
|
|
1664
|
+
Example::
|
|
1665
|
+
|
|
1666
|
+
# The code below shows an example of how to instantiate this type.
|
|
1667
|
+
# The values are placeholders you should change.
|
|
1668
|
+
from aws_cdk import aws_b2bi as b2bi
|
|
1669
|
+
|
|
1670
|
+
x12_control_numbers_property = b2bi.CfnPartnership.X12ControlNumbersProperty(
|
|
1671
|
+
starting_functional_group_control_number=123,
|
|
1672
|
+
starting_interchange_control_number=123,
|
|
1673
|
+
starting_transaction_set_control_number=123
|
|
1674
|
+
)
|
|
1675
|
+
'''
|
|
1676
|
+
if __debug__:
|
|
1677
|
+
type_hints = typing.get_type_hints(_typecheckingstub__30e0c21f8439a660cced0c707b2b1ab5d0199f9710dc5113cb9fcde22546bef9)
|
|
1678
|
+
check_type(argname="argument starting_functional_group_control_number", value=starting_functional_group_control_number, expected_type=type_hints["starting_functional_group_control_number"])
|
|
1679
|
+
check_type(argname="argument starting_interchange_control_number", value=starting_interchange_control_number, expected_type=type_hints["starting_interchange_control_number"])
|
|
1680
|
+
check_type(argname="argument starting_transaction_set_control_number", value=starting_transaction_set_control_number, expected_type=type_hints["starting_transaction_set_control_number"])
|
|
1681
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
1682
|
+
if starting_functional_group_control_number is not None:
|
|
1683
|
+
self._values["starting_functional_group_control_number"] = starting_functional_group_control_number
|
|
1684
|
+
if starting_interchange_control_number is not None:
|
|
1685
|
+
self._values["starting_interchange_control_number"] = starting_interchange_control_number
|
|
1686
|
+
if starting_transaction_set_control_number is not None:
|
|
1687
|
+
self._values["starting_transaction_set_control_number"] = starting_transaction_set_control_number
|
|
1688
|
+
|
|
1689
|
+
@builtins.property
|
|
1690
|
+
def starting_functional_group_control_number(
|
|
1691
|
+
self,
|
|
1692
|
+
) -> typing.Optional[jsii.Number]:
|
|
1693
|
+
'''
|
|
1694
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12controlnumbers.html#cfn-b2bi-partnership-x12controlnumbers-startingfunctionalgroupcontrolnumber
|
|
1695
|
+
'''
|
|
1696
|
+
result = self._values.get("starting_functional_group_control_number")
|
|
1697
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
1698
|
+
|
|
1699
|
+
@builtins.property
|
|
1700
|
+
def starting_interchange_control_number(self) -> typing.Optional[jsii.Number]:
|
|
1701
|
+
'''
|
|
1702
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12controlnumbers.html#cfn-b2bi-partnership-x12controlnumbers-startinginterchangecontrolnumber
|
|
1703
|
+
'''
|
|
1704
|
+
result = self._values.get("starting_interchange_control_number")
|
|
1705
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
1706
|
+
|
|
1707
|
+
@builtins.property
|
|
1708
|
+
def starting_transaction_set_control_number(
|
|
1709
|
+
self,
|
|
1710
|
+
) -> typing.Optional[jsii.Number]:
|
|
1711
|
+
'''
|
|
1712
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12controlnumbers.html#cfn-b2bi-partnership-x12controlnumbers-startingtransactionsetcontrolnumber
|
|
1713
|
+
'''
|
|
1714
|
+
result = self._values.get("starting_transaction_set_control_number")
|
|
1715
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
1716
|
+
|
|
1717
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1718
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1719
|
+
|
|
1720
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1721
|
+
return not (rhs == self)
|
|
1722
|
+
|
|
1723
|
+
def __repr__(self) -> str:
|
|
1724
|
+
return "X12ControlNumbersProperty(%s)" % ", ".join(
|
|
1725
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1726
|
+
)
|
|
1727
|
+
|
|
1359
1728
|
@jsii.data_type(
|
|
1360
1729
|
jsii_type="aws-cdk-lib.aws_b2bi.CfnPartnership.X12DelimitersProperty",
|
|
1361
1730
|
jsii_struct_bases=[],
|
|
@@ -1444,13 +1813,14 @@ class CfnPartnership(
|
|
|
1444
1813
|
@jsii.data_type(
|
|
1445
1814
|
jsii_type="aws-cdk-lib.aws_b2bi.CfnPartnership.X12EnvelopeProperty",
|
|
1446
1815
|
jsii_struct_bases=[],
|
|
1447
|
-
name_mapping={"common": "common"},
|
|
1816
|
+
name_mapping={"common": "common", "wrap_options": "wrapOptions"},
|
|
1448
1817
|
)
|
|
1449
1818
|
class X12EnvelopeProperty:
|
|
1450
1819
|
def __init__(
|
|
1451
1820
|
self,
|
|
1452
1821
|
*,
|
|
1453
1822
|
common: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnership.X12OutboundEdiHeadersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1823
|
+
wrap_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnership.WrapOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1454
1824
|
) -> None:
|
|
1455
1825
|
'''A wrapper structure for an X12 definition object.
|
|
1456
1826
|
|
|
@@ -1461,6 +1831,7 @@ class CfnPartnership(
|
|
|
1461
1831
|
- Transaction Set
|
|
1462
1832
|
|
|
1463
1833
|
:param common: A container for the X12 outbound EDI headers.
|
|
1834
|
+
:param wrap_options:
|
|
1464
1835
|
|
|
1465
1836
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12envelope.html
|
|
1466
1837
|
:exampleMetadata: fixture=_generated
|
|
@@ -1473,6 +1844,11 @@ class CfnPartnership(
|
|
|
1473
1844
|
|
|
1474
1845
|
x12_envelope_property = b2bi.CfnPartnership.X12EnvelopeProperty(
|
|
1475
1846
|
common=b2bi.CfnPartnership.X12OutboundEdiHeadersProperty(
|
|
1847
|
+
control_numbers=b2bi.CfnPartnership.X12ControlNumbersProperty(
|
|
1848
|
+
starting_functional_group_control_number=123,
|
|
1849
|
+
starting_interchange_control_number=123,
|
|
1850
|
+
starting_transaction_set_control_number=123
|
|
1851
|
+
),
|
|
1476
1852
|
delimiters=b2bi.CfnPartnership.X12DelimitersProperty(
|
|
1477
1853
|
component_separator="componentSeparator",
|
|
1478
1854
|
data_element_separator="dataElementSeparator",
|
|
@@ -1483,6 +1859,7 @@ class CfnPartnership(
|
|
|
1483
1859
|
application_sender_code="applicationSenderCode",
|
|
1484
1860
|
responsible_agency_code="responsibleAgencyCode"
|
|
1485
1861
|
),
|
|
1862
|
+
gs05_time_format="gs05TimeFormat",
|
|
1486
1863
|
interchange_control_headers=b2bi.CfnPartnership.X12InterchangeControlHeadersProperty(
|
|
1487
1864
|
acknowledgment_requested_code="acknowledgmentRequestedCode",
|
|
1488
1865
|
receiver_id="receiverId",
|
|
@@ -1493,15 +1870,23 @@ class CfnPartnership(
|
|
|
1493
1870
|
usage_indicator_code="usageIndicatorCode"
|
|
1494
1871
|
),
|
|
1495
1872
|
validate_edi=False
|
|
1873
|
+
),
|
|
1874
|
+
wrap_options=b2bi.CfnPartnership.WrapOptionsProperty(
|
|
1875
|
+
line_length=123,
|
|
1876
|
+
line_terminator="lineTerminator",
|
|
1877
|
+
wrap_by="wrapBy"
|
|
1496
1878
|
)
|
|
1497
1879
|
)
|
|
1498
1880
|
'''
|
|
1499
1881
|
if __debug__:
|
|
1500
1882
|
type_hints = typing.get_type_hints(_typecheckingstub__30e9a528379ffdff1b0693f52a617de66a178b919d5d3ddc1c68309cc0a86afc)
|
|
1501
1883
|
check_type(argname="argument common", value=common, expected_type=type_hints["common"])
|
|
1884
|
+
check_type(argname="argument wrap_options", value=wrap_options, expected_type=type_hints["wrap_options"])
|
|
1502
1885
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
1503
1886
|
if common is not None:
|
|
1504
1887
|
self._values["common"] = common
|
|
1888
|
+
if wrap_options is not None:
|
|
1889
|
+
self._values["wrap_options"] = wrap_options
|
|
1505
1890
|
|
|
1506
1891
|
@builtins.property
|
|
1507
1892
|
def common(
|
|
@@ -1514,6 +1899,16 @@ class CfnPartnership(
|
|
|
1514
1899
|
result = self._values.get("common")
|
|
1515
1900
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.X12OutboundEdiHeadersProperty"]], result)
|
|
1516
1901
|
|
|
1902
|
+
@builtins.property
|
|
1903
|
+
def wrap_options(
|
|
1904
|
+
self,
|
|
1905
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.WrapOptionsProperty"]]:
|
|
1906
|
+
'''
|
|
1907
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12envelope.html#cfn-b2bi-partnership-x12envelope-wrapoptions
|
|
1908
|
+
'''
|
|
1909
|
+
result = self._values.get("wrap_options")
|
|
1910
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.WrapOptionsProperty"]], result)
|
|
1911
|
+
|
|
1517
1912
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1518
1913
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1519
1914
|
|
|
@@ -1610,6 +2005,64 @@ class CfnPartnership(
|
|
|
1610
2005
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
1611
2006
|
)
|
|
1612
2007
|
|
|
2008
|
+
@jsii.data_type(
|
|
2009
|
+
jsii_type="aws-cdk-lib.aws_b2bi.CfnPartnership.X12InboundEdiOptionsProperty",
|
|
2010
|
+
jsii_struct_bases=[],
|
|
2011
|
+
name_mapping={"acknowledgment_options": "acknowledgmentOptions"},
|
|
2012
|
+
)
|
|
2013
|
+
class X12InboundEdiOptionsProperty:
|
|
2014
|
+
def __init__(
|
|
2015
|
+
self,
|
|
2016
|
+
*,
|
|
2017
|
+
acknowledgment_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnership.X12AcknowledgmentOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2018
|
+
) -> None:
|
|
2019
|
+
'''
|
|
2020
|
+
:param acknowledgment_options:
|
|
2021
|
+
|
|
2022
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12inboundedioptions.html
|
|
2023
|
+
:exampleMetadata: fixture=_generated
|
|
2024
|
+
|
|
2025
|
+
Example::
|
|
2026
|
+
|
|
2027
|
+
# The code below shows an example of how to instantiate this type.
|
|
2028
|
+
# The values are placeholders you should change.
|
|
2029
|
+
from aws_cdk import aws_b2bi as b2bi
|
|
2030
|
+
|
|
2031
|
+
x12_inbound_edi_options_property = b2bi.CfnPartnership.X12InboundEdiOptionsProperty(
|
|
2032
|
+
acknowledgment_options=b2bi.CfnPartnership.X12AcknowledgmentOptionsProperty(
|
|
2033
|
+
functional_acknowledgment="functionalAcknowledgment",
|
|
2034
|
+
technical_acknowledgment="technicalAcknowledgment"
|
|
2035
|
+
)
|
|
2036
|
+
)
|
|
2037
|
+
'''
|
|
2038
|
+
if __debug__:
|
|
2039
|
+
type_hints = typing.get_type_hints(_typecheckingstub__25951703b6b17888b8fded1f4b04ca4482b7f065fc950fd49d36619cde5b1ad6)
|
|
2040
|
+
check_type(argname="argument acknowledgment_options", value=acknowledgment_options, expected_type=type_hints["acknowledgment_options"])
|
|
2041
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
2042
|
+
if acknowledgment_options is not None:
|
|
2043
|
+
self._values["acknowledgment_options"] = acknowledgment_options
|
|
2044
|
+
|
|
2045
|
+
@builtins.property
|
|
2046
|
+
def acknowledgment_options(
|
|
2047
|
+
self,
|
|
2048
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.X12AcknowledgmentOptionsProperty"]]:
|
|
2049
|
+
'''
|
|
2050
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12inboundedioptions.html#cfn-b2bi-partnership-x12inboundedioptions-acknowledgmentoptions
|
|
2051
|
+
'''
|
|
2052
|
+
result = self._values.get("acknowledgment_options")
|
|
2053
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.X12AcknowledgmentOptionsProperty"]], result)
|
|
2054
|
+
|
|
2055
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2056
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2057
|
+
|
|
2058
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2059
|
+
return not (rhs == self)
|
|
2060
|
+
|
|
2061
|
+
def __repr__(self) -> str:
|
|
2062
|
+
return "X12InboundEdiOptionsProperty(%s)" % ", ".join(
|
|
2063
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2064
|
+
)
|
|
2065
|
+
|
|
1613
2066
|
@jsii.data_type(
|
|
1614
2067
|
jsii_type="aws-cdk-lib.aws_b2bi.CfnPartnership.X12InterchangeControlHeadersProperty",
|
|
1615
2068
|
jsii_struct_bases=[],
|
|
@@ -1759,8 +2212,10 @@ class CfnPartnership(
|
|
|
1759
2212
|
jsii_type="aws-cdk-lib.aws_b2bi.CfnPartnership.X12OutboundEdiHeadersProperty",
|
|
1760
2213
|
jsii_struct_bases=[],
|
|
1761
2214
|
name_mapping={
|
|
2215
|
+
"control_numbers": "controlNumbers",
|
|
1762
2216
|
"delimiters": "delimiters",
|
|
1763
2217
|
"functional_group_headers": "functionalGroupHeaders",
|
|
2218
|
+
"gs05_time_format": "gs05TimeFormat",
|
|
1764
2219
|
"interchange_control_headers": "interchangeControlHeaders",
|
|
1765
2220
|
"validate_edi": "validateEdi",
|
|
1766
2221
|
},
|
|
@@ -1769,15 +2224,19 @@ class CfnPartnership(
|
|
|
1769
2224
|
def __init__(
|
|
1770
2225
|
self,
|
|
1771
2226
|
*,
|
|
2227
|
+
control_numbers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnership.X12ControlNumbersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1772
2228
|
delimiters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnership.X12DelimitersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1773
2229
|
functional_group_headers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnership.X12FunctionalGroupHeadersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2230
|
+
gs05_time_format: typing.Optional[builtins.str] = None,
|
|
1774
2231
|
interchange_control_headers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnership.X12InterchangeControlHeadersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1775
2232
|
validate_edi: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
1776
2233
|
) -> None:
|
|
1777
2234
|
'''A structure containing the details for an outbound EDI object.
|
|
1778
2235
|
|
|
2236
|
+
:param control_numbers:
|
|
1779
2237
|
:param delimiters: The delimiters, for example semicolon ( ``;`` ), that separates sections of the headers for the X12 object.
|
|
1780
2238
|
:param functional_group_headers: The functional group headers for the X12 object.
|
|
2239
|
+
:param gs05_time_format:
|
|
1781
2240
|
:param interchange_control_headers: In X12 EDI messages, delimiters are used to mark the end of segments or elements, and are defined in the interchange control header.
|
|
1782
2241
|
:param validate_edi: Specifies whether or not to validate the EDI for this X12 object: ``TRUE`` or ``FALSE`` .
|
|
1783
2242
|
|
|
@@ -1791,6 +2250,11 @@ class CfnPartnership(
|
|
|
1791
2250
|
from aws_cdk import aws_b2bi as b2bi
|
|
1792
2251
|
|
|
1793
2252
|
x12_outbound_edi_headers_property = b2bi.CfnPartnership.X12OutboundEdiHeadersProperty(
|
|
2253
|
+
control_numbers=b2bi.CfnPartnership.X12ControlNumbersProperty(
|
|
2254
|
+
starting_functional_group_control_number=123,
|
|
2255
|
+
starting_interchange_control_number=123,
|
|
2256
|
+
starting_transaction_set_control_number=123
|
|
2257
|
+
),
|
|
1794
2258
|
delimiters=b2bi.CfnPartnership.X12DelimitersProperty(
|
|
1795
2259
|
component_separator="componentSeparator",
|
|
1796
2260
|
data_element_separator="dataElementSeparator",
|
|
@@ -1801,6 +2265,7 @@ class CfnPartnership(
|
|
|
1801
2265
|
application_sender_code="applicationSenderCode",
|
|
1802
2266
|
responsible_agency_code="responsibleAgencyCode"
|
|
1803
2267
|
),
|
|
2268
|
+
gs05_time_format="gs05TimeFormat",
|
|
1804
2269
|
interchange_control_headers=b2bi.CfnPartnership.X12InterchangeControlHeadersProperty(
|
|
1805
2270
|
acknowledgment_requested_code="acknowledgmentRequestedCode",
|
|
1806
2271
|
receiver_id="receiverId",
|
|
@@ -1815,20 +2280,36 @@ class CfnPartnership(
|
|
|
1815
2280
|
'''
|
|
1816
2281
|
if __debug__:
|
|
1817
2282
|
type_hints = typing.get_type_hints(_typecheckingstub__8e80431a1b65f39f118b4a0b397a523502dcc49a5197848bd82eff40dc153d1c)
|
|
2283
|
+
check_type(argname="argument control_numbers", value=control_numbers, expected_type=type_hints["control_numbers"])
|
|
1818
2284
|
check_type(argname="argument delimiters", value=delimiters, expected_type=type_hints["delimiters"])
|
|
1819
2285
|
check_type(argname="argument functional_group_headers", value=functional_group_headers, expected_type=type_hints["functional_group_headers"])
|
|
2286
|
+
check_type(argname="argument gs05_time_format", value=gs05_time_format, expected_type=type_hints["gs05_time_format"])
|
|
1820
2287
|
check_type(argname="argument interchange_control_headers", value=interchange_control_headers, expected_type=type_hints["interchange_control_headers"])
|
|
1821
2288
|
check_type(argname="argument validate_edi", value=validate_edi, expected_type=type_hints["validate_edi"])
|
|
1822
2289
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
2290
|
+
if control_numbers is not None:
|
|
2291
|
+
self._values["control_numbers"] = control_numbers
|
|
1823
2292
|
if delimiters is not None:
|
|
1824
2293
|
self._values["delimiters"] = delimiters
|
|
1825
2294
|
if functional_group_headers is not None:
|
|
1826
2295
|
self._values["functional_group_headers"] = functional_group_headers
|
|
2296
|
+
if gs05_time_format is not None:
|
|
2297
|
+
self._values["gs05_time_format"] = gs05_time_format
|
|
1827
2298
|
if interchange_control_headers is not None:
|
|
1828
2299
|
self._values["interchange_control_headers"] = interchange_control_headers
|
|
1829
2300
|
if validate_edi is not None:
|
|
1830
2301
|
self._values["validate_edi"] = validate_edi
|
|
1831
2302
|
|
|
2303
|
+
@builtins.property
|
|
2304
|
+
def control_numbers(
|
|
2305
|
+
self,
|
|
2306
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.X12ControlNumbersProperty"]]:
|
|
2307
|
+
'''
|
|
2308
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12outboundediheaders.html#cfn-b2bi-partnership-x12outboundediheaders-controlnumbers
|
|
2309
|
+
'''
|
|
2310
|
+
result = self._values.get("control_numbers")
|
|
2311
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.X12ControlNumbersProperty"]], result)
|
|
2312
|
+
|
|
1832
2313
|
@builtins.property
|
|
1833
2314
|
def delimiters(
|
|
1834
2315
|
self,
|
|
@@ -1851,6 +2332,14 @@ class CfnPartnership(
|
|
|
1851
2332
|
result = self._values.get("functional_group_headers")
|
|
1852
2333
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.X12FunctionalGroupHeadersProperty"]], result)
|
|
1853
2334
|
|
|
2335
|
+
@builtins.property
|
|
2336
|
+
def gs05_time_format(self) -> typing.Optional[builtins.str]:
|
|
2337
|
+
'''
|
|
2338
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12outboundediheaders.html#cfn-b2bi-partnership-x12outboundediheaders-gs05timeformat
|
|
2339
|
+
'''
|
|
2340
|
+
result = self._values.get("gs05_time_format")
|
|
2341
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2342
|
+
|
|
1854
2343
|
@builtins.property
|
|
1855
2344
|
def interchange_control_headers(
|
|
1856
2345
|
self,
|
|
@@ -1937,9 +2426,22 @@ class CfnPartnershipProps:
|
|
|
1937
2426
|
|
|
1938
2427
|
# the properties below are optional
|
|
1939
2428
|
capability_options=b2bi.CfnPartnership.CapabilityOptionsProperty(
|
|
2429
|
+
inbound_edi=b2bi.CfnPartnership.InboundEdiOptionsProperty(
|
|
2430
|
+
x12=b2bi.CfnPartnership.X12InboundEdiOptionsProperty(
|
|
2431
|
+
acknowledgment_options=b2bi.CfnPartnership.X12AcknowledgmentOptionsProperty(
|
|
2432
|
+
functional_acknowledgment="functionalAcknowledgment",
|
|
2433
|
+
technical_acknowledgment="technicalAcknowledgment"
|
|
2434
|
+
)
|
|
2435
|
+
)
|
|
2436
|
+
),
|
|
1940
2437
|
outbound_edi=b2bi.CfnPartnership.OutboundEdiOptionsProperty(
|
|
1941
2438
|
x12=b2bi.CfnPartnership.X12EnvelopeProperty(
|
|
1942
2439
|
common=b2bi.CfnPartnership.X12OutboundEdiHeadersProperty(
|
|
2440
|
+
control_numbers=b2bi.CfnPartnership.X12ControlNumbersProperty(
|
|
2441
|
+
starting_functional_group_control_number=123,
|
|
2442
|
+
starting_interchange_control_number=123,
|
|
2443
|
+
starting_transaction_set_control_number=123
|
|
2444
|
+
),
|
|
1943
2445
|
delimiters=b2bi.CfnPartnership.X12DelimitersProperty(
|
|
1944
2446
|
component_separator="componentSeparator",
|
|
1945
2447
|
data_element_separator="dataElementSeparator",
|
|
@@ -1950,6 +2452,7 @@ class CfnPartnershipProps:
|
|
|
1950
2452
|
application_sender_code="applicationSenderCode",
|
|
1951
2453
|
responsible_agency_code="responsibleAgencyCode"
|
|
1952
2454
|
),
|
|
2455
|
+
gs05_time_format="gs05TimeFormat",
|
|
1953
2456
|
interchange_control_headers=b2bi.CfnPartnership.X12InterchangeControlHeadersProperty(
|
|
1954
2457
|
acknowledgment_requested_code="acknowledgmentRequestedCode",
|
|
1955
2458
|
receiver_id="receiverId",
|
|
@@ -1960,6 +2463,11 @@ class CfnPartnershipProps:
|
|
|
1960
2463
|
usage_indicator_code="usageIndicatorCode"
|
|
1961
2464
|
),
|
|
1962
2465
|
validate_edi=False
|
|
2466
|
+
),
|
|
2467
|
+
wrap_options=b2bi.CfnPartnership.WrapOptionsProperty(
|
|
2468
|
+
line_length=123,
|
|
2469
|
+
line_terminator="lineTerminator",
|
|
2470
|
+
wrap_by="wrapBy"
|
|
1963
2471
|
)
|
|
1964
2472
|
)
|
|
1965
2473
|
)
|
|
@@ -2497,6 +3005,13 @@ class CfnTransformer(
|
|
|
2497
3005
|
from_format="fromFormat",
|
|
2498
3006
|
|
|
2499
3007
|
# the properties below are optional
|
|
3008
|
+
advanced_options=b2bi.CfnTransformer.AdvancedOptionsProperty(
|
|
3009
|
+
x12=b2bi.CfnTransformer.X12AdvancedOptionsProperty(
|
|
3010
|
+
split_options=b2bi.CfnTransformer.X12SplitOptionsProperty(
|
|
3011
|
+
split_by="splitBy"
|
|
3012
|
+
)
|
|
3013
|
+
)
|
|
3014
|
+
),
|
|
2500
3015
|
format_options=b2bi.CfnTransformer.FormatOptionsProperty(
|
|
2501
3016
|
x12=b2bi.CfnTransformer.X12DetailsProperty(
|
|
2502
3017
|
transaction_set="transactionSet",
|
|
@@ -2854,6 +3369,65 @@ class CfnTransformer(
|
|
|
2854
3369
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2855
3370
|
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
2856
3371
|
|
|
3372
|
+
@jsii.data_type(
|
|
3373
|
+
jsii_type="aws-cdk-lib.aws_b2bi.CfnTransformer.AdvancedOptionsProperty",
|
|
3374
|
+
jsii_struct_bases=[],
|
|
3375
|
+
name_mapping={"x12": "x12"},
|
|
3376
|
+
)
|
|
3377
|
+
class AdvancedOptionsProperty:
|
|
3378
|
+
def __init__(
|
|
3379
|
+
self,
|
|
3380
|
+
*,
|
|
3381
|
+
x12: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTransformer.X12AdvancedOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3382
|
+
) -> None:
|
|
3383
|
+
'''
|
|
3384
|
+
:param x12:
|
|
3385
|
+
|
|
3386
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-advancedoptions.html
|
|
3387
|
+
:exampleMetadata: fixture=_generated
|
|
3388
|
+
|
|
3389
|
+
Example::
|
|
3390
|
+
|
|
3391
|
+
# The code below shows an example of how to instantiate this type.
|
|
3392
|
+
# The values are placeholders you should change.
|
|
3393
|
+
from aws_cdk import aws_b2bi as b2bi
|
|
3394
|
+
|
|
3395
|
+
advanced_options_property = b2bi.CfnTransformer.AdvancedOptionsProperty(
|
|
3396
|
+
x12=b2bi.CfnTransformer.X12AdvancedOptionsProperty(
|
|
3397
|
+
split_options=b2bi.CfnTransformer.X12SplitOptionsProperty(
|
|
3398
|
+
split_by="splitBy"
|
|
3399
|
+
)
|
|
3400
|
+
)
|
|
3401
|
+
)
|
|
3402
|
+
'''
|
|
3403
|
+
if __debug__:
|
|
3404
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bb01391868543c9042ef70dbd21634249f177cb7ac9ad6ddf2b2583c136e529b)
|
|
3405
|
+
check_type(argname="argument x12", value=x12, expected_type=type_hints["x12"])
|
|
3406
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
3407
|
+
if x12 is not None:
|
|
3408
|
+
self._values["x12"] = x12
|
|
3409
|
+
|
|
3410
|
+
@builtins.property
|
|
3411
|
+
def x12(
|
|
3412
|
+
self,
|
|
3413
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTransformer.X12AdvancedOptionsProperty"]]:
|
|
3414
|
+
'''
|
|
3415
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-advancedoptions.html#cfn-b2bi-transformer-advancedoptions-x12
|
|
3416
|
+
'''
|
|
3417
|
+
result = self._values.get("x12")
|
|
3418
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTransformer.X12AdvancedOptionsProperty"]], result)
|
|
3419
|
+
|
|
3420
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3421
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3422
|
+
|
|
3423
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3424
|
+
return not (rhs == self)
|
|
3425
|
+
|
|
3426
|
+
def __repr__(self) -> str:
|
|
3427
|
+
return "AdvancedOptionsProperty(%s)" % ", ".join(
|
|
3428
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3429
|
+
)
|
|
3430
|
+
|
|
2857
3431
|
@jsii.data_type(
|
|
2858
3432
|
jsii_type="aws-cdk-lib.aws_b2bi.CfnTransformer.EdiTypeProperty",
|
|
2859
3433
|
jsii_struct_bases=[],
|
|
@@ -2975,17 +3549,23 @@ class CfnTransformer(
|
|
|
2975
3549
|
@jsii.data_type(
|
|
2976
3550
|
jsii_type="aws-cdk-lib.aws_b2bi.CfnTransformer.InputConversionProperty",
|
|
2977
3551
|
jsii_struct_bases=[],
|
|
2978
|
-
name_mapping={
|
|
3552
|
+
name_mapping={
|
|
3553
|
+
"from_format": "fromFormat",
|
|
3554
|
+
"advanced_options": "advancedOptions",
|
|
3555
|
+
"format_options": "formatOptions",
|
|
3556
|
+
},
|
|
2979
3557
|
)
|
|
2980
3558
|
class InputConversionProperty:
|
|
2981
3559
|
def __init__(
|
|
2982
3560
|
self,
|
|
2983
3561
|
*,
|
|
2984
3562
|
from_format: builtins.str,
|
|
3563
|
+
advanced_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTransformer.AdvancedOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2985
3564
|
format_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTransformer.FormatOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2986
3565
|
) -> None:
|
|
2987
3566
|
'''
|
|
2988
3567
|
:param from_format:
|
|
3568
|
+
:param advanced_options:
|
|
2989
3569
|
:param format_options:
|
|
2990
3570
|
|
|
2991
3571
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-inputconversion.html
|
|
@@ -3001,6 +3581,13 @@ class CfnTransformer(
|
|
|
3001
3581
|
from_format="fromFormat",
|
|
3002
3582
|
|
|
3003
3583
|
# the properties below are optional
|
|
3584
|
+
advanced_options=b2bi.CfnTransformer.AdvancedOptionsProperty(
|
|
3585
|
+
x12=b2bi.CfnTransformer.X12AdvancedOptionsProperty(
|
|
3586
|
+
split_options=b2bi.CfnTransformer.X12SplitOptionsProperty(
|
|
3587
|
+
split_by="splitBy"
|
|
3588
|
+
)
|
|
3589
|
+
)
|
|
3590
|
+
),
|
|
3004
3591
|
format_options=b2bi.CfnTransformer.FormatOptionsProperty(
|
|
3005
3592
|
x12=b2bi.CfnTransformer.X12DetailsProperty(
|
|
3006
3593
|
transaction_set="transactionSet",
|
|
@@ -3012,10 +3599,13 @@ class CfnTransformer(
|
|
|
3012
3599
|
if __debug__:
|
|
3013
3600
|
type_hints = typing.get_type_hints(_typecheckingstub__26660093b7b88e1d4689618f27b43e1e286cfcdb3adbc4c515c4b29513332a12)
|
|
3014
3601
|
check_type(argname="argument from_format", value=from_format, expected_type=type_hints["from_format"])
|
|
3602
|
+
check_type(argname="argument advanced_options", value=advanced_options, expected_type=type_hints["advanced_options"])
|
|
3015
3603
|
check_type(argname="argument format_options", value=format_options, expected_type=type_hints["format_options"])
|
|
3016
3604
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
3017
3605
|
"from_format": from_format,
|
|
3018
3606
|
}
|
|
3607
|
+
if advanced_options is not None:
|
|
3608
|
+
self._values["advanced_options"] = advanced_options
|
|
3019
3609
|
if format_options is not None:
|
|
3020
3610
|
self._values["format_options"] = format_options
|
|
3021
3611
|
|
|
@@ -3028,6 +3618,16 @@ class CfnTransformer(
|
|
|
3028
3618
|
assert result is not None, "Required property 'from_format' is missing"
|
|
3029
3619
|
return typing.cast(builtins.str, result)
|
|
3030
3620
|
|
|
3621
|
+
@builtins.property
|
|
3622
|
+
def advanced_options(
|
|
3623
|
+
self,
|
|
3624
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTransformer.AdvancedOptionsProperty"]]:
|
|
3625
|
+
'''
|
|
3626
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-inputconversion.html#cfn-b2bi-transformer-inputconversion-advancedoptions
|
|
3627
|
+
'''
|
|
3628
|
+
result = self._values.get("advanced_options")
|
|
3629
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTransformer.AdvancedOptionsProperty"]], result)
|
|
3630
|
+
|
|
3031
3631
|
@builtins.property
|
|
3032
3632
|
def format_options(
|
|
3033
3633
|
self,
|
|
@@ -3336,6 +3936,63 @@ class CfnTransformer(
|
|
|
3336
3936
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
3337
3937
|
)
|
|
3338
3938
|
|
|
3939
|
+
@jsii.data_type(
|
|
3940
|
+
jsii_type="aws-cdk-lib.aws_b2bi.CfnTransformer.X12AdvancedOptionsProperty",
|
|
3941
|
+
jsii_struct_bases=[],
|
|
3942
|
+
name_mapping={"split_options": "splitOptions"},
|
|
3943
|
+
)
|
|
3944
|
+
class X12AdvancedOptionsProperty:
|
|
3945
|
+
def __init__(
|
|
3946
|
+
self,
|
|
3947
|
+
*,
|
|
3948
|
+
split_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTransformer.X12SplitOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3949
|
+
) -> None:
|
|
3950
|
+
'''
|
|
3951
|
+
:param split_options:
|
|
3952
|
+
|
|
3953
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12advancedoptions.html
|
|
3954
|
+
:exampleMetadata: fixture=_generated
|
|
3955
|
+
|
|
3956
|
+
Example::
|
|
3957
|
+
|
|
3958
|
+
# The code below shows an example of how to instantiate this type.
|
|
3959
|
+
# The values are placeholders you should change.
|
|
3960
|
+
from aws_cdk import aws_b2bi as b2bi
|
|
3961
|
+
|
|
3962
|
+
x12_advanced_options_property = b2bi.CfnTransformer.X12AdvancedOptionsProperty(
|
|
3963
|
+
split_options=b2bi.CfnTransformer.X12SplitOptionsProperty(
|
|
3964
|
+
split_by="splitBy"
|
|
3965
|
+
)
|
|
3966
|
+
)
|
|
3967
|
+
'''
|
|
3968
|
+
if __debug__:
|
|
3969
|
+
type_hints = typing.get_type_hints(_typecheckingstub__0d6cdec7bccb6d811748cbb3f28ec5b4408f4496a924455516c3f90fd268b81c)
|
|
3970
|
+
check_type(argname="argument split_options", value=split_options, expected_type=type_hints["split_options"])
|
|
3971
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
3972
|
+
if split_options is not None:
|
|
3973
|
+
self._values["split_options"] = split_options
|
|
3974
|
+
|
|
3975
|
+
@builtins.property
|
|
3976
|
+
def split_options(
|
|
3977
|
+
self,
|
|
3978
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTransformer.X12SplitOptionsProperty"]]:
|
|
3979
|
+
'''
|
|
3980
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12advancedoptions.html#cfn-b2bi-transformer-x12advancedoptions-splitoptions
|
|
3981
|
+
'''
|
|
3982
|
+
result = self._values.get("split_options")
|
|
3983
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTransformer.X12SplitOptionsProperty"]], result)
|
|
3984
|
+
|
|
3985
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3986
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3987
|
+
|
|
3988
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3989
|
+
return not (rhs == self)
|
|
3990
|
+
|
|
3991
|
+
def __repr__(self) -> str:
|
|
3992
|
+
return "X12AdvancedOptionsProperty(%s)" % ", ".join(
|
|
3993
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3994
|
+
)
|
|
3995
|
+
|
|
3339
3996
|
@jsii.data_type(
|
|
3340
3997
|
jsii_type="aws-cdk-lib.aws_b2bi.CfnTransformer.X12DetailsProperty",
|
|
3341
3998
|
jsii_struct_bases=[],
|
|
@@ -3413,6 +4070,55 @@ class CfnTransformer(
|
|
|
3413
4070
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
3414
4071
|
)
|
|
3415
4072
|
|
|
4073
|
+
@jsii.data_type(
|
|
4074
|
+
jsii_type="aws-cdk-lib.aws_b2bi.CfnTransformer.X12SplitOptionsProperty",
|
|
4075
|
+
jsii_struct_bases=[],
|
|
4076
|
+
name_mapping={"split_by": "splitBy"},
|
|
4077
|
+
)
|
|
4078
|
+
class X12SplitOptionsProperty:
|
|
4079
|
+
def __init__(self, *, split_by: typing.Optional[builtins.str] = None) -> None:
|
|
4080
|
+
'''
|
|
4081
|
+
:param split_by:
|
|
4082
|
+
|
|
4083
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12splitoptions.html
|
|
4084
|
+
:exampleMetadata: fixture=_generated
|
|
4085
|
+
|
|
4086
|
+
Example::
|
|
4087
|
+
|
|
4088
|
+
# The code below shows an example of how to instantiate this type.
|
|
4089
|
+
# The values are placeholders you should change.
|
|
4090
|
+
from aws_cdk import aws_b2bi as b2bi
|
|
4091
|
+
|
|
4092
|
+
x12_split_options_property = b2bi.CfnTransformer.X12SplitOptionsProperty(
|
|
4093
|
+
split_by="splitBy"
|
|
4094
|
+
)
|
|
4095
|
+
'''
|
|
4096
|
+
if __debug__:
|
|
4097
|
+
type_hints = typing.get_type_hints(_typecheckingstub__8eda5d523e00df1c59382ff9b447e68e4b9960ae993e8a6bceb3337c0646dede)
|
|
4098
|
+
check_type(argname="argument split_by", value=split_by, expected_type=type_hints["split_by"])
|
|
4099
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
4100
|
+
if split_by is not None:
|
|
4101
|
+
self._values["split_by"] = split_by
|
|
4102
|
+
|
|
4103
|
+
@builtins.property
|
|
4104
|
+
def split_by(self) -> typing.Optional[builtins.str]:
|
|
4105
|
+
'''
|
|
4106
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12splitoptions.html#cfn-b2bi-transformer-x12splitoptions-splitby
|
|
4107
|
+
'''
|
|
4108
|
+
result = self._values.get("split_by")
|
|
4109
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4110
|
+
|
|
4111
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4112
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4113
|
+
|
|
4114
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
4115
|
+
return not (rhs == self)
|
|
4116
|
+
|
|
4117
|
+
def __repr__(self) -> str:
|
|
4118
|
+
return "X12SplitOptionsProperty(%s)" % ", ".join(
|
|
4119
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
4120
|
+
)
|
|
4121
|
+
|
|
3416
4122
|
|
|
3417
4123
|
@jsii.data_type(
|
|
3418
4124
|
jsii_type="aws-cdk-lib.aws_b2bi.CfnTransformerProps",
|
|
@@ -3486,6 +4192,13 @@ class CfnTransformerProps:
|
|
|
3486
4192
|
from_format="fromFormat",
|
|
3487
4193
|
|
|
3488
4194
|
# the properties below are optional
|
|
4195
|
+
advanced_options=b2bi.CfnTransformer.AdvancedOptionsProperty(
|
|
4196
|
+
x12=b2bi.CfnTransformer.X12AdvancedOptionsProperty(
|
|
4197
|
+
split_options=b2bi.CfnTransformer.X12SplitOptionsProperty(
|
|
4198
|
+
split_by="splitBy"
|
|
4199
|
+
)
|
|
4200
|
+
)
|
|
4201
|
+
),
|
|
3489
4202
|
format_options=b2bi.CfnTransformer.FormatOptionsProperty(
|
|
3490
4203
|
x12=b2bi.CfnTransformer.X12DetailsProperty(
|
|
3491
4204
|
transaction_set="transactionSet",
|
|
@@ -3893,11 +4606,19 @@ def _typecheckingstub__fc0c0a6e8431d11899a318046b450bc4efc00486d9f20286940067c7f
|
|
|
3893
4606
|
|
|
3894
4607
|
def _typecheckingstub__489c8d62d1ea0d603790b535b3f02b6d30eee2c7a02cd1b1d2a497a7f9f54c2b(
|
|
3895
4608
|
*,
|
|
4609
|
+
inbound_edi: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnership.InboundEdiOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3896
4610
|
outbound_edi: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnership.OutboundEdiOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3897
4611
|
) -> None:
|
|
3898
4612
|
"""Type checking stubs"""
|
|
3899
4613
|
pass
|
|
3900
4614
|
|
|
4615
|
+
def _typecheckingstub__b6c324487b61389216d4c37a2c38661a9fd27a782f0b1d30b4da2197c02472ca(
|
|
4616
|
+
*,
|
|
4617
|
+
x12: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnership.X12InboundEdiOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4618
|
+
) -> None:
|
|
4619
|
+
"""Type checking stubs"""
|
|
4620
|
+
pass
|
|
4621
|
+
|
|
3901
4622
|
def _typecheckingstub__32687b2a777cf504a9e11c6386b8aa7795645f807660aecf3f5bdddf1b953268(
|
|
3902
4623
|
*,
|
|
3903
4624
|
x12: typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnership.X12EnvelopeProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
@@ -3905,6 +4626,32 @@ def _typecheckingstub__32687b2a777cf504a9e11c6386b8aa7795645f807660aecf3f5bdddf1
|
|
|
3905
4626
|
"""Type checking stubs"""
|
|
3906
4627
|
pass
|
|
3907
4628
|
|
|
4629
|
+
def _typecheckingstub__e655ba69d2815891585dad9698c9aca0d8f46825094f69219bf726ac7cc3dfb3(
|
|
4630
|
+
*,
|
|
4631
|
+
line_length: typing.Optional[jsii.Number] = None,
|
|
4632
|
+
line_terminator: typing.Optional[builtins.str] = None,
|
|
4633
|
+
wrap_by: typing.Optional[builtins.str] = None,
|
|
4634
|
+
) -> None:
|
|
4635
|
+
"""Type checking stubs"""
|
|
4636
|
+
pass
|
|
4637
|
+
|
|
4638
|
+
def _typecheckingstub__cd25022ffe4e73fd8bbd9369b880ae7c91c4a3b0583614cce2974320e88eaa3a(
|
|
4639
|
+
*,
|
|
4640
|
+
functional_acknowledgment: builtins.str,
|
|
4641
|
+
technical_acknowledgment: builtins.str,
|
|
4642
|
+
) -> None:
|
|
4643
|
+
"""Type checking stubs"""
|
|
4644
|
+
pass
|
|
4645
|
+
|
|
4646
|
+
def _typecheckingstub__30e0c21f8439a660cced0c707b2b1ab5d0199f9710dc5113cb9fcde22546bef9(
|
|
4647
|
+
*,
|
|
4648
|
+
starting_functional_group_control_number: typing.Optional[jsii.Number] = None,
|
|
4649
|
+
starting_interchange_control_number: typing.Optional[jsii.Number] = None,
|
|
4650
|
+
starting_transaction_set_control_number: typing.Optional[jsii.Number] = None,
|
|
4651
|
+
) -> None:
|
|
4652
|
+
"""Type checking stubs"""
|
|
4653
|
+
pass
|
|
4654
|
+
|
|
3908
4655
|
def _typecheckingstub__1c64e6cc29ab2abf7a0ebb687d8309174a673c2096776d261df47c9bb5f6044b(
|
|
3909
4656
|
*,
|
|
3910
4657
|
component_separator: typing.Optional[builtins.str] = None,
|
|
@@ -3917,6 +4664,7 @@ def _typecheckingstub__1c64e6cc29ab2abf7a0ebb687d8309174a673c2096776d261df47c9bb
|
|
|
3917
4664
|
def _typecheckingstub__30e9a528379ffdff1b0693f52a617de66a178b919d5d3ddc1c68309cc0a86afc(
|
|
3918
4665
|
*,
|
|
3919
4666
|
common: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnership.X12OutboundEdiHeadersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4667
|
+
wrap_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnership.WrapOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3920
4668
|
) -> None:
|
|
3921
4669
|
"""Type checking stubs"""
|
|
3922
4670
|
pass
|
|
@@ -3930,6 +4678,13 @@ def _typecheckingstub__0b107041a5b51efd672a9b2f3b5bb8ce2f8376a1dc4cddc6a58a089e0
|
|
|
3930
4678
|
"""Type checking stubs"""
|
|
3931
4679
|
pass
|
|
3932
4680
|
|
|
4681
|
+
def _typecheckingstub__25951703b6b17888b8fded1f4b04ca4482b7f065fc950fd49d36619cde5b1ad6(
|
|
4682
|
+
*,
|
|
4683
|
+
acknowledgment_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnership.X12AcknowledgmentOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4684
|
+
) -> None:
|
|
4685
|
+
"""Type checking stubs"""
|
|
4686
|
+
pass
|
|
4687
|
+
|
|
3933
4688
|
def _typecheckingstub__2cd06c107bbc9de62cfdd484dd7527f5641c4d03e973675f4638b3441dcb2630(
|
|
3934
4689
|
*,
|
|
3935
4690
|
acknowledgment_requested_code: typing.Optional[builtins.str] = None,
|
|
@@ -3945,8 +4700,10 @@ def _typecheckingstub__2cd06c107bbc9de62cfdd484dd7527f5641c4d03e973675f4638b3441
|
|
|
3945
4700
|
|
|
3946
4701
|
def _typecheckingstub__8e80431a1b65f39f118b4a0b397a523502dcc49a5197848bd82eff40dc153d1c(
|
|
3947
4702
|
*,
|
|
4703
|
+
control_numbers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnership.X12ControlNumbersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3948
4704
|
delimiters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnership.X12DelimitersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3949
4705
|
functional_group_headers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnership.X12FunctionalGroupHeadersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4706
|
+
gs05_time_format: typing.Optional[builtins.str] = None,
|
|
3950
4707
|
interchange_control_headers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnership.X12InterchangeControlHeadersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3951
4708
|
validate_edi: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
3952
4709
|
) -> None:
|
|
@@ -4137,6 +4894,13 @@ def _typecheckingstub__d4ec179f77fa2da856518d97a9b83e88d0c96784ca483f80c070b398e
|
|
|
4137
4894
|
"""Type checking stubs"""
|
|
4138
4895
|
pass
|
|
4139
4896
|
|
|
4897
|
+
def _typecheckingstub__bb01391868543c9042ef70dbd21634249f177cb7ac9ad6ddf2b2583c136e529b(
|
|
4898
|
+
*,
|
|
4899
|
+
x12: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTransformer.X12AdvancedOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4900
|
+
) -> None:
|
|
4901
|
+
"""Type checking stubs"""
|
|
4902
|
+
pass
|
|
4903
|
+
|
|
4140
4904
|
def _typecheckingstub__0a90856b523d4a63e08c58604f08df0cd4ca6647b6d8b2bf4c0c6238831a179a(
|
|
4141
4905
|
*,
|
|
4142
4906
|
x12_details: typing.Union[_IResolvable_da3f097b, typing.Union[CfnTransformer.X12DetailsProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
@@ -4154,6 +4918,7 @@ def _typecheckingstub__4fd1bb8229a0f694482eb19adf96ad49a74295bc6d7acb9ae07377337
|
|
|
4154
4918
|
def _typecheckingstub__26660093b7b88e1d4689618f27b43e1e286cfcdb3adbc4c515c4b29513332a12(
|
|
4155
4919
|
*,
|
|
4156
4920
|
from_format: builtins.str,
|
|
4921
|
+
advanced_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTransformer.AdvancedOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4157
4922
|
format_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTransformer.FormatOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4158
4923
|
) -> None:
|
|
4159
4924
|
"""Type checking stubs"""
|
|
@@ -4191,6 +4956,13 @@ def _typecheckingstub__f6b7e60975e30fa176cbce1116829b7ea73143bc6b12e63afdd39fa25
|
|
|
4191
4956
|
"""Type checking stubs"""
|
|
4192
4957
|
pass
|
|
4193
4958
|
|
|
4959
|
+
def _typecheckingstub__0d6cdec7bccb6d811748cbb3f28ec5b4408f4496a924455516c3f90fd268b81c(
|
|
4960
|
+
*,
|
|
4961
|
+
split_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTransformer.X12SplitOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4962
|
+
) -> None:
|
|
4963
|
+
"""Type checking stubs"""
|
|
4964
|
+
pass
|
|
4965
|
+
|
|
4194
4966
|
def _typecheckingstub__6c52ecd7c7c399e4bebfaf5bf8793e65928fdad0c0133ff1ce55c05683b44ac7(
|
|
4195
4967
|
*,
|
|
4196
4968
|
transaction_set: typing.Optional[builtins.str] = None,
|
|
@@ -4199,6 +4971,13 @@ def _typecheckingstub__6c52ecd7c7c399e4bebfaf5bf8793e65928fdad0c0133ff1ce55c0568
|
|
|
4199
4971
|
"""Type checking stubs"""
|
|
4200
4972
|
pass
|
|
4201
4973
|
|
|
4974
|
+
def _typecheckingstub__8eda5d523e00df1c59382ff9b447e68e4b9960ae993e8a6bceb3337c0646dede(
|
|
4975
|
+
*,
|
|
4976
|
+
split_by: typing.Optional[builtins.str] = None,
|
|
4977
|
+
) -> None:
|
|
4978
|
+
"""Type checking stubs"""
|
|
4979
|
+
pass
|
|
4980
|
+
|
|
4202
4981
|
def _typecheckingstub__69e342f03b6075725a81423ccb4db79ba04bb935c9a3fd129f49fd2954e7cc21(
|
|
4203
4982
|
*,
|
|
4204
4983
|
name: builtins.str,
|