aws-cdk-lib 2.162.1__py3-none-any.whl → 2.163.1__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.

Files changed (59) hide show
  1. aws_cdk/__init__.py +5 -7
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.162.1.jsii.tgz → aws-cdk-lib@2.163.1.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigatewayv2/__init__.py +7 -7
  5. aws_cdk/aws_appflow/__init__.py +30 -16
  6. aws_cdk/aws_appsync/__init__.py +11 -21
  7. aws_cdk/aws_autoscaling/__init__.py +123 -0
  8. aws_cdk/aws_b2bi/__init__.py +83 -57
  9. aws_cdk/aws_cloudformation/__init__.py +5 -7
  10. aws_cdk/aws_codebuild/__init__.py +19 -40
  11. aws_cdk/aws_codepipeline/__init__.py +88 -7
  12. aws_cdk/aws_cognito/__init__.py +282 -168
  13. aws_cdk/aws_dms/__init__.py +1076 -117
  14. aws_cdk/aws_docdb/__init__.py +19 -13
  15. aws_cdk/aws_dynamodb/__init__.py +43 -22
  16. aws_cdk/aws_ec2/__init__.py +1213 -38
  17. aws_cdk/aws_ecs/__init__.py +187 -18
  18. aws_cdk/aws_ecs_patterns/__init__.py +189 -27
  19. aws_cdk/aws_efs/__init__.py +56 -37
  20. aws_cdk/aws_eks/__init__.py +6 -2
  21. aws_cdk/aws_elasticache/__init__.py +118 -118
  22. aws_cdk/aws_elasticloadbalancingv2/__init__.py +21 -1
  23. aws_cdk/aws_emr/__init__.py +124 -57
  24. aws_cdk/aws_events/__init__.py +40 -0
  25. aws_cdk/aws_fms/__init__.py +757 -8
  26. aws_cdk/aws_fsx/__init__.py +245 -10
  27. aws_cdk/aws_gamelift/__init__.py +121 -0
  28. aws_cdk/aws_glue/__init__.py +344 -61
  29. aws_cdk/aws_iam/__init__.py +44 -0
  30. aws_cdk/aws_identitystore/__init__.py +4 -2
  31. aws_cdk/aws_iot/__init__.py +40 -12
  32. aws_cdk/aws_kinesis/__init__.py +239 -0
  33. aws_cdk/aws_kms/__init__.py +92 -3
  34. aws_cdk/aws_lambda/__init__.py +2 -2
  35. aws_cdk/aws_mediapackagev2/__init__.py +26 -10
  36. aws_cdk/aws_memorydb/__init__.py +7 -7
  37. aws_cdk/aws_networkfirewall/__init__.py +89 -0
  38. aws_cdk/aws_qbusiness/__init__.py +51 -7
  39. aws_cdk/aws_quicksight/__init__.py +221 -87
  40. aws_cdk/aws_rds/__init__.py +376 -75
  41. aws_cdk/aws_redshift/__init__.py +493 -13
  42. aws_cdk/aws_route53profiles/__init__.py +4 -2
  43. aws_cdk/aws_route53resolver/__init__.py +26 -60
  44. aws_cdk/aws_s3/__init__.py +104 -4
  45. aws_cdk/aws_s3express/__init__.py +73 -13
  46. aws_cdk/aws_s3outposts/__init__.py +21 -12
  47. aws_cdk/aws_sagemaker/__init__.py +4 -44
  48. aws_cdk/aws_ssmquicksetup/__init__.py +2 -2
  49. aws_cdk/aws_stepfunctions/__init__.py +529 -156
  50. aws_cdk/aws_transfer/__init__.py +15 -4
  51. aws_cdk/aws_waf/__init__.py +11 -11
  52. aws_cdk/aws_wafregional/__init__.py +12 -12
  53. aws_cdk/aws_wisdom/__init__.py +710 -5
  54. {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.1.dist-info}/METADATA +1 -1
  55. {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.1.dist-info}/RECORD +59 -59
  56. {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.1.dist-info}/LICENSE +0 -0
  57. {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.1.dist-info}/NOTICE +0 -0
  58. {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.1.dist-info}/WHEEL +0 -0
  59. {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.1.dist-info}/top_level.txt +0 -0
@@ -429,7 +429,7 @@ class CfnCapability(
429
429
  :param output_location: Contains the Amazon S3 bucket and prefix for the location of the output file, which is contained in an ``S3Location`` object.
430
430
  :param transformer_id: Returns the system-assigned unique identifier for the transformer.
431
431
  :param type: Returns the type of the capability. Currently, only ``edi`` is supported.
432
- :param capability_direction:
432
+ :param capability_direction: Specifies whether this is capability is for inbound or outbound transformations.
433
433
 
434
434
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-ediconfiguration.html
435
435
  :exampleMetadata: fixture=_generated
@@ -527,7 +527,8 @@ class CfnCapability(
527
527
 
528
528
  @builtins.property
529
529
  def capability_direction(self) -> typing.Optional[builtins.str]:
530
- '''
530
+ '''Specifies whether this is capability is for inbound or outbound transformations.
531
+
531
532
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-ediconfiguration.html#cfn-b2bi-capability-ediconfiguration-capabilitydirection
532
533
  '''
533
534
  result = self._values.get("capability_direction")
@@ -992,7 +993,7 @@ class CfnPartnership(
992
993
  :param email:
993
994
  :param name: Returns the name of the partnership.
994
995
  :param profile_id: Returns the unique, system-generated identifier for the profile connected to this partnership.
995
- :param capability_options:
996
+ :param capability_options: Contains the details for an Outbound EDI capability.
996
997
  :param phone:
997
998
  :param tags: A key-value pair for a specific partnership. Tags are metadata that you can use to search for and group capabilities for various purposes.
998
999
  '''
@@ -1154,6 +1155,7 @@ class CfnPartnership(
1154
1155
  def capability_options(
1155
1156
  self,
1156
1157
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.CapabilityOptionsProperty"]]:
1158
+ '''Contains the details for an Outbound EDI capability.'''
1157
1159
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.CapabilityOptionsProperty"]], jsii.get(self, "capabilityOptions"))
1158
1160
 
1159
1161
  @capability_options.setter
@@ -1202,8 +1204,9 @@ class CfnPartnership(
1202
1204
  *,
1203
1205
  outbound_edi: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnership.OutboundEdiOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1204
1206
  ) -> None:
1205
- '''
1206
- :param outbound_edi:
1207
+ '''Contains the details for an Outbound EDI capability.
1208
+
1209
+ :param outbound_edi: A structure that contains the outbound EDI options.
1207
1210
 
1208
1211
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-capabilityoptions.html
1209
1212
  :exampleMetadata: fixture=_generated
@@ -1254,7 +1257,8 @@ class CfnPartnership(
1254
1257
  def outbound_edi(
1255
1258
  self,
1256
1259
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.OutboundEdiOptionsProperty"]]:
1257
- '''
1260
+ '''A structure that contains the outbound EDI options.
1261
+
1258
1262
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-capabilityoptions.html#cfn-b2bi-partnership-capabilityoptions-outboundedi
1259
1263
  '''
1260
1264
  result = self._values.get("outbound_edi")
@@ -1282,8 +1286,9 @@ class CfnPartnership(
1282
1286
  *,
1283
1287
  x12: typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnership.X12EnvelopeProperty", typing.Dict[builtins.str, typing.Any]]],
1284
1288
  ) -> None:
1285
- '''
1286
- :param x12:
1289
+ '''A container for outbound EDI options.
1290
+
1291
+ :param x12: A structure that contains an X12 envelope structure.
1287
1292
 
1288
1293
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-outboundedioptions.html
1289
1294
  :exampleMetadata: fixture=_generated
@@ -1332,7 +1337,8 @@ class CfnPartnership(
1332
1337
  def x12(
1333
1338
  self,
1334
1339
  ) -> typing.Union[_IResolvable_da3f097b, "CfnPartnership.X12EnvelopeProperty"]:
1335
- '''
1340
+ '''A structure that contains an X12 envelope structure.
1341
+
1336
1342
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-outboundedioptions.html#cfn-b2bi-partnership-outboundedioptions-x12
1337
1343
  '''
1338
1344
  result = self._values.get("x12")
@@ -1446,8 +1452,15 @@ class CfnPartnership(
1446
1452
  *,
1447
1453
  common: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnership.X12OutboundEdiHeadersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1448
1454
  ) -> None:
1449
- '''
1450
- :param common:
1455
+ '''A wrapper structure for an X12 definition object.
1456
+
1457
+ the X12 envelope ensures the integrity of the data and the efficiency of the information exchange. The X12 message structure has hierarchical levels. From highest to the lowest, they are:
1458
+
1459
+ - Interchange Envelope
1460
+ - Functional Group
1461
+ - Transaction Set
1462
+
1463
+ :param common: A container for the X12 outbound EDI headers.
1451
1464
 
1452
1465
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12envelope.html
1453
1466
  :exampleMetadata: fixture=_generated
@@ -1494,7 +1507,8 @@ class CfnPartnership(
1494
1507
  def common(
1495
1508
  self,
1496
1509
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.X12OutboundEdiHeadersProperty"]]:
1497
- '''
1510
+ '''A container for the X12 outbound EDI headers.
1511
+
1498
1512
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12envelope.html#cfn-b2bi-partnership-x12envelope-common
1499
1513
  '''
1500
1514
  result = self._values.get("common")
@@ -1760,11 +1774,12 @@ class CfnPartnership(
1760
1774
  interchange_control_headers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnership.X12InterchangeControlHeadersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1761
1775
  validate_edi: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
1762
1776
  ) -> None:
1763
- '''
1764
- :param delimiters:
1765
- :param functional_group_headers:
1766
- :param interchange_control_headers:
1767
- :param validate_edi:
1777
+ '''A structure containing the details for an outbound EDI object.
1778
+
1779
+ :param delimiters: The delimiters, for example semicolon ( ``;`` ), that separates sections of the headers for the X12 object.
1780
+ :param functional_group_headers: The functional group headers for the X12 object.
1781
+ :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
+ :param validate_edi: Specifies whether or not to validate the EDI for this X12 object: ``TRUE`` or ``FALSE`` .
1768
1783
 
1769
1784
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12outboundediheaders.html
1770
1785
  :exampleMetadata: fixture=_generated
@@ -1818,7 +1833,8 @@ class CfnPartnership(
1818
1833
  def delimiters(
1819
1834
  self,
1820
1835
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.X12DelimitersProperty"]]:
1821
- '''
1836
+ '''The delimiters, for example semicolon ( ``;`` ), that separates sections of the headers for the X12 object.
1837
+
1822
1838
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12outboundediheaders.html#cfn-b2bi-partnership-x12outboundediheaders-delimiters
1823
1839
  '''
1824
1840
  result = self._values.get("delimiters")
@@ -1828,7 +1844,8 @@ class CfnPartnership(
1828
1844
  def functional_group_headers(
1829
1845
  self,
1830
1846
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.X12FunctionalGroupHeadersProperty"]]:
1831
- '''
1847
+ '''The functional group headers for the X12 object.
1848
+
1832
1849
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12outboundediheaders.html#cfn-b2bi-partnership-x12outboundediheaders-functionalgroupheaders
1833
1850
  '''
1834
1851
  result = self._values.get("functional_group_headers")
@@ -1838,7 +1855,8 @@ class CfnPartnership(
1838
1855
  def interchange_control_headers(
1839
1856
  self,
1840
1857
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnership.X12InterchangeControlHeadersProperty"]]:
1841
- '''
1858
+ '''In X12 EDI messages, delimiters are used to mark the end of segments or elements, and are defined in the interchange control header.
1859
+
1842
1860
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12outboundediheaders.html#cfn-b2bi-partnership-x12outboundediheaders-interchangecontrolheaders
1843
1861
  '''
1844
1862
  result = self._values.get("interchange_control_headers")
@@ -1848,7 +1866,8 @@ class CfnPartnership(
1848
1866
  def validate_edi(
1849
1867
  self,
1850
1868
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
1851
- '''
1869
+ '''Specifies whether or not to validate the EDI for this X12 object: ``TRUE`` or ``FALSE`` .
1870
+
1852
1871
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12outboundediheaders.html#cfn-b2bi-partnership-x12outboundediheaders-validateedi
1853
1872
  '''
1854
1873
  result = self._values.get("validate_edi")
@@ -1897,7 +1916,7 @@ class CfnPartnershipProps:
1897
1916
  :param email:
1898
1917
  :param name: Returns the name of the partnership.
1899
1918
  :param profile_id: Returns the unique, system-generated identifier for the profile connected to this partnership.
1900
- :param capability_options:
1919
+ :param capability_options: Contains the details for an Outbound EDI capability.
1901
1920
  :param phone:
1902
1921
  :param tags: A key-value pair for a specific partnership. Tags are metadata that you can use to search for and group capabilities for various purposes.
1903
1922
 
@@ -2017,7 +2036,8 @@ class CfnPartnershipProps:
2017
2036
  def capability_options(
2018
2037
  self,
2019
2038
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPartnership.CapabilityOptionsProperty]]:
2020
- '''
2039
+ '''Contains the details for an Outbound EDI capability.
2040
+
2021
2041
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html#cfn-b2bi-partnership-capabilityoptions
2022
2042
  '''
2023
2043
  result = self._values.get("capability_options")
@@ -2539,14 +2559,14 @@ class CfnTransformer(
2539
2559
  :param id: Construct identifier for this resource (unique in its scope).
2540
2560
  :param name: Returns the descriptive name for the transformer.
2541
2561
  :param status: Returns the state of the newly created transformer. The transformer can be either ``active`` or ``inactive`` . For the transformer to be used in a capability, its status must ``active`` .
2542
- :param edi_type: (deprecated) 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.
2543
- :param file_format: (deprecated) Returns that the currently supported file formats for EDI transformations are ``JSON`` and ``XML`` .
2544
- :param input_conversion:
2545
- :param mapping:
2546
- :param mapping_template: (deprecated) Returns a sample EDI document that is used by a transformer as a guide for processing the EDI data.
2547
- :param output_conversion:
2548
- :param sample_document: (deprecated) Returns a sample EDI document that is used by a transformer as a guide for processing the EDI data.
2549
- :param sample_documents:
2562
+ :param edi_type:
2563
+ :param file_format:
2564
+ :param input_conversion: Returns a structure that contains the format options for the transformation.
2565
+ :param mapping: Returns the structure that contains the mapping template and its language (either XSLT or JSONATA).
2566
+ :param mapping_template: (deprecated) This shape is deprecated: This is a legacy trait. Please use input-conversion or output-conversion.
2567
+ :param output_conversion: Returns the ``OutputConversion`` object, which contains the format options for the outbound transformation.
2568
+ :param sample_document: (deprecated) This shape is deprecated: This is a legacy trait. Please use input-conversion or output-conversion.
2569
+ :param sample_documents: 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.
2550
2570
  :param tags: A key-value pair for a specific transformer. Tags are metadata that you can use to search for and group capabilities for various purposes.
2551
2571
  '''
2552
2572
  if __debug__:
@@ -2679,8 +2699,7 @@ class CfnTransformer(
2679
2699
  def edi_type(
2680
2700
  self,
2681
2701
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTransformer.EdiTypeProperty"]]:
2682
- '''(deprecated) Returns the details for the EDI standard that is being used for the transformer.
2683
-
2702
+ '''
2684
2703
  :deprecated: this property has been deprecated
2685
2704
 
2686
2705
  :stability: deprecated
@@ -2700,8 +2719,7 @@ class CfnTransformer(
2700
2719
  @builtins.property
2701
2720
  @jsii.member(jsii_name="fileFormat")
2702
2721
  def file_format(self) -> typing.Optional[builtins.str]:
2703
- '''(deprecated) Returns that the currently supported file formats for EDI transformations are ``JSON`` and ``XML`` .
2704
-
2722
+ '''
2705
2723
  :deprecated: this property has been deprecated
2706
2724
 
2707
2725
  :stability: deprecated
@@ -2720,6 +2738,7 @@ class CfnTransformer(
2720
2738
  def input_conversion(
2721
2739
  self,
2722
2740
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTransformer.InputConversionProperty"]]:
2741
+ '''Returns a structure that contains the format options for the transformation.'''
2723
2742
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTransformer.InputConversionProperty"]], jsii.get(self, "inputConversion"))
2724
2743
 
2725
2744
  @input_conversion.setter
@@ -2737,6 +2756,7 @@ class CfnTransformer(
2737
2756
  def mapping(
2738
2757
  self,
2739
2758
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTransformer.MappingProperty"]]:
2759
+ '''Returns the structure that contains the mapping template and its language (either XSLT or JSONATA).'''
2740
2760
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTransformer.MappingProperty"]], jsii.get(self, "mapping"))
2741
2761
 
2742
2762
  @mapping.setter
@@ -2752,7 +2772,7 @@ class CfnTransformer(
2752
2772
  @builtins.property
2753
2773
  @jsii.member(jsii_name="mappingTemplate")
2754
2774
  def mapping_template(self) -> typing.Optional[builtins.str]:
2755
- '''(deprecated) Returns a sample EDI document that is used by a transformer as a guide for processing the EDI data.
2775
+ '''(deprecated) This shape is deprecated: This is a legacy trait.
2756
2776
 
2757
2777
  :deprecated: this property has been deprecated
2758
2778
 
@@ -2772,6 +2792,7 @@ class CfnTransformer(
2772
2792
  def output_conversion(
2773
2793
  self,
2774
2794
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTransformer.OutputConversionProperty"]]:
2795
+ '''Returns the ``OutputConversion`` object, which contains the format options for the outbound transformation.'''
2775
2796
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTransformer.OutputConversionProperty"]], jsii.get(self, "outputConversion"))
2776
2797
 
2777
2798
  @output_conversion.setter
@@ -2787,7 +2808,7 @@ class CfnTransformer(
2787
2808
  @builtins.property
2788
2809
  @jsii.member(jsii_name="sampleDocument")
2789
2810
  def sample_document(self) -> typing.Optional[builtins.str]:
2790
- '''(deprecated) Returns a sample EDI document that is used by a transformer as a guide for processing the EDI data.
2811
+ '''(deprecated) This shape is deprecated: This is a legacy trait.
2791
2812
 
2792
2813
  :deprecated: this property has been deprecated
2793
2814
 
@@ -2807,6 +2828,7 @@ class CfnTransformer(
2807
2828
  def sample_documents(
2808
2829
  self,
2809
2830
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTransformer.SampleDocumentsProperty"]]:
2831
+ '''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.'''
2810
2832
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTransformer.SampleDocumentsProperty"]], jsii.get(self, "sampleDocuments"))
2811
2833
 
2812
2834
  @sample_documents.setter
@@ -3429,14 +3451,14 @@ class CfnTransformerProps:
3429
3451
 
3430
3452
  :param name: Returns the descriptive name for the transformer.
3431
3453
  :param status: Returns the state of the newly created transformer. The transformer can be either ``active`` or ``inactive`` . For the transformer to be used in a capability, its status must ``active`` .
3432
- :param edi_type: (deprecated) 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.
3433
- :param file_format: (deprecated) Returns that the currently supported file formats for EDI transformations are ``JSON`` and ``XML`` .
3434
- :param input_conversion:
3435
- :param mapping:
3436
- :param mapping_template: (deprecated) Returns a sample EDI document that is used by a transformer as a guide for processing the EDI data.
3437
- :param output_conversion:
3438
- :param sample_document: (deprecated) Returns a sample EDI document that is used by a transformer as a guide for processing the EDI data.
3439
- :param sample_documents:
3454
+ :param edi_type:
3455
+ :param file_format:
3456
+ :param input_conversion: Returns a structure that contains the format options for the transformation.
3457
+ :param mapping: Returns the structure that contains the mapping template and its language (either XSLT or JSONATA).
3458
+ :param mapping_template: (deprecated) This shape is deprecated: This is a legacy trait. Please use input-conversion or output-conversion.
3459
+ :param output_conversion: Returns the ``OutputConversion`` object, which contains the format options for the outbound transformation.
3460
+ :param sample_document: (deprecated) This shape is deprecated: This is a legacy trait. Please use input-conversion or output-conversion.
3461
+ :param sample_documents: 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.
3440
3462
  :param tags: A key-value pair for a specific transformer. Tags are metadata that you can use to search for and group capabilities for various purposes.
3441
3463
 
3442
3464
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-transformer.html
@@ -3565,10 +3587,7 @@ class CfnTransformerProps:
3565
3587
  def edi_type(
3566
3588
  self,
3567
3589
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnTransformer.EdiTypeProperty]]:
3568
- '''(deprecated) Returns the details for the EDI standard that is being used for the transformer.
3569
-
3570
- Currently, only X12 is supported. X12 is a set of standards and corresponding messages that define specific business documents.
3571
-
3590
+ '''
3572
3591
  :deprecated: this property has been deprecated
3573
3592
 
3574
3593
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-transformer.html#cfn-b2bi-transformer-editype
@@ -3579,8 +3598,7 @@ class CfnTransformerProps:
3579
3598
 
3580
3599
  @builtins.property
3581
3600
  def file_format(self) -> typing.Optional[builtins.str]:
3582
- '''(deprecated) Returns that the currently supported file formats for EDI transformations are ``JSON`` and ``XML`` .
3583
-
3601
+ '''
3584
3602
  :deprecated: this property has been deprecated
3585
3603
 
3586
3604
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-transformer.html#cfn-b2bi-transformer-fileformat
@@ -3593,7 +3611,8 @@ class CfnTransformerProps:
3593
3611
  def input_conversion(
3594
3612
  self,
3595
3613
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnTransformer.InputConversionProperty]]:
3596
- '''
3614
+ '''Returns a structure that contains the format options for the transformation.
3615
+
3597
3616
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-transformer.html#cfn-b2bi-transformer-inputconversion
3598
3617
  '''
3599
3618
  result = self._values.get("input_conversion")
@@ -3603,7 +3622,8 @@ class CfnTransformerProps:
3603
3622
  def mapping(
3604
3623
  self,
3605
3624
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnTransformer.MappingProperty]]:
3606
- '''
3625
+ '''Returns the structure that contains the mapping template and its language (either XSLT or JSONATA).
3626
+
3607
3627
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-transformer.html#cfn-b2bi-transformer-mapping
3608
3628
  '''
3609
3629
  result = self._values.get("mapping")
@@ -3611,7 +3631,9 @@ class CfnTransformerProps:
3611
3631
 
3612
3632
  @builtins.property
3613
3633
  def mapping_template(self) -> typing.Optional[builtins.str]:
3614
- '''(deprecated) Returns a sample EDI document that is used by a transformer as a guide for processing the EDI data.
3634
+ '''(deprecated) This shape is deprecated: This is a legacy trait.
3635
+
3636
+ Please use input-conversion or output-conversion.
3615
3637
 
3616
3638
  :deprecated: this property has been deprecated
3617
3639
 
@@ -3625,7 +3647,8 @@ class CfnTransformerProps:
3625
3647
  def output_conversion(
3626
3648
  self,
3627
3649
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnTransformer.OutputConversionProperty]]:
3628
- '''
3650
+ '''Returns the ``OutputConversion`` object, which contains the format options for the outbound transformation.
3651
+
3629
3652
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-transformer.html#cfn-b2bi-transformer-outputconversion
3630
3653
  '''
3631
3654
  result = self._values.get("output_conversion")
@@ -3633,7 +3656,9 @@ class CfnTransformerProps:
3633
3656
 
3634
3657
  @builtins.property
3635
3658
  def sample_document(self) -> typing.Optional[builtins.str]:
3636
- '''(deprecated) Returns a sample EDI document that is used by a transformer as a guide for processing the EDI data.
3659
+ '''(deprecated) This shape is deprecated: This is a legacy trait.
3660
+
3661
+ Please use input-conversion or output-conversion.
3637
3662
 
3638
3663
  :deprecated: this property has been deprecated
3639
3664
 
@@ -3647,7 +3672,8 @@ class CfnTransformerProps:
3647
3672
  def sample_documents(
3648
3673
  self,
3649
3674
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnTransformer.SampleDocumentsProperty]]:
3650
- '''
3675
+ '''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.
3676
+
3651
3677
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-transformer.html#cfn-b2bi-transformer-sampledocuments
3652
3678
  '''
3653
3679
  result = self._values.get("sample_documents")
@@ -1830,7 +1830,7 @@ class CfnModuleVersion(
1830
1830
  def attr_schema(self) -> builtins.str:
1831
1831
  '''The schema that defines the extension.
1832
1832
 
1833
- For more information about extension schemas, see `Resource Provider Schema <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-schema.html>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* .
1833
+ For more information about extension schemas, see `Resource type schema <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-schema.html>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* .
1834
1834
 
1835
1835
  :cloudformationAttribute: Schema
1836
1836
  '''
@@ -2369,7 +2369,7 @@ class CfnPublisher(
2369
2369
  :param scope: Scope in which this resource is defined.
2370
2370
  :param id: Construct identifier for this resource (unique in its scope).
2371
2371
  :param accept_terms_and_conditions: Whether you accept the `Terms and Conditions <https://docs.aws.amazon.com/https://cloudformation-registry-documents.s3.amazonaws.com/Terms_and_Conditions_for_AWS_CloudFormation_Registry_Publishers.pdf>`_ for publishing extensions in the CloudFormation registry. You must accept the terms and conditions in order to register to publish public extensions to the CloudFormation registry. The default is ``false`` .
2372
- :param connection_arn: If you are using a Bitbucket or GitHub account for identity verification, the Amazon Resource Name (ARN) for your connection to that account. For more information, see `Registering your account to publish CloudFormation extensions <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* .
2372
+ :param connection_arn: If you are using a Bitbucket or GitHub account for identity verification, the Amazon Resource Name (ARN) for your connection to that account. For more information, see `Prerequisite: Registering your account to publish CloudFormation extensions <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* .
2373
2373
  '''
2374
2374
  if __debug__:
2375
2375
  type_hints = typing.get_type_hints(_typecheckingstub__98c7559405984ded6c9804bd442f72ad08edd6b60ad34619af070342a90bb1f0)
@@ -2505,7 +2505,7 @@ class CfnPublisherProps:
2505
2505
  '''Properties for defining a ``CfnPublisher``.
2506
2506
 
2507
2507
  :param accept_terms_and_conditions: Whether you accept the `Terms and Conditions <https://docs.aws.amazon.com/https://cloudformation-registry-documents.s3.amazonaws.com/Terms_and_Conditions_for_AWS_CloudFormation_Registry_Publishers.pdf>`_ for publishing extensions in the CloudFormation registry. You must accept the terms and conditions in order to register to publish public extensions to the CloudFormation registry. The default is ``false`` .
2508
- :param connection_arn: If you are using a Bitbucket or GitHub account for identity verification, the Amazon Resource Name (ARN) for your connection to that account. For more information, see `Registering your account to publish CloudFormation extensions <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* .
2508
+ :param connection_arn: If you are using a Bitbucket or GitHub account for identity verification, the Amazon Resource Name (ARN) for your connection to that account. For more information, see `Prerequisite: Registering your account to publish CloudFormation extensions <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* .
2509
2509
 
2510
2510
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-publisher.html
2511
2511
  :exampleMetadata: fixture=_generated
@@ -2551,7 +2551,7 @@ class CfnPublisherProps:
2551
2551
  def connection_arn(self) -> typing.Optional[builtins.str]:
2552
2552
  '''If you are using a Bitbucket or GitHub account for identity verification, the Amazon Resource Name (ARN) for your connection to that account.
2553
2553
 
2554
- For more information, see `Registering your account to publish CloudFormation extensions <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* .
2554
+ For more information, see `Prerequisite: Registering your account to publish CloudFormation extensions <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* .
2555
2555
 
2556
2556
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-publisher.html#cfn-cloudformation-publisher-connectionarn
2557
2557
  '''
@@ -5239,9 +5239,7 @@ class CfnTypeActivation(
5239
5239
  ):
5240
5240
  '''Activates a public third-party extension, making it available for use in stack templates.
5241
5241
 
5242
- For more information, see `Using public extensions <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-public.html>`_ in the *AWS CloudFormation User Guide* .
5243
-
5244
- Once you have activated a public third-party extension in your account and Region, use `SetTypeConfiguration <https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_SetTypeConfiguration.html>`_ to specify configuration properties for the extension. For more information, see `Configuring extensions at the account level <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-private.html#registry-set-configuration>`_ in the *AWS CloudFormation User Guide* .
5242
+ Once you have activated a public third-party extension in your account and Region, use `SetTypeConfiguration <https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_SetTypeConfiguration.html>`_ to specify configuration properties for the extension. For more information, see `Using public extensions <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-public.html>`_ in the *AWS CloudFormation User Guide* .
5245
5243
 
5246
5244
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-typeactivation.html
5247
5245
  :cloudformationResource: AWS::CloudFormation::TypeActivation
@@ -2179,11 +2179,11 @@ class CfnFleet(
2179
2179
  :param scope: Scope in which this resource is defined.
2180
2180
  :param id: Construct identifier for this resource (unique in its scope).
2181
2181
  :param base_capacity: The initial number of machines allocated to the compute fleet, which defines the number of builds that can run in parallel.
2182
- :param compute_type: .. epigraph:: Updating this field is not allowed for ``MAC_ARM`` . Information about the compute resources the compute fleet uses. Available values include: - ``BUILD_GENERAL1_SMALL`` : Use up to 3 GB memory and 2 vCPUs for builds. - ``BUILD_GENERAL1_MEDIUM`` : Use up to 7 GB memory and 4 vCPUs for builds. - ``BUILD_GENERAL1_LARGE`` : Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type. - ``BUILD_GENERAL1_XLARGE`` : Use up to 70 GB memory and 36 vCPUs for builds, depending on your environment type. - ``BUILD_GENERAL1_2XLARGE`` : Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed. If you use ``BUILD_GENERAL1_SMALL`` : - For environment type ``LINUX_CONTAINER`` , you can use up to 3 GB memory and 2 vCPUs for builds. - For environment type ``LINUX_GPU_CONTAINER`` , you can use up to 16 GB memory, 4 vCPUs, and 1 NVIDIA A10G Tensor Core GPU for builds. - For environment type ``ARM_CONTAINER`` , you can use up to 4 GB memory and 2 vCPUs on ARM-based processors for builds. If you use ``BUILD_GENERAL1_LARGE`` : - For environment type ``LINUX_CONTAINER`` , you can use up to 15 GB memory and 8 vCPUs for builds. - For environment type ``LINUX_GPU_CONTAINER`` , you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds. - For environment type ``ARM_CONTAINER`` , you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds. For more information, see `Build environment compute types <https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html>`_ in the *AWS CodeBuild User Guide.*
2183
- :param environment_type: .. epigraph:: Updating this field is not allowed for ``MAC_ARM`` . The environment type of the compute fleet. - The environment type ``ARM_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Singapore), Asia Pacific (Sydney), EU (Frankfurt), and South America (São Paulo). - The environment type ``LINUX_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Singapore), Asia Pacific (Sydney), South America (São Paulo), and Asia Pacific (Mumbai). - The environment type ``LINUX_GPU_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), EU (Frankfurt), Asia Pacific (Tokyo), and Asia Pacific (Sydney). - The environment type ``WINDOWS_SERVER_2019_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Asia Pacific (Sydney), Asia Pacific (Tokyo), Asia Pacific (Mumbai) and EU (Ireland). - The environment type ``WINDOWS_SERVER_2022_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), EU (Frankfurt), Asia Pacific (Sydney), Asia Pacific (Singapore), Asia Pacific (Tokyo), South America (São Paulo) and Asia Pacific (Mumbai). For more information, see `Build environment compute types <https://docs.aws.amazon.com//codebuild/latest/userguide/build-env-ref-compute-types.html>`_ in the *AWS CodeBuild user guide* .
2182
+ :param compute_type: Information about the compute resources the compute fleet uses. Available values include:. - ``BUILD_GENERAL1_SMALL`` : Use up to 3 GB memory and 2 vCPUs for builds. - ``BUILD_GENERAL1_MEDIUM`` : Use up to 7 GB memory and 4 vCPUs for builds. - ``BUILD_GENERAL1_LARGE`` : Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type. - ``BUILD_GENERAL1_XLARGE`` : Use up to 70 GB memory and 36 vCPUs for builds, depending on your environment type. - ``BUILD_GENERAL1_2XLARGE`` : Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed. If you use ``BUILD_GENERAL1_SMALL`` : - For environment type ``LINUX_CONTAINER`` , you can use up to 3 GB memory and 2 vCPUs for builds. - For environment type ``LINUX_GPU_CONTAINER`` , you can use up to 16 GB memory, 4 vCPUs, and 1 NVIDIA A10G Tensor Core GPU for builds. - For environment type ``ARM_CONTAINER`` , you can use up to 4 GB memory and 2 vCPUs on ARM-based processors for builds. If you use ``BUILD_GENERAL1_LARGE`` : - For environment type ``LINUX_CONTAINER`` , you can use up to 15 GB memory and 8 vCPUs for builds. - For environment type ``LINUX_GPU_CONTAINER`` , you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds. - For environment type ``ARM_CONTAINER`` , you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds. For more information, see `Build environment compute types <https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html>`_ in the *AWS CodeBuild User Guide.*
2183
+ :param environment_type: The environment type of the compute fleet. - The environment type ``ARM_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Singapore), Asia Pacific (Sydney), EU (Frankfurt), and South America (São Paulo). - The environment type ``LINUX_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Singapore), Asia Pacific (Sydney), South America (São Paulo), and Asia Pacific (Mumbai). - The environment type ``LINUX_GPU_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), EU (Frankfurt), Asia Pacific (Tokyo), and Asia Pacific (Sydney). - The environment type ``WINDOWS_SERVER_2019_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Asia Pacific (Sydney), Asia Pacific (Tokyo), Asia Pacific (Mumbai) and EU (Ireland). - The environment type ``WINDOWS_SERVER_2022_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), EU (Frankfurt), Asia Pacific (Sydney), Asia Pacific (Singapore), Asia Pacific (Tokyo), South America (São Paulo) and Asia Pacific (Mumbai). For more information, see `Build environment compute types <https://docs.aws.amazon.com//codebuild/latest/userguide/build-env-ref-compute-types.html>`_ in the *AWS CodeBuild user guide* .
2184
2184
  :param fleet_service_role: The service role associated with the compute fleet. For more information, see `Allow a user to add a permission policy for a fleet service role <https://docs.aws.amazon.com/codebuild/latest/userguide/auth-and-access-control-iam-identity-based-access-control.html#customer-managed-policies-example-permission-policy-fleet-service-role.html>`_ in the *AWS CodeBuild User Guide* .
2185
- :param fleet_vpc_config: .. epigraph:: Updating this field is not allowed for ``MAC_ARM`` . Information about the VPC configuration that AWS CodeBuild accesses.
2186
- :param image_id: .. epigraph:: Updating this field is not allowed for ``MAC_ARM`` . The Amazon Machine Image (AMI) of the compute fleet.
2185
+ :param fleet_vpc_config: Information about the VPC configuration that AWS CodeBuild accesses.
2186
+ :param image_id: The Amazon Machine Image (AMI) of the compute fleet.
2187
2187
  :param name: The name of the compute fleet.
2188
2188
  :param overflow_behavior: The compute fleet overflow behavior. - For overflow behavior ``QUEUE`` , your overflow builds need to wait on the existing fleet instance to become available. - For overflow behavior ``ON_DEMAND`` , your overflow builds run on CodeBuild on-demand. .. epigraph:: If you choose to set your overflow behavior to on-demand while creating a VPC-connected fleet, make sure that you add the required VPC permissions to your project service role. For more information, see `Example policy statement to allow CodeBuild access to AWS services required to create a VPC network interface <https://docs.aws.amazon.com/codebuild/latest/userguide/auth-and-access-control-iam-identity-based-access-control.html#customer-managed-policies-example-create-vpc-network-interface>`_ .
2189
2189
  :param tags: A list of tag key and value pairs associated with this compute fleet. These tags are available for use by AWS services that support AWS CodeBuild compute fleet tags.
@@ -2272,9 +2272,10 @@ class CfnFleet(
2272
2272
  @builtins.property
2273
2273
  @jsii.member(jsii_name="computeType")
2274
2274
  def compute_type(self) -> typing.Optional[builtins.str]:
2275
- '''.. epigraph::
2275
+ '''Information about the compute resources the compute fleet uses.
2276
2276
 
2277
- Updating this field is not allowed for ``MAC_ARM`` .'''
2277
+ Available values include:.
2278
+ '''
2278
2279
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "computeType"))
2279
2280
 
2280
2281
  @compute_type.setter
@@ -2287,9 +2288,7 @@ class CfnFleet(
2287
2288
  @builtins.property
2288
2289
  @jsii.member(jsii_name="environmentType")
2289
2290
  def environment_type(self) -> typing.Optional[builtins.str]:
2290
- '''.. epigraph::
2291
-
2292
- Updating this field is not allowed for ``MAC_ARM`` .'''
2291
+ '''The environment type of the compute fleet.'''
2293
2292
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "environmentType"))
2294
2293
 
2295
2294
  @environment_type.setter
@@ -2317,9 +2316,7 @@ class CfnFleet(
2317
2316
  def fleet_vpc_config(
2318
2317
  self,
2319
2318
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFleet.VpcConfigProperty"]]:
2320
- '''.. epigraph::
2321
-
2322
- Updating this field is not allowed for ``MAC_ARM`` .'''
2319
+ '''Information about the VPC configuration that AWS CodeBuild accesses.'''
2323
2320
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFleet.VpcConfigProperty"]], jsii.get(self, "fleetVpcConfig"))
2324
2321
 
2325
2322
  @fleet_vpc_config.setter
@@ -2335,9 +2332,7 @@ class CfnFleet(
2335
2332
  @builtins.property
2336
2333
  @jsii.member(jsii_name="imageId")
2337
2334
  def image_id(self) -> typing.Optional[builtins.str]:
2338
- '''.. epigraph::
2339
-
2340
- Updating this field is not allowed for ``MAC_ARM`` .'''
2335
+ '''The Amazon Machine Image (AMI) of the compute fleet.'''
2341
2336
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "imageId"))
2342
2337
 
2343
2338
  @image_id.setter
@@ -2508,11 +2503,11 @@ class CfnFleetProps:
2508
2503
  '''Properties for defining a ``CfnFleet``.
2509
2504
 
2510
2505
  :param base_capacity: The initial number of machines allocated to the compute fleet, which defines the number of builds that can run in parallel.
2511
- :param compute_type: .. epigraph:: Updating this field is not allowed for ``MAC_ARM`` . Information about the compute resources the compute fleet uses. Available values include: - ``BUILD_GENERAL1_SMALL`` : Use up to 3 GB memory and 2 vCPUs for builds. - ``BUILD_GENERAL1_MEDIUM`` : Use up to 7 GB memory and 4 vCPUs for builds. - ``BUILD_GENERAL1_LARGE`` : Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type. - ``BUILD_GENERAL1_XLARGE`` : Use up to 70 GB memory and 36 vCPUs for builds, depending on your environment type. - ``BUILD_GENERAL1_2XLARGE`` : Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed. If you use ``BUILD_GENERAL1_SMALL`` : - For environment type ``LINUX_CONTAINER`` , you can use up to 3 GB memory and 2 vCPUs for builds. - For environment type ``LINUX_GPU_CONTAINER`` , you can use up to 16 GB memory, 4 vCPUs, and 1 NVIDIA A10G Tensor Core GPU for builds. - For environment type ``ARM_CONTAINER`` , you can use up to 4 GB memory and 2 vCPUs on ARM-based processors for builds. If you use ``BUILD_GENERAL1_LARGE`` : - For environment type ``LINUX_CONTAINER`` , you can use up to 15 GB memory and 8 vCPUs for builds. - For environment type ``LINUX_GPU_CONTAINER`` , you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds. - For environment type ``ARM_CONTAINER`` , you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds. For more information, see `Build environment compute types <https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html>`_ in the *AWS CodeBuild User Guide.*
2512
- :param environment_type: .. epigraph:: Updating this field is not allowed for ``MAC_ARM`` . The environment type of the compute fleet. - The environment type ``ARM_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Singapore), Asia Pacific (Sydney), EU (Frankfurt), and South America (São Paulo). - The environment type ``LINUX_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Singapore), Asia Pacific (Sydney), South America (São Paulo), and Asia Pacific (Mumbai). - The environment type ``LINUX_GPU_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), EU (Frankfurt), Asia Pacific (Tokyo), and Asia Pacific (Sydney). - The environment type ``WINDOWS_SERVER_2019_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Asia Pacific (Sydney), Asia Pacific (Tokyo), Asia Pacific (Mumbai) and EU (Ireland). - The environment type ``WINDOWS_SERVER_2022_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), EU (Frankfurt), Asia Pacific (Sydney), Asia Pacific (Singapore), Asia Pacific (Tokyo), South America (São Paulo) and Asia Pacific (Mumbai). For more information, see `Build environment compute types <https://docs.aws.amazon.com//codebuild/latest/userguide/build-env-ref-compute-types.html>`_ in the *AWS CodeBuild user guide* .
2506
+ :param compute_type: Information about the compute resources the compute fleet uses. Available values include:. - ``BUILD_GENERAL1_SMALL`` : Use up to 3 GB memory and 2 vCPUs for builds. - ``BUILD_GENERAL1_MEDIUM`` : Use up to 7 GB memory and 4 vCPUs for builds. - ``BUILD_GENERAL1_LARGE`` : Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type. - ``BUILD_GENERAL1_XLARGE`` : Use up to 70 GB memory and 36 vCPUs for builds, depending on your environment type. - ``BUILD_GENERAL1_2XLARGE`` : Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed. If you use ``BUILD_GENERAL1_SMALL`` : - For environment type ``LINUX_CONTAINER`` , you can use up to 3 GB memory and 2 vCPUs for builds. - For environment type ``LINUX_GPU_CONTAINER`` , you can use up to 16 GB memory, 4 vCPUs, and 1 NVIDIA A10G Tensor Core GPU for builds. - For environment type ``ARM_CONTAINER`` , you can use up to 4 GB memory and 2 vCPUs on ARM-based processors for builds. If you use ``BUILD_GENERAL1_LARGE`` : - For environment type ``LINUX_CONTAINER`` , you can use up to 15 GB memory and 8 vCPUs for builds. - For environment type ``LINUX_GPU_CONTAINER`` , you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds. - For environment type ``ARM_CONTAINER`` , you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds. For more information, see `Build environment compute types <https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html>`_ in the *AWS CodeBuild User Guide.*
2507
+ :param environment_type: The environment type of the compute fleet. - The environment type ``ARM_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Singapore), Asia Pacific (Sydney), EU (Frankfurt), and South America (São Paulo). - The environment type ``LINUX_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Singapore), Asia Pacific (Sydney), South America (São Paulo), and Asia Pacific (Mumbai). - The environment type ``LINUX_GPU_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), EU (Frankfurt), Asia Pacific (Tokyo), and Asia Pacific (Sydney). - The environment type ``WINDOWS_SERVER_2019_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Asia Pacific (Sydney), Asia Pacific (Tokyo), Asia Pacific (Mumbai) and EU (Ireland). - The environment type ``WINDOWS_SERVER_2022_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), EU (Frankfurt), Asia Pacific (Sydney), Asia Pacific (Singapore), Asia Pacific (Tokyo), South America (São Paulo) and Asia Pacific (Mumbai). For more information, see `Build environment compute types <https://docs.aws.amazon.com//codebuild/latest/userguide/build-env-ref-compute-types.html>`_ in the *AWS CodeBuild user guide* .
2513
2508
  :param fleet_service_role: The service role associated with the compute fleet. For more information, see `Allow a user to add a permission policy for a fleet service role <https://docs.aws.amazon.com/codebuild/latest/userguide/auth-and-access-control-iam-identity-based-access-control.html#customer-managed-policies-example-permission-policy-fleet-service-role.html>`_ in the *AWS CodeBuild User Guide* .
2514
- :param fleet_vpc_config: .. epigraph:: Updating this field is not allowed for ``MAC_ARM`` . Information about the VPC configuration that AWS CodeBuild accesses.
2515
- :param image_id: .. epigraph:: Updating this field is not allowed for ``MAC_ARM`` . The Amazon Machine Image (AMI) of the compute fleet.
2509
+ :param fleet_vpc_config: Information about the VPC configuration that AWS CodeBuild accesses.
2510
+ :param image_id: The Amazon Machine Image (AMI) of the compute fleet.
2516
2511
  :param name: The name of the compute fleet.
2517
2512
  :param overflow_behavior: The compute fleet overflow behavior. - For overflow behavior ``QUEUE`` , your overflow builds need to wait on the existing fleet instance to become available. - For overflow behavior ``ON_DEMAND`` , your overflow builds run on CodeBuild on-demand. .. epigraph:: If you choose to set your overflow behavior to on-demand while creating a VPC-connected fleet, make sure that you add the required VPC permissions to your project service role. For more information, see `Example policy statement to allow CodeBuild access to AWS services required to create a VPC network interface <https://docs.aws.amazon.com/codebuild/latest/userguide/auth-and-access-control-iam-identity-based-access-control.html#customer-managed-policies-example-create-vpc-network-interface>`_ .
2518
2513
  :param tags: A list of tag key and value pairs associated with this compute fleet. These tags are available for use by AWS services that support AWS CodeBuild compute fleet tags.
@@ -2587,11 +2582,7 @@ class CfnFleetProps:
2587
2582
 
2588
2583
  @builtins.property
2589
2584
  def compute_type(self) -> typing.Optional[builtins.str]:
2590
- '''.. epigraph::
2591
-
2592
- Updating this field is not allowed for ``MAC_ARM`` .
2593
-
2594
- Information about the compute resources the compute fleet uses. Available values include:
2585
+ '''Information about the compute resources the compute fleet uses. Available values include:.
2595
2586
 
2596
2587
  - ``BUILD_GENERAL1_SMALL`` : Use up to 3 GB memory and 2 vCPUs for builds.
2597
2588
  - ``BUILD_GENERAL1_MEDIUM`` : Use up to 7 GB memory and 4 vCPUs for builds.
@@ -2620,11 +2611,7 @@ class CfnFleetProps:
2620
2611
 
2621
2612
  @builtins.property
2622
2613
  def environment_type(self) -> typing.Optional[builtins.str]:
2623
- '''.. epigraph::
2624
-
2625
- Updating this field is not allowed for ``MAC_ARM`` .
2626
-
2627
- The environment type of the compute fleet.
2614
+ '''The environment type of the compute fleet.
2628
2615
 
2629
2616
  - The environment type ``ARM_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Singapore), Asia Pacific (Sydney), EU (Frankfurt), and South America (São Paulo).
2630
2617
  - The environment type ``LINUX_CONTAINER`` is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Singapore), Asia Pacific (Sydney), South America (São Paulo), and Asia Pacific (Mumbai).
@@ -2654,11 +2641,7 @@ class CfnFleetProps:
2654
2641
  def fleet_vpc_config(
2655
2642
  self,
2656
2643
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnFleet.VpcConfigProperty]]:
2657
- '''.. epigraph::
2658
-
2659
- Updating this field is not allowed for ``MAC_ARM`` .
2660
-
2661
- Information about the VPC configuration that AWS CodeBuild accesses.
2644
+ '''Information about the VPC configuration that AWS CodeBuild accesses.
2662
2645
 
2663
2646
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-fleet.html#cfn-codebuild-fleet-fleetvpcconfig
2664
2647
  '''
@@ -2667,11 +2650,7 @@ class CfnFleetProps:
2667
2650
 
2668
2651
  @builtins.property
2669
2652
  def image_id(self) -> typing.Optional[builtins.str]:
2670
- '''.. epigraph::
2671
-
2672
- Updating this field is not allowed for ``MAC_ARM`` .
2673
-
2674
- The Amazon Machine Image (AMI) of the compute fleet.
2653
+ '''The Amazon Machine Image (AMI) of the compute fleet.
2675
2654
 
2676
2655
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-fleet.html#cfn-codebuild-fleet-imageid
2677
2656
  '''
@@ -10810,7 +10789,7 @@ class LinuxArmBuildImage(
10810
10789
  :param name: -
10811
10790
  :param secrets_manager_credentials: The credentials, stored in Secrets Manager, used for accessing the repository holding the image, if the repository is private. Default: no credentials will be used (we assume the repository is public)
10812
10791
 
10813
- :return: a x86-64 Linux build image from a Docker Hub image.
10792
+ :return: a aarch-64 Linux build image from a Docker Hub image.
10814
10793
  '''
10815
10794
  if __debug__:
10816
10795
  type_hints = typing.get_type_hints(_typecheckingstub__f8b09918c849295af1cd977d20815a7a805a8cda88e6f447b7e6c9ea21863acf)