aws-cdk-lib 2.202.0__py3-none-any.whl → 2.203.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 (62) hide show
  1. aws_cdk/__init__.py +46 -47
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.202.0.jsii.tgz → aws-cdk-lib@2.203.1.jsii.tgz} +0 -0
  4. aws_cdk/aws_accessanalyzer/__init__.py +310 -4
  5. aws_cdk/aws_aiops/__init__.py +964 -0
  6. aws_cdk/aws_amplify/__init__.py +127 -0
  7. aws_cdk/aws_arczonalshift/__init__.py +8 -8
  8. aws_cdk/aws_b2bi/__init__.py +782 -3
  9. aws_cdk/aws_backup/__init__.py +22 -0
  10. aws_cdk/aws_batch/__init__.py +53 -1
  11. aws_cdk/aws_bedrock/__init__.py +123 -9
  12. aws_cdk/aws_cleanrooms/__init__.py +157 -154
  13. aws_cdk/aws_cloudformation/__init__.py +28 -28
  14. aws_cdk/aws_cloudfront/__init__.py +61 -18
  15. aws_cdk/aws_cloudfront/experimental/__init__.py +37 -3
  16. aws_cdk/aws_cloudwatch/__init__.py +228 -2
  17. aws_cdk/aws_connect/__init__.py +120 -8
  18. aws_cdk/aws_connectcampaignsv2/__init__.py +25 -4
  19. aws_cdk/aws_customerprofiles/__init__.py +140 -20
  20. aws_cdk/aws_datazone/__init__.py +23 -4
  21. aws_cdk/aws_deadline/__init__.py +4 -4
  22. aws_cdk/aws_dsql/__init__.py +148 -0
  23. aws_cdk/aws_ec2/__init__.py +159 -7
  24. aws_cdk/aws_ecr/__init__.py +3 -3
  25. aws_cdk/aws_ecs/__init__.py +48 -13
  26. aws_cdk/aws_elasticloadbalancingv2/__init__.py +4 -2
  27. aws_cdk/aws_emrserverless/__init__.py +118 -0
  28. aws_cdk/aws_fsx/__init__.py +891 -0
  29. aws_cdk/aws_iam/__init__.py +8 -8
  30. aws_cdk/aws_inspectorv2/__init__.py +442 -3
  31. aws_cdk/aws_kendra/__init__.py +10 -5
  32. aws_cdk/aws_kms/__init__.py +14 -8
  33. aws_cdk/aws_lambda/__init__.py +191 -24
  34. aws_cdk/aws_lambda_nodejs/__init__.py +37 -3
  35. aws_cdk/aws_lex/__init__.py +703 -0
  36. aws_cdk/aws_logs/__init__.py +144 -0
  37. aws_cdk/aws_mediatailor/__init__.py +399 -0
  38. aws_cdk/aws_mpa/__init__.py +1475 -0
  39. aws_cdk/aws_networkfirewall/__init__.py +4 -2
  40. aws_cdk/aws_networkmanager/__init__.py +51 -3
  41. aws_cdk/aws_opsworkscm/__init__.py +44 -2
  42. aws_cdk/aws_rds/__init__.py +171 -41
  43. aws_cdk/aws_redshiftserverless/__init__.py +632 -0
  44. aws_cdk/aws_route53resolver/__init__.py +58 -10
  45. aws_cdk/aws_s3/__init__.py +3 -1
  46. aws_cdk/aws_s3tables/__init__.py +230 -0
  47. aws_cdk/aws_sagemaker/__init__.py +6 -2
  48. aws_cdk/aws_securityhub/__init__.py +2887 -56
  49. aws_cdk/aws_synthetics/__init__.py +21 -0
  50. aws_cdk/aws_vpclattice/__init__.py +6 -4
  51. aws_cdk/aws_wafv2/__init__.py +156 -51
  52. aws_cdk/aws_workspacesinstances/__init__.py +3243 -0
  53. aws_cdk/cloud_assembly_schema/__init__.py +200 -4
  54. aws_cdk/cx_api/__init__.py +15 -14
  55. aws_cdk/pipelines/__init__.py +31 -3
  56. aws_cdk/triggers/__init__.py +41 -4
  57. {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/METADATA +3 -3
  58. {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/RECORD +62 -59
  59. {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/LICENSE +0 -0
  60. {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/NOTICE +0 -0
  61. {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/WHEEL +0 -0
  62. {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/top_level.txt +0 -0
@@ -104,11 +104,11 @@ class CfnCalculatedAttributeDefinition(
104
104
  object_count=123,
105
105
  range=customerprofiles.CfnCalculatedAttributeDefinition.RangeProperty(
106
106
  unit="unit",
107
- value=123,
108
107
 
109
108
  # the properties below are optional
110
109
  timestamp_format="timestampFormat",
111
110
  timestamp_source="timestampSource",
111
+ value=123,
112
112
  value_range=customerprofiles.CfnCalculatedAttributeDefinition.ValueRangeProperty(
113
113
  end=123,
114
114
  start=123
@@ -549,11 +549,11 @@ class CfnCalculatedAttributeDefinition(
549
549
  object_count=123,
550
550
  range=customerprofiles.CfnCalculatedAttributeDefinition.RangeProperty(
551
551
  unit="unit",
552
- value=123,
553
552
 
554
553
  # the properties below are optional
555
554
  timestamp_format="timestampFormat",
556
555
  timestamp_source="timestampSource",
556
+ value=123,
557
557
  value_range=customerprofiles.CfnCalculatedAttributeDefinition.ValueRangeProperty(
558
558
  end=123,
559
559
  start=123
@@ -625,9 +625,9 @@ class CfnCalculatedAttributeDefinition(
625
625
  jsii_struct_bases=[],
626
626
  name_mapping={
627
627
  "unit": "unit",
628
- "value": "value",
629
628
  "timestamp_format": "timestampFormat",
630
629
  "timestamp_source": "timestampSource",
630
+ "value": "value",
631
631
  "value_range": "valueRange",
632
632
  },
633
633
  )
@@ -636,17 +636,17 @@ class CfnCalculatedAttributeDefinition(
636
636
  self,
637
637
  *,
638
638
  unit: builtins.str,
639
- value: jsii.Number,
640
639
  timestamp_format: typing.Optional[builtins.str] = None,
641
640
  timestamp_source: typing.Optional[builtins.str] = None,
641
+ value: typing.Optional[jsii.Number] = None,
642
642
  value_range: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCalculatedAttributeDefinition.ValueRangeProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
643
643
  ) -> None:
644
644
  '''The relative time period over which data is included in the aggregation.
645
645
 
646
646
  :param unit: The unit of time.
647
- :param value: The amount of time of the specified unit.
648
647
  :param timestamp_format: The format the timestamp field in your JSON object is specified. This value should be one of EPOCHMILLI or ISO_8601. E.g. if your object type is MyType and source JSON is {"generatedAt": {"timestamp": "2001-07-04T12:08:56.235Z"}}, then TimestampFormat should be "ISO_8601".
649
648
  :param timestamp_source: An expression specifying the field in your JSON object from which the date should be parsed. The expression should follow the structure of "{ObjectTypeName.}". E.g. if your object type is MyType and source JSON is {"generatedAt": {"timestamp": "1737587945945"}}, then TimestampSource should be "{MyType.generatedAt.timestamp}".
649
+ :param value: The amount of time of the specified unit.
650
650
  :param value_range: A structure specifying the endpoints of the relative time period over which data is included in the aggregation.
651
651
 
652
652
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-range.html
@@ -660,11 +660,11 @@ class CfnCalculatedAttributeDefinition(
660
660
 
661
661
  range_property = customerprofiles.CfnCalculatedAttributeDefinition.RangeProperty(
662
662
  unit="unit",
663
- value=123,
664
663
 
665
664
  # the properties below are optional
666
665
  timestamp_format="timestampFormat",
667
666
  timestamp_source="timestampSource",
667
+ value=123,
668
668
  value_range=customerprofiles.CfnCalculatedAttributeDefinition.ValueRangeProperty(
669
669
  end=123,
670
670
  start=123
@@ -674,18 +674,19 @@ class CfnCalculatedAttributeDefinition(
674
674
  if __debug__:
675
675
  type_hints = typing.get_type_hints(_typecheckingstub__4567eb83ac5620aa6be36cbd0e38cdba257d259743e1017616dbc2252fc66f9d)
676
676
  check_type(argname="argument unit", value=unit, expected_type=type_hints["unit"])
677
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
678
677
  check_type(argname="argument timestamp_format", value=timestamp_format, expected_type=type_hints["timestamp_format"])
679
678
  check_type(argname="argument timestamp_source", value=timestamp_source, expected_type=type_hints["timestamp_source"])
679
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
680
680
  check_type(argname="argument value_range", value=value_range, expected_type=type_hints["value_range"])
681
681
  self._values: typing.Dict[builtins.str, typing.Any] = {
682
682
  "unit": unit,
683
- "value": value,
684
683
  }
685
684
  if timestamp_format is not None:
686
685
  self._values["timestamp_format"] = timestamp_format
687
686
  if timestamp_source is not None:
688
687
  self._values["timestamp_source"] = timestamp_source
688
+ if value is not None:
689
+ self._values["value"] = value
689
690
  if value_range is not None:
690
691
  self._values["value_range"] = value_range
691
692
 
@@ -699,16 +700,6 @@ class CfnCalculatedAttributeDefinition(
699
700
  assert result is not None, "Required property 'unit' is missing"
700
701
  return typing.cast(builtins.str, result)
701
702
 
702
- @builtins.property
703
- def value(self) -> jsii.Number:
704
- '''The amount of time of the specified unit.
705
-
706
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-range.html#cfn-customerprofiles-calculatedattributedefinition-range-value
707
- '''
708
- result = self._values.get("value")
709
- assert result is not None, "Required property 'value' is missing"
710
- return typing.cast(jsii.Number, result)
711
-
712
703
  @builtins.property
713
704
  def timestamp_format(self) -> typing.Optional[builtins.str]:
714
705
  '''The format the timestamp field in your JSON object is specified.
@@ -731,6 +722,15 @@ class CfnCalculatedAttributeDefinition(
731
722
  result = self._values.get("timestamp_source")
732
723
  return typing.cast(typing.Optional[builtins.str], result)
733
724
 
725
+ @builtins.property
726
+ def value(self) -> typing.Optional[jsii.Number]:
727
+ '''The amount of time of the specified unit.
728
+
729
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-range.html#cfn-customerprofiles-calculatedattributedefinition-range-value
730
+ '''
731
+ result = self._values.get("value")
732
+ return typing.cast(typing.Optional[jsii.Number], result)
733
+
734
734
  @builtins.property
735
735
  def value_range(
736
736
  self,
@@ -1029,11 +1029,11 @@ class CfnCalculatedAttributeDefinitionProps:
1029
1029
  object_count=123,
1030
1030
  range=customerprofiles.CfnCalculatedAttributeDefinition.RangeProperty(
1031
1031
  unit="unit",
1032
- value=123,
1033
1032
 
1034
1033
  # the properties below are optional
1035
1034
  timestamp_format="timestampFormat",
1036
1035
  timestamp_source="timestampSource",
1036
+ value=123,
1037
1037
  value_range=customerprofiles.CfnCalculatedAttributeDefinition.ValueRangeProperty(
1038
1038
  end=123,
1039
1039
  start=123
@@ -7440,6 +7440,10 @@ class CfnSegmentDefinition(
7440
7440
  dimension_type="dimensionType",
7441
7441
  values=["values"]
7442
7442
  ),
7443
+ profile_type=customerprofiles.CfnSegmentDefinition.ProfileTypeDimensionProperty(
7444
+ dimension_type="dimensionType",
7445
+ values=["values"]
7446
+ ),
7443
7447
  shipping_address=customerprofiles.CfnSegmentDefinition.AddressDimensionProperty(
7444
7448
  city=customerprofiles.CfnSegmentDefinition.ProfileDimensionProperty(
7445
7449
  dimension_type="dimensionType",
@@ -8335,6 +8339,10 @@ class CfnSegmentDefinition(
8335
8339
  dimension_type="dimensionType",
8336
8340
  values=["values"]
8337
8341
  ),
8342
+ profile_type=customerprofiles.CfnSegmentDefinition.ProfileTypeDimensionProperty(
8343
+ dimension_type="dimensionType",
8344
+ values=["values"]
8345
+ ),
8338
8346
  shipping_address=customerprofiles.CfnSegmentDefinition.AddressDimensionProperty(
8339
8347
  city=customerprofiles.CfnSegmentDefinition.ProfileDimensionProperty(
8340
8348
  dimension_type="dimensionType",
@@ -8681,6 +8689,10 @@ class CfnSegmentDefinition(
8681
8689
  dimension_type="dimensionType",
8682
8690
  values=["values"]
8683
8691
  ),
8692
+ profile_type=customerprofiles.CfnSegmentDefinition.ProfileTypeDimensionProperty(
8693
+ dimension_type="dimensionType",
8694
+ values=["values"]
8695
+ ),
8684
8696
  shipping_address=customerprofiles.CfnSegmentDefinition.AddressDimensionProperty(
8685
8697
  city=customerprofiles.CfnSegmentDefinition.ProfileDimensionProperty(
8686
8698
  dimension_type="dimensionType",
@@ -8807,6 +8819,7 @@ class CfnSegmentDefinition(
8807
8819
  "party_type_string": "partyTypeString",
8808
8820
  "personal_email_address": "personalEmailAddress",
8809
8821
  "phone_number": "phoneNumber",
8822
+ "profile_type": "profileType",
8810
8823
  "shipping_address": "shippingAddress",
8811
8824
  },
8812
8825
  )
@@ -8834,6 +8847,7 @@ class CfnSegmentDefinition(
8834
8847
  party_type_string: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnSegmentDefinition.ProfileDimensionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
8835
8848
  personal_email_address: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnSegmentDefinition.ProfileDimensionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
8836
8849
  phone_number: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnSegmentDefinition.ProfileDimensionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
8850
+ profile_type: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnSegmentDefinition.ProfileTypeDimensionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
8837
8851
  shipping_address: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnSegmentDefinition.AddressDimensionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
8838
8852
  ) -> None:
8839
8853
  '''The object used to segment on attributes within the customer profile.
@@ -8858,6 +8872,7 @@ class CfnSegmentDefinition(
8858
8872
  :param party_type_string: A field to describe values to segment on within partyTypeString.
8859
8873
  :param personal_email_address: A field to describe values to segment on within personal email address.
8860
8874
  :param phone_number: A field to describe values to segment on within phone number.
8875
+ :param profile_type: Specifies profile type based criteria for a segment.
8861
8876
  :param shipping_address: A field to describe values to segment on within shipping address.
8862
8877
 
8863
8878
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profileattributes.html
@@ -9018,6 +9033,10 @@ class CfnSegmentDefinition(
9018
9033
  dimension_type="dimensionType",
9019
9034
  values=["values"]
9020
9035
  ),
9036
+ profile_type=customerprofiles.CfnSegmentDefinition.ProfileTypeDimensionProperty(
9037
+ dimension_type="dimensionType",
9038
+ values=["values"]
9039
+ ),
9021
9040
  shipping_address=customerprofiles.CfnSegmentDefinition.AddressDimensionProperty(
9022
9041
  city=customerprofiles.CfnSegmentDefinition.ProfileDimensionProperty(
9023
9042
  dimension_type="dimensionType",
@@ -9068,6 +9087,7 @@ class CfnSegmentDefinition(
9068
9087
  check_type(argname="argument party_type_string", value=party_type_string, expected_type=type_hints["party_type_string"])
9069
9088
  check_type(argname="argument personal_email_address", value=personal_email_address, expected_type=type_hints["personal_email_address"])
9070
9089
  check_type(argname="argument phone_number", value=phone_number, expected_type=type_hints["phone_number"])
9090
+ check_type(argname="argument profile_type", value=profile_type, expected_type=type_hints["profile_type"])
9071
9091
  check_type(argname="argument shipping_address", value=shipping_address, expected_type=type_hints["shipping_address"])
9072
9092
  self._values: typing.Dict[builtins.str, typing.Any] = {}
9073
9093
  if account_number is not None:
@@ -9110,6 +9130,8 @@ class CfnSegmentDefinition(
9110
9130
  self._values["personal_email_address"] = personal_email_address
9111
9131
  if phone_number is not None:
9112
9132
  self._values["phone_number"] = phone_number
9133
+ if profile_type is not None:
9134
+ self._values["profile_type"] = profile_type
9113
9135
  if shipping_address is not None:
9114
9136
  self._values["shipping_address"] = shipping_address
9115
9137
 
@@ -9333,6 +9355,17 @@ class CfnSegmentDefinition(
9333
9355
  result = self._values.get("phone_number")
9334
9356
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnSegmentDefinition.ProfileDimensionProperty"]], result)
9335
9357
 
9358
+ @builtins.property
9359
+ def profile_type(
9360
+ self,
9361
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnSegmentDefinition.ProfileTypeDimensionProperty"]]:
9362
+ '''Specifies profile type based criteria for a segment.
9363
+
9364
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profileattributes.html#cfn-customerprofiles-segmentdefinition-profileattributes-profiletype
9365
+ '''
9366
+ result = self._values.get("profile_type")
9367
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnSegmentDefinition.ProfileTypeDimensionProperty"]], result)
9368
+
9336
9369
  @builtins.property
9337
9370
  def shipping_address(
9338
9371
  self,
@@ -9425,6 +9458,76 @@ class CfnSegmentDefinition(
9425
9458
  k + "=" + repr(v) for k, v in self._values.items()
9426
9459
  )
9427
9460
 
9461
+ @jsii.data_type(
9462
+ jsii_type="aws-cdk-lib.aws_customerprofiles.CfnSegmentDefinition.ProfileTypeDimensionProperty",
9463
+ jsii_struct_bases=[],
9464
+ name_mapping={"dimension_type": "dimensionType", "values": "values"},
9465
+ )
9466
+ class ProfileTypeDimensionProperty:
9467
+ def __init__(
9468
+ self,
9469
+ *,
9470
+ dimension_type: builtins.str,
9471
+ values: typing.Sequence[builtins.str],
9472
+ ) -> None:
9473
+ '''Specifies profile type based criteria for a segment.
9474
+
9475
+ :param dimension_type: The type of segment dimension to use for a profile type dimension.
9476
+ :param values:
9477
+
9478
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiletypedimension.html
9479
+ :exampleMetadata: fixture=_generated
9480
+
9481
+ Example::
9482
+
9483
+ # The code below shows an example of how to instantiate this type.
9484
+ # The values are placeholders you should change.
9485
+ from aws_cdk import aws_customerprofiles as customerprofiles
9486
+
9487
+ profile_type_dimension_property = customerprofiles.CfnSegmentDefinition.ProfileTypeDimensionProperty(
9488
+ dimension_type="dimensionType",
9489
+ values=["values"]
9490
+ )
9491
+ '''
9492
+ if __debug__:
9493
+ type_hints = typing.get_type_hints(_typecheckingstub__054d82d45b080caa1018b194962cae1c565d1648b07a9d3eb9b751a54d3c2b39)
9494
+ check_type(argname="argument dimension_type", value=dimension_type, expected_type=type_hints["dimension_type"])
9495
+ check_type(argname="argument values", value=values, expected_type=type_hints["values"])
9496
+ self._values: typing.Dict[builtins.str, typing.Any] = {
9497
+ "dimension_type": dimension_type,
9498
+ "values": values,
9499
+ }
9500
+
9501
+ @builtins.property
9502
+ def dimension_type(self) -> builtins.str:
9503
+ '''The type of segment dimension to use for a profile type dimension.
9504
+
9505
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiletypedimension.html#cfn-customerprofiles-segmentdefinition-profiletypedimension-dimensiontype
9506
+ '''
9507
+ result = self._values.get("dimension_type")
9508
+ assert result is not None, "Required property 'dimension_type' is missing"
9509
+ return typing.cast(builtins.str, result)
9510
+
9511
+ @builtins.property
9512
+ def values(self) -> typing.List[builtins.str]:
9513
+ '''
9514
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiletypedimension.html#cfn-customerprofiles-segmentdefinition-profiletypedimension-values
9515
+ '''
9516
+ result = self._values.get("values")
9517
+ assert result is not None, "Required property 'values' is missing"
9518
+ return typing.cast(typing.List[builtins.str], result)
9519
+
9520
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
9521
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
9522
+
9523
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
9524
+ return not (rhs == self)
9525
+
9526
+ def __repr__(self) -> str:
9527
+ return "ProfileTypeDimensionProperty(%s)" % ", ".join(
9528
+ k + "=" + repr(v) for k, v in self._values.items()
9529
+ )
9530
+
9428
9531
  @jsii.data_type(
9429
9532
  jsii_type="aws-cdk-lib.aws_customerprofiles.CfnSegmentDefinition.RangeOverrideProperty",
9430
9533
  jsii_struct_bases=[],
@@ -9708,6 +9811,10 @@ class CfnSegmentDefinition(
9708
9811
  dimension_type="dimensionType",
9709
9812
  values=["values"]
9710
9813
  ),
9814
+ profile_type=customerprofiles.CfnSegmentDefinition.ProfileTypeDimensionProperty(
9815
+ dimension_type="dimensionType",
9816
+ values=["values"]
9817
+ ),
9711
9818
  shipping_address=customerprofiles.CfnSegmentDefinition.AddressDimensionProperty(
9712
9819
  city=customerprofiles.CfnSegmentDefinition.ProfileDimensionProperty(
9713
9820
  dimension_type="dimensionType",
@@ -10056,6 +10163,10 @@ class CfnSegmentDefinitionProps:
10056
10163
  dimension_type="dimensionType",
10057
10164
  values=["values"]
10058
10165
  ),
10166
+ profile_type=customerprofiles.CfnSegmentDefinition.ProfileTypeDimensionProperty(
10167
+ dimension_type="dimensionType",
10168
+ values=["values"]
10169
+ ),
10059
10170
  shipping_address=customerprofiles.CfnSegmentDefinition.AddressDimensionProperty(
10060
10171
  city=customerprofiles.CfnSegmentDefinition.ProfileDimensionProperty(
10061
10172
  dimension_type="dimensionType",
@@ -10321,9 +10432,9 @@ def _typecheckingstub__d5d5606a68f168622e019935c1cfd2eb8821e95f36c66313b2a6f7a38
10321
10432
  def _typecheckingstub__4567eb83ac5620aa6be36cbd0e38cdba257d259743e1017616dbc2252fc66f9d(
10322
10433
  *,
10323
10434
  unit: builtins.str,
10324
- value: jsii.Number,
10325
10435
  timestamp_format: typing.Optional[builtins.str] = None,
10326
10436
  timestamp_source: typing.Optional[builtins.str] = None,
10437
+ value: typing.Optional[jsii.Number] = None,
10327
10438
  value_range: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCalculatedAttributeDefinition.ValueRangeProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
10328
10439
  ) -> None:
10329
10440
  """Type checking stubs"""
@@ -11283,6 +11394,7 @@ def _typecheckingstub__2d3744d80b787b304270031bc1ba903495b3abb0c8edddf7fdffa3603
11283
11394
  party_type_string: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnSegmentDefinition.ProfileDimensionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
11284
11395
  personal_email_address: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnSegmentDefinition.ProfileDimensionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
11285
11396
  phone_number: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnSegmentDefinition.ProfileDimensionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
11397
+ profile_type: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnSegmentDefinition.ProfileTypeDimensionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
11286
11398
  shipping_address: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnSegmentDefinition.AddressDimensionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
11287
11399
  ) -> None:
11288
11400
  """Type checking stubs"""
@@ -11296,6 +11408,14 @@ def _typecheckingstub__007e452519747d631a7d676cfec00290dff2452d6eaac4a54fc80925a
11296
11408
  """Type checking stubs"""
11297
11409
  pass
11298
11410
 
11411
+ def _typecheckingstub__054d82d45b080caa1018b194962cae1c565d1648b07a9d3eb9b751a54d3c2b39(
11412
+ *,
11413
+ dimension_type: builtins.str,
11414
+ values: typing.Sequence[builtins.str],
11415
+ ) -> None:
11416
+ """Type checking stubs"""
11417
+ pass
11418
+
11299
11419
  def _typecheckingstub__ca238704a173f3c1cf142a9086e33976f93d4c9bf252b6a1aac82208186ef3e5(
11300
11420
  *,
11301
11421
  start: jsii.Number,
@@ -9898,7 +9898,8 @@ class CfnProjectProfile(
9898
9898
  is_editable=False,
9899
9899
  name="name",
9900
9900
  value="value"
9901
- )]
9901
+ )],
9902
+ ssm_path="ssmPath"
9902
9903
  ),
9903
9904
  deployment_mode="deploymentMode",
9904
9905
  deployment_order=123,
@@ -10262,6 +10263,7 @@ class CfnProjectProfile(
10262
10263
  name_mapping={
10263
10264
  "parameter_overrides": "parameterOverrides",
10264
10265
  "resolved_parameters": "resolvedParameters",
10266
+ "ssm_path": "ssmPath",
10265
10267
  },
10266
10268
  )
10267
10269
  class EnvironmentConfigurationParametersDetailsProperty:
@@ -10270,10 +10272,12 @@ class CfnProjectProfile(
10270
10272
  *,
10271
10273
  parameter_overrides: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnProjectProfile.EnvironmentConfigurationParameterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
10272
10274
  resolved_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnProjectProfile.EnvironmentConfigurationParameterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
10275
+ ssm_path: typing.Optional[builtins.str] = None,
10273
10276
  ) -> None:
10274
10277
  '''
10275
10278
  :param parameter_overrides:
10276
10279
  :param resolved_parameters:
10280
+ :param ssm_path:
10277
10281
 
10278
10282
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.html
10279
10283
  :exampleMetadata: fixture=_generated
@@ -10294,18 +10298,22 @@ class CfnProjectProfile(
10294
10298
  is_editable=False,
10295
10299
  name="name",
10296
10300
  value="value"
10297
- )]
10301
+ )],
10302
+ ssm_path="ssmPath"
10298
10303
  )
10299
10304
  '''
10300
10305
  if __debug__:
10301
10306
  type_hints = typing.get_type_hints(_typecheckingstub__fab90e5736f5e6f3ffb1d2c481eba6fcd8f1f870000719d3c6a3852737b46e0b)
10302
10307
  check_type(argname="argument parameter_overrides", value=parameter_overrides, expected_type=type_hints["parameter_overrides"])
10303
10308
  check_type(argname="argument resolved_parameters", value=resolved_parameters, expected_type=type_hints["resolved_parameters"])
10309
+ check_type(argname="argument ssm_path", value=ssm_path, expected_type=type_hints["ssm_path"])
10304
10310
  self._values: typing.Dict[builtins.str, typing.Any] = {}
10305
10311
  if parameter_overrides is not None:
10306
10312
  self._values["parameter_overrides"] = parameter_overrides
10307
10313
  if resolved_parameters is not None:
10308
10314
  self._values["resolved_parameters"] = resolved_parameters
10315
+ if ssm_path is not None:
10316
+ self._values["ssm_path"] = ssm_path
10309
10317
 
10310
10318
  @builtins.property
10311
10319
  def parameter_overrides(
@@ -10327,6 +10335,14 @@ class CfnProjectProfile(
10327
10335
  result = self._values.get("resolved_parameters")
10328
10336
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProjectProfile.EnvironmentConfigurationParameterProperty"]]]], result)
10329
10337
 
10338
+ @builtins.property
10339
+ def ssm_path(self) -> typing.Optional[builtins.str]:
10340
+ '''
10341
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.html#cfn-datazone-projectprofile-environmentconfigurationparametersdetails-ssmpath
10342
+ '''
10343
+ result = self._values.get("ssm_path")
10344
+ return typing.cast(typing.Optional[builtins.str], result)
10345
+
10330
10346
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
10331
10347
  return isinstance(rhs, self.__class__) and rhs._values == self._values
10332
10348
 
@@ -10408,7 +10424,8 @@ class CfnProjectProfile(
10408
10424
  is_editable=False,
10409
10425
  name="name",
10410
10426
  value="value"
10411
- )]
10427
+ )],
10428
+ ssm_path="ssmPath"
10412
10429
  ),
10413
10430
  deployment_mode="deploymentMode",
10414
10431
  deployment_order=123,
@@ -10657,7 +10674,8 @@ class CfnProjectProfileProps:
10657
10674
  is_editable=False,
10658
10675
  name="name",
10659
10676
  value="value"
10660
- )]
10677
+ )],
10678
+ ssm_path="ssmPath"
10661
10679
  ),
10662
10680
  deployment_mode="deploymentMode",
10663
10681
  deployment_order=123,
@@ -13528,6 +13546,7 @@ def _typecheckingstub__fab90e5736f5e6f3ffb1d2c481eba6fcd8f1f870000719d3c6a385273
13528
13546
  *,
13529
13547
  parameter_overrides: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProjectProfile.EnvironmentConfigurationParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
13530
13548
  resolved_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProjectProfile.EnvironmentConfigurationParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
13549
+ ssm_path: typing.Optional[builtins.str] = None,
13531
13550
  ) -> None:
13532
13551
  """Type checking stubs"""
13533
13552
  pass
@@ -966,8 +966,8 @@ class CfnFleet(
966
966
  ) -> None:
967
967
  '''Describes a specific GPU accelerator required for an Amazon Elastic Compute Cloud worker host.
968
968
 
969
- :param name: The name of the chip used by the GPU accelerator. If you specify ``l4`` as the name of the accelerator, you must specify ``latest`` or ``grid:r550`` as the runtime. The available GPU accelerators are: - ``t4`` - NVIDIA T4 Tensor Core GPU - ``a10g`` - NVIDIA A10G Tensor Core GPU - ``l4`` - NVIDIA L4 Tensor Core GPU - ``l40s`` - NVIDIA L40S Tensor Core GPU
970
- :param runtime: Specifies the runtime driver to use for the GPU accelerator. You must use the same runtime for all GPUs. You can choose from the following runtimes: - ``latest`` - Use the latest runtime available for the chip. If you specify ``latest`` and a new version of the runtime is released, the new version of the runtime is used. - ``grid:r550`` - `NVIDIA vGPU software 17 <https://docs.aws.amazon.com/https://docs.nvidia.com/vgpu/17.0/index.html>`_ - ``grid:r535`` - `NVIDIA vGPU software 16 <https://docs.aws.amazon.com/https://docs.nvidia.com/vgpu/16.0/index.html>`_ If you don't specify a runtime, Deadline Cloud uses ``latest`` as the default. However, if you have multiple accelerators and specify ``latest`` for some and leave others blank, Deadline Cloud raises an exception.
969
+ :param name: The name of the chip used by the GPU accelerator. If you specify ``l4`` as the name of the accelerator, you must specify ``latest`` or ``grid:r570`` as the runtime. The available GPU accelerators are: - ``t4`` - NVIDIA T4 Tensor Core GPU - ``a10g`` - NVIDIA A10G Tensor Core GPU - ``l4`` - NVIDIA L4 Tensor Core GPU - ``l40s`` - NVIDIA L40S Tensor Core GPU
970
+ :param runtime: Specifies the runtime driver to use for the GPU accelerator. You must use the same runtime for all GPUs. You can choose from the following runtimes: - ``latest`` - Use the latest runtime available for the chip. If you specify ``latest`` and a new version of the runtime is released, the new version of the runtime is used. - ``grid:r570`` - `NVIDIA vGPU software 18 <https://docs.aws.amazon.com/https://docs.nvidia.com/vgpu/18.0/index.html>`_ - ``grid:r535`` - `NVIDIA vGPU software 16 <https://docs.aws.amazon.com/https://docs.nvidia.com/vgpu/16.0/index.html>`_ If you don't specify a runtime, Deadline Cloud uses ``latest`` as the default. However, if you have multiple accelerators and specify ``latest`` for some and leave others blank, Deadline Cloud raises an exception.
971
971
 
972
972
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-acceleratorselection.html
973
973
  :exampleMetadata: fixture=_generated
@@ -999,7 +999,7 @@ class CfnFleet(
999
999
  def name(self) -> builtins.str:
1000
1000
  '''The name of the chip used by the GPU accelerator.
1001
1001
 
1002
- If you specify ``l4`` as the name of the accelerator, you must specify ``latest`` or ``grid:r550`` as the runtime.
1002
+ If you specify ``l4`` as the name of the accelerator, you must specify ``latest`` or ``grid:r570`` as the runtime.
1003
1003
 
1004
1004
  The available GPU accelerators are:
1005
1005
 
@@ -1021,7 +1021,7 @@ class CfnFleet(
1021
1021
  You can choose from the following runtimes:
1022
1022
 
1023
1023
  - ``latest`` - Use the latest runtime available for the chip. If you specify ``latest`` and a new version of the runtime is released, the new version of the runtime is used.
1024
- - ``grid:r550`` - `NVIDIA vGPU software 17 <https://docs.aws.amazon.com/https://docs.nvidia.com/vgpu/17.0/index.html>`_
1024
+ - ``grid:r570`` - `NVIDIA vGPU software 18 <https://docs.aws.amazon.com/https://docs.nvidia.com/vgpu/18.0/index.html>`_
1025
1025
  - ``grid:r535`` - `NVIDIA vGPU software 16 <https://docs.aws.amazon.com/https://docs.nvidia.com/vgpu/16.0/index.html>`_
1026
1026
 
1027
1027
  If you don't specify a runtime, Deadline Cloud uses ``latest`` as the default. However, if you have multiple accelerators and specify ``latest`` for some and leave others blank, Deadline Cloud raises an exception.