aws-cdk-lib 2.105.0__py3-none-any.whl → 2.106.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 (47) hide show
  1. aws_cdk/__init__.py +59 -69
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.105.0.jsii.tgz → aws-cdk-lib@2.106.1.jsii.tgz} +0 -0
  4. aws_cdk/aws_amplify/__init__.py +12 -12
  5. aws_cdk/aws_appconfig/__init__.py +25 -11
  6. aws_cdk/aws_appintegrations/__init__.py +60 -60
  7. aws_cdk/aws_apprunner/__init__.py +22 -3
  8. aws_cdk/aws_appstream/__init__.py +12 -5
  9. aws_cdk/aws_appsync/__init__.py +4 -4
  10. aws_cdk/aws_autoscaling/__init__.py +8 -0
  11. aws_cdk/aws_cloudformation/__init__.py +59 -69
  12. aws_cdk/aws_codepipeline/__init__.py +3 -0
  13. aws_cdk/aws_cognito/__init__.py +23 -31
  14. aws_cdk/aws_config/__init__.py +46 -41
  15. aws_cdk/aws_datapipeline/__init__.py +54 -54
  16. aws_cdk/aws_directoryservice/__init__.py +45 -45
  17. aws_cdk/aws_ec2/__init__.py +163 -21
  18. aws_cdk/aws_ecs/__init__.py +52 -68
  19. aws_cdk/aws_eks/__init__.py +55 -9
  20. aws_cdk/aws_entityresolution/__init__.py +9 -0
  21. aws_cdk/aws_events/__init__.py +0 -8
  22. aws_cdk/aws_eventschemas/__init__.py +12 -12
  23. aws_cdk/aws_gamelift/__init__.py +4 -6
  24. aws_cdk/aws_internetmonitor/__init__.py +12 -10
  25. aws_cdk/aws_iot/__init__.py +10 -11
  26. aws_cdk/aws_lakeformation/__init__.py +8 -5
  27. aws_cdk/aws_lambda/__init__.py +30 -0
  28. aws_cdk/aws_msk/__init__.py +3 -3
  29. aws_cdk/aws_networkmanager/__init__.py +1 -1
  30. aws_cdk/aws_pinpoint/__init__.py +94 -94
  31. aws_cdk/aws_quicksight/__init__.py +189 -264
  32. aws_cdk/aws_rds/__init__.py +267 -36
  33. aws_cdk/aws_rolesanywhere/__init__.py +53 -41
  34. aws_cdk/aws_route53/__init__.py +3 -7
  35. aws_cdk/aws_s3/__init__.py +191 -2
  36. aws_cdk/aws_sam/__init__.py +42 -47
  37. aws_cdk/aws_servicecatalogappregistry/__init__.py +2 -4
  38. aws_cdk/aws_ssm/__init__.py +4 -4
  39. aws_cdk/aws_stepfunctions_tasks/__init__.py +9 -2
  40. aws_cdk/aws_vpclattice/__init__.py +2 -6
  41. aws_cdk/aws_wafv2/__init__.py +21 -8
  42. {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/METADATA +3 -3
  43. {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/RECORD +47 -47
  44. {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/LICENSE +0 -0
  45. {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/NOTICE +0 -0
  46. {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/WHEEL +0 -0
  47. {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/top_level.txt +0 -0
@@ -75,13 +75,6 @@ class CfnDataIntegration(
75
75
  cfn_data_integration = appintegrations.CfnDataIntegration(self, "MyCfnDataIntegration",
76
76
  kms_key="kmsKey",
77
77
  name="name",
78
- schedule_config=appintegrations.CfnDataIntegration.ScheduleConfigProperty(
79
- schedule_expression="scheduleExpression",
80
-
81
- # the properties below are optional
82
- first_execution_from="firstExecutionFrom",
83
- object="object"
84
- ),
85
78
  source_uri="sourceUri",
86
79
 
87
80
  # the properties below are optional
@@ -93,6 +86,13 @@ class CfnDataIntegration(
93
86
  filters=filters
94
87
  ),
95
88
  object_configuration=object_configuration,
89
+ schedule_config=appintegrations.CfnDataIntegration.ScheduleConfigProperty(
90
+ schedule_expression="scheduleExpression",
91
+
92
+ # the properties below are optional
93
+ first_execution_from="firstExecutionFrom",
94
+ object="object"
95
+ ),
96
96
  tags=[CfnTag(
97
97
  key="key",
98
98
  value="value"
@@ -107,11 +107,11 @@ class CfnDataIntegration(
107
107
  *,
108
108
  kms_key: builtins.str,
109
109
  name: builtins.str,
110
- schedule_config: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataIntegration.ScheduleConfigProperty", typing.Dict[builtins.str, typing.Any]]],
111
110
  source_uri: builtins.str,
112
111
  description: typing.Optional[builtins.str] = None,
113
112
  file_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataIntegration.FileConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
114
113
  object_configuration: typing.Any = None,
114
+ schedule_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataIntegration.ScheduleConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
115
115
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
116
116
  ) -> None:
117
117
  '''
@@ -119,11 +119,11 @@ class CfnDataIntegration(
119
119
  :param id: Construct identifier for this resource (unique in its scope).
120
120
  :param kms_key: The KMS key for the DataIntegration.
121
121
  :param name: The name of the DataIntegration.
122
- :param schedule_config: The name of the data and how often it should be pulled from the source.
123
122
  :param source_uri: The URI of the data source.
124
123
  :param description: A description of the DataIntegration.
125
124
  :param file_configuration: The configuration for what files should be pulled from the source.
126
125
  :param object_configuration: The configuration for what data should be pulled from the source.
126
+ :param schedule_config: The name of the data and how often it should be pulled from the source.
127
127
  :param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
128
128
  '''
129
129
  if __debug__:
@@ -133,11 +133,11 @@ class CfnDataIntegration(
133
133
  props = CfnDataIntegrationProps(
134
134
  kms_key=kms_key,
135
135
  name=name,
136
- schedule_config=schedule_config,
137
136
  source_uri=source_uri,
138
137
  description=description,
139
138
  file_configuration=file_configuration,
140
139
  object_configuration=object_configuration,
140
+ schedule_config=schedule_config,
141
141
  tags=tags,
142
142
  )
143
143
 
@@ -228,24 +228,6 @@ class CfnDataIntegration(
228
228
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
229
229
  jsii.set(self, "name", value)
230
230
 
231
- @builtins.property
232
- @jsii.member(jsii_name="scheduleConfig")
233
- def schedule_config(
234
- self,
235
- ) -> typing.Union[_IResolvable_da3f097b, "CfnDataIntegration.ScheduleConfigProperty"]:
236
- '''The name of the data and how often it should be pulled from the source.'''
237
- return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnDataIntegration.ScheduleConfigProperty"], jsii.get(self, "scheduleConfig"))
238
-
239
- @schedule_config.setter
240
- def schedule_config(
241
- self,
242
- value: typing.Union[_IResolvable_da3f097b, "CfnDataIntegration.ScheduleConfigProperty"],
243
- ) -> None:
244
- if __debug__:
245
- type_hints = typing.get_type_hints(_typecheckingstub__5245bc847871e6f3d723769c28404578dc706f908a62836394d9ef2b6acc8a92)
246
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
247
- jsii.set(self, "scheduleConfig", value)
248
-
249
231
  @builtins.property
250
232
  @jsii.member(jsii_name="sourceUri")
251
233
  def source_uri(self) -> builtins.str:
@@ -303,6 +285,24 @@ class CfnDataIntegration(
303
285
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
304
286
  jsii.set(self, "objectConfiguration", value)
305
287
 
288
+ @builtins.property
289
+ @jsii.member(jsii_name="scheduleConfig")
290
+ def schedule_config(
291
+ self,
292
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataIntegration.ScheduleConfigProperty"]]:
293
+ '''The name of the data and how often it should be pulled from the source.'''
294
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataIntegration.ScheduleConfigProperty"]], jsii.get(self, "scheduleConfig"))
295
+
296
+ @schedule_config.setter
297
+ def schedule_config(
298
+ self,
299
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataIntegration.ScheduleConfigProperty"]],
300
+ ) -> None:
301
+ if __debug__:
302
+ type_hints = typing.get_type_hints(_typecheckingstub__5245bc847871e6f3d723769c28404578dc706f908a62836394d9ef2b6acc8a92)
303
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
304
+ jsii.set(self, "scheduleConfig", value)
305
+
306
306
  @builtins.property
307
307
  @jsii.member(jsii_name="tagsRaw")
308
308
  def tags_raw(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
@@ -490,11 +490,11 @@ class CfnDataIntegration(
490
490
  name_mapping={
491
491
  "kms_key": "kmsKey",
492
492
  "name": "name",
493
- "schedule_config": "scheduleConfig",
494
493
  "source_uri": "sourceUri",
495
494
  "description": "description",
496
495
  "file_configuration": "fileConfiguration",
497
496
  "object_configuration": "objectConfiguration",
497
+ "schedule_config": "scheduleConfig",
498
498
  "tags": "tags",
499
499
  },
500
500
  )
@@ -504,22 +504,22 @@ class CfnDataIntegrationProps:
504
504
  *,
505
505
  kms_key: builtins.str,
506
506
  name: builtins.str,
507
- schedule_config: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataIntegration.ScheduleConfigProperty, typing.Dict[builtins.str, typing.Any]]],
508
507
  source_uri: builtins.str,
509
508
  description: typing.Optional[builtins.str] = None,
510
509
  file_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataIntegration.FileConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
511
510
  object_configuration: typing.Any = None,
511
+ schedule_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataIntegration.ScheduleConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
512
512
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
513
513
  ) -> None:
514
514
  '''Properties for defining a ``CfnDataIntegration``.
515
515
 
516
516
  :param kms_key: The KMS key for the DataIntegration.
517
517
  :param name: The name of the DataIntegration.
518
- :param schedule_config: The name of the data and how often it should be pulled from the source.
519
518
  :param source_uri: The URI of the data source.
520
519
  :param description: A description of the DataIntegration.
521
520
  :param file_configuration: The configuration for what files should be pulled from the source.
522
521
  :param object_configuration: The configuration for what data should be pulled from the source.
522
+ :param schedule_config: The name of the data and how often it should be pulled from the source.
523
523
  :param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
524
524
 
525
525
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-dataintegration.html
@@ -537,13 +537,6 @@ class CfnDataIntegrationProps:
537
537
  cfn_data_integration_props = appintegrations.CfnDataIntegrationProps(
538
538
  kms_key="kmsKey",
539
539
  name="name",
540
- schedule_config=appintegrations.CfnDataIntegration.ScheduleConfigProperty(
541
- schedule_expression="scheduleExpression",
542
-
543
- # the properties below are optional
544
- first_execution_from="firstExecutionFrom",
545
- object="object"
546
- ),
547
540
  source_uri="sourceUri",
548
541
 
549
542
  # the properties below are optional
@@ -555,6 +548,13 @@ class CfnDataIntegrationProps:
555
548
  filters=filters
556
549
  ),
557
550
  object_configuration=object_configuration,
551
+ schedule_config=appintegrations.CfnDataIntegration.ScheduleConfigProperty(
552
+ schedule_expression="scheduleExpression",
553
+
554
+ # the properties below are optional
555
+ first_execution_from="firstExecutionFrom",
556
+ object="object"
557
+ ),
558
558
  tags=[CfnTag(
559
559
  key="key",
560
560
  value="value"
@@ -565,16 +565,15 @@ class CfnDataIntegrationProps:
565
565
  type_hints = typing.get_type_hints(_typecheckingstub__e4e7b2c594c26fb87f1ee6d6a6b7787330233c7a73e8ce2cfe23ce1b18ffe290)
566
566
  check_type(argname="argument kms_key", value=kms_key, expected_type=type_hints["kms_key"])
567
567
  check_type(argname="argument name", value=name, expected_type=type_hints["name"])
568
- check_type(argname="argument schedule_config", value=schedule_config, expected_type=type_hints["schedule_config"])
569
568
  check_type(argname="argument source_uri", value=source_uri, expected_type=type_hints["source_uri"])
570
569
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
571
570
  check_type(argname="argument file_configuration", value=file_configuration, expected_type=type_hints["file_configuration"])
572
571
  check_type(argname="argument object_configuration", value=object_configuration, expected_type=type_hints["object_configuration"])
572
+ check_type(argname="argument schedule_config", value=schedule_config, expected_type=type_hints["schedule_config"])
573
573
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
574
574
  self._values: typing.Dict[builtins.str, typing.Any] = {
575
575
  "kms_key": kms_key,
576
576
  "name": name,
577
- "schedule_config": schedule_config,
578
577
  "source_uri": source_uri,
579
578
  }
580
579
  if description is not None:
@@ -583,6 +582,8 @@ class CfnDataIntegrationProps:
583
582
  self._values["file_configuration"] = file_configuration
584
583
  if object_configuration is not None:
585
584
  self._values["object_configuration"] = object_configuration
585
+ if schedule_config is not None:
586
+ self._values["schedule_config"] = schedule_config
586
587
  if tags is not None:
587
588
  self._values["tags"] = tags
588
589
 
@@ -606,18 +607,6 @@ class CfnDataIntegrationProps:
606
607
  assert result is not None, "Required property 'name' is missing"
607
608
  return typing.cast(builtins.str, result)
608
609
 
609
- @builtins.property
610
- def schedule_config(
611
- self,
612
- ) -> typing.Union[_IResolvable_da3f097b, CfnDataIntegration.ScheduleConfigProperty]:
613
- '''The name of the data and how often it should be pulled from the source.
614
-
615
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-dataintegration.html#cfn-appintegrations-dataintegration-scheduleconfig
616
- '''
617
- result = self._values.get("schedule_config")
618
- assert result is not None, "Required property 'schedule_config' is missing"
619
- return typing.cast(typing.Union[_IResolvable_da3f097b, CfnDataIntegration.ScheduleConfigProperty], result)
620
-
621
610
  @builtins.property
622
611
  def source_uri(self) -> builtins.str:
623
612
  '''The URI of the data source.
@@ -657,6 +646,17 @@ class CfnDataIntegrationProps:
657
646
  result = self._values.get("object_configuration")
658
647
  return typing.cast(typing.Any, result)
659
648
 
649
+ @builtins.property
650
+ def schedule_config(
651
+ self,
652
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDataIntegration.ScheduleConfigProperty]]:
653
+ '''The name of the data and how often it should be pulled from the source.
654
+
655
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-dataintegration.html#cfn-appintegrations-dataintegration-scheduleconfig
656
+ '''
657
+ result = self._values.get("schedule_config")
658
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDataIntegration.ScheduleConfigProperty]], result)
659
+
660
660
  @builtins.property
661
661
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
662
662
  '''An array of key-value pairs to apply to this resource.
@@ -1072,11 +1072,11 @@ def _typecheckingstub__07830c24dc09b0662b03583ee4edbdbaeb4fabf95d85c4f4ed965ea9d
1072
1072
  *,
1073
1073
  kms_key: builtins.str,
1074
1074
  name: builtins.str,
1075
- schedule_config: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataIntegration.ScheduleConfigProperty, typing.Dict[builtins.str, typing.Any]]],
1076
1075
  source_uri: builtins.str,
1077
1076
  description: typing.Optional[builtins.str] = None,
1078
1077
  file_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataIntegration.FileConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
1079
1078
  object_configuration: typing.Any = None,
1079
+ schedule_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataIntegration.ScheduleConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
1080
1080
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
1081
1081
  ) -> None:
1082
1082
  """Type checking stubs"""
@@ -1106,12 +1106,6 @@ def _typecheckingstub__e51110622d3f4ff27df719656fd99fc526be5468469b3eea1ec762212
1106
1106
  """Type checking stubs"""
1107
1107
  pass
1108
1108
 
1109
- def _typecheckingstub__5245bc847871e6f3d723769c28404578dc706f908a62836394d9ef2b6acc8a92(
1110
- value: typing.Union[_IResolvable_da3f097b, CfnDataIntegration.ScheduleConfigProperty],
1111
- ) -> None:
1112
- """Type checking stubs"""
1113
- pass
1114
-
1115
1109
  def _typecheckingstub__c40d38376f274efd003c192558a948691aa19100c92ffcb8b59fa6c6f3ab8dcc(
1116
1110
  value: builtins.str,
1117
1111
  ) -> None:
@@ -1136,6 +1130,12 @@ def _typecheckingstub__09c4d150a6b38a21718340d0e7596e6fe23c488efff8579d0b26f44d2
1136
1130
  """Type checking stubs"""
1137
1131
  pass
1138
1132
 
1133
+ def _typecheckingstub__5245bc847871e6f3d723769c28404578dc706f908a62836394d9ef2b6acc8a92(
1134
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDataIntegration.ScheduleConfigProperty]],
1135
+ ) -> None:
1136
+ """Type checking stubs"""
1137
+ pass
1138
+
1139
1139
  def _typecheckingstub__d778105dbb9cf7d3e71800bafeafc79e0c6102ba3bccf8a3f96fd8b2c9aac3b2(
1140
1140
  value: typing.Optional[typing.List[_CfnTag_f6864754]],
1141
1141
  ) -> None:
@@ -1163,11 +1163,11 @@ def _typecheckingstub__e4e7b2c594c26fb87f1ee6d6a6b7787330233c7a73e8ce2cfe23ce1b1
1163
1163
  *,
1164
1164
  kms_key: builtins.str,
1165
1165
  name: builtins.str,
1166
- schedule_config: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataIntegration.ScheduleConfigProperty, typing.Dict[builtins.str, typing.Any]]],
1167
1166
  source_uri: builtins.str,
1168
1167
  description: typing.Optional[builtins.str] = None,
1169
1168
  file_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataIntegration.FileConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
1170
1169
  object_configuration: typing.Any = None,
1170
+ schedule_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataIntegration.ScheduleConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
1171
1171
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
1172
1172
  ) -> None:
1173
1173
  """Type checking stubs"""
@@ -855,7 +855,8 @@ class CfnService(
855
855
  ),
856
856
  ingress_configuration=apprunner.CfnService.IngressConfigurationProperty(
857
857
  is_publicly_accessible=False
858
- )
858
+ ),
859
+ ip_address_type="ipAddressType"
859
860
  ),
860
861
  observability_configuration=apprunner.CfnService.ServiceObservabilityConfigurationProperty(
861
862
  observability_enabled=False,
@@ -2387,6 +2388,7 @@ class CfnService(
2387
2388
  name_mapping={
2388
2389
  "egress_configuration": "egressConfiguration",
2389
2390
  "ingress_configuration": "ingressConfiguration",
2391
+ "ip_address_type": "ipAddressType",
2390
2392
  },
2391
2393
  )
2392
2394
  class NetworkConfigurationProperty:
@@ -2395,6 +2397,7 @@ class CfnService(
2395
2397
  *,
2396
2398
  egress_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnService.EgressConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
2397
2399
  ingress_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnService.IngressConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
2400
+ ip_address_type: typing.Optional[builtins.str] = None,
2398
2401
  ) -> None:
2399
2402
  '''Describes configuration settings related to network traffic of an AWS App Runner service.
2400
2403
 
@@ -2402,6 +2405,7 @@ class CfnService(
2402
2405
 
2403
2406
  :param egress_configuration: Network configuration settings for outbound message traffic.
2404
2407
  :param ingress_configuration: Network configuration settings for inbound message traffic.
2408
+ :param ip_address_type: App Runner service endpoint IP address type.
2405
2409
 
2406
2410
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-networkconfiguration.html
2407
2411
  :exampleMetadata: fixture=_generated
@@ -2421,18 +2425,22 @@ class CfnService(
2421
2425
  ),
2422
2426
  ingress_configuration=apprunner.CfnService.IngressConfigurationProperty(
2423
2427
  is_publicly_accessible=False
2424
- )
2428
+ ),
2429
+ ip_address_type="ipAddressType"
2425
2430
  )
2426
2431
  '''
2427
2432
  if __debug__:
2428
2433
  type_hints = typing.get_type_hints(_typecheckingstub__d032584a280064bb60d87b518e3b84a91c70e15015ddb757b83c7545dcc84496)
2429
2434
  check_type(argname="argument egress_configuration", value=egress_configuration, expected_type=type_hints["egress_configuration"])
2430
2435
  check_type(argname="argument ingress_configuration", value=ingress_configuration, expected_type=type_hints["ingress_configuration"])
2436
+ check_type(argname="argument ip_address_type", value=ip_address_type, expected_type=type_hints["ip_address_type"])
2431
2437
  self._values: typing.Dict[builtins.str, typing.Any] = {}
2432
2438
  if egress_configuration is not None:
2433
2439
  self._values["egress_configuration"] = egress_configuration
2434
2440
  if ingress_configuration is not None:
2435
2441
  self._values["ingress_configuration"] = ingress_configuration
2442
+ if ip_address_type is not None:
2443
+ self._values["ip_address_type"] = ip_address_type
2436
2444
 
2437
2445
  @builtins.property
2438
2446
  def egress_configuration(
@@ -2456,6 +2464,15 @@ class CfnService(
2456
2464
  result = self._values.get("ingress_configuration")
2457
2465
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnService.IngressConfigurationProperty"]], result)
2458
2466
 
2467
+ @builtins.property
2468
+ def ip_address_type(self) -> typing.Optional[builtins.str]:
2469
+ '''App Runner service endpoint IP address type.
2470
+
2471
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-networkconfiguration.html#cfn-apprunner-service-networkconfiguration-ipaddresstype
2472
+ '''
2473
+ result = self._values.get("ip_address_type")
2474
+ return typing.cast(typing.Optional[builtins.str], result)
2475
+
2459
2476
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
2460
2477
  return isinstance(rhs, self.__class__) and rhs._values == self._values
2461
2478
 
@@ -2932,7 +2949,8 @@ class CfnServiceProps:
2932
2949
  ),
2933
2950
  ingress_configuration=apprunner.CfnService.IngressConfigurationProperty(
2934
2951
  is_publicly_accessible=False
2935
- )
2952
+ ),
2953
+ ip_address_type="ipAddressType"
2936
2954
  ),
2937
2955
  observability_configuration=apprunner.CfnService.ServiceObservabilityConfigurationProperty(
2938
2956
  observability_enabled=False,
@@ -4129,6 +4147,7 @@ def _typecheckingstub__d032584a280064bb60d87b518e3b84a91c70e15015ddb757b83c7545d
4129
4147
  *,
4130
4148
  egress_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnService.EgressConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4131
4149
  ingress_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnService.IngressConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4150
+ ip_address_type: typing.Optional[builtins.str] = None,
4132
4151
  ) -> None:
4133
4152
  """Type checking stubs"""
4134
4153
  pass
@@ -3393,7 +3393,7 @@ class CfnFleet(
3393
3393
  :param image_arn: The ARN of the public, private, or shared image to use.
3394
3394
  :param image_name: The name of the image used to create the fleet.
3395
3395
  :param max_concurrent_sessions: The maximum number of concurrent sessions that can be run on an Elastic fleet. This setting is required for Elastic fleets, but is not used for other fleet types.
3396
- :param max_sessions_per_instance:
3396
+ :param max_sessions_per_instance: The maximum number of user sessions on an instance. This only applies to multi-session fleets.
3397
3397
  :param max_user_duration_in_seconds: The maximum amount of time that a streaming session can remain active, in seconds. If users are still connected to a streaming instance five minutes before this limit is reached, they are prompted to save any open documents before being disconnected. After this time elapses, the instance is terminated and replaced by a new instance. Specify a value between 600 and 432000.
3398
3398
  :param platform: The platform of the fleet. Platform is a required setting for Elastic fleets, and is not used for other fleet types.
3399
3399
  :param session_script_s3_location: The S3 location of the session scripts configuration zip file. This only applies to Elastic fleets.
@@ -3691,6 +3691,7 @@ class CfnFleet(
3691
3691
  @builtins.property
3692
3692
  @jsii.member(jsii_name="maxSessionsPerInstance")
3693
3693
  def max_sessions_per_instance(self) -> typing.Optional[jsii.Number]:
3694
+ '''The maximum number of user sessions on an instance.'''
3694
3695
  return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "maxSessionsPerInstance"))
3695
3696
 
3696
3697
  @max_sessions_per_instance.setter
@@ -3822,7 +3823,7 @@ class CfnFleet(
3822
3823
  '''The desired capacity for a fleet.
3823
3824
 
3824
3825
  :param desired_instances: The desired number of streaming instances.
3825
- :param desired_sessions:
3826
+ :param desired_sessions: The desired number of user sessions for a multi-session fleet. This is not allowed for single-session fleets. When you create a fleet, you must set either the DesiredSessions or DesiredInstances attribute, based on the type of fleet you create. You can’t define both attributes or leave both attributes blank.
3826
3827
 
3827
3828
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html
3828
3829
  :exampleMetadata: fixture=_generated
@@ -3859,7 +3860,10 @@ class CfnFleet(
3859
3860
 
3860
3861
  @builtins.property
3861
3862
  def desired_sessions(self) -> typing.Optional[jsii.Number]:
3862
- '''
3863
+ '''The desired number of user sessions for a multi-session fleet. This is not allowed for single-session fleets.
3864
+
3865
+ When you create a fleet, you must set either the DesiredSessions or DesiredInstances attribute, based on the type of fleet you create. You can’t define both attributes or leave both attributes blank.
3866
+
3863
3867
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredsessions
3864
3868
  '''
3865
3869
  result = self._values.get("desired_sessions")
@@ -4164,7 +4168,7 @@ class CfnFleetProps:
4164
4168
  :param image_arn: The ARN of the public, private, or shared image to use.
4165
4169
  :param image_name: The name of the image used to create the fleet.
4166
4170
  :param max_concurrent_sessions: The maximum number of concurrent sessions that can be run on an Elastic fleet. This setting is required for Elastic fleets, but is not used for other fleet types.
4167
- :param max_sessions_per_instance:
4171
+ :param max_sessions_per_instance: The maximum number of user sessions on an instance. This only applies to multi-session fleets.
4168
4172
  :param max_user_duration_in_seconds: The maximum amount of time that a streaming session can remain active, in seconds. If users are still connected to a streaming instance five minutes before this limit is reached, they are prompted to save any open documents before being disconnected. After this time elapses, the instance is terminated and replaced by a new instance. Specify a value between 600 and 432000.
4169
4173
  :param platform: The platform of the fleet. Platform is a required setting for Elastic fleets, and is not used for other fleet types.
4170
4174
  :param session_script_s3_location: The S3 location of the session scripts configuration zip file. This only applies to Elastic fleets.
@@ -4460,7 +4464,10 @@ class CfnFleetProps:
4460
4464
 
4461
4465
  @builtins.property
4462
4466
  def max_sessions_per_instance(self) -> typing.Optional[jsii.Number]:
4463
- '''
4467
+ '''The maximum number of user sessions on an instance.
4468
+
4469
+ This only applies to multi-session fleets.
4470
+
4464
4471
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-maxsessionsperinstance
4465
4472
  '''
4466
4473
  result = self._values.get("max_sessions_per_instance")
@@ -9409,7 +9409,7 @@ class Definition(
9409
9409
 
9410
9410
  :param file_path: the file path of the schema file.
9411
9411
 
9412
- :return: API Source with schema from file
9412
+ :return: Definition with schema from file
9413
9413
  '''
9414
9414
  if __debug__:
9415
9415
  type_hints = typing.get_type_hints(_typecheckingstub__89cc1c190048bcbbf7149f4144e27b4e4c2a0593d5b3f575c8bb62fc6d8e5f0b)
@@ -9423,7 +9423,7 @@ class Definition(
9423
9423
 
9424
9424
  :param schema: SchemaFile.fromAsset(filePath: string) allows schema definition through schema.graphql file.
9425
9425
 
9426
- :return: API Source with schema from file
9426
+ :return: Definition with schema from file
9427
9427
  '''
9428
9428
  if __debug__:
9429
9429
  type_hints = typing.get_type_hints(_typecheckingstub__45047d8eff66faac12b7947ae55c06352bc0604c421b8db5c437dd926fd21b4e)
@@ -9443,7 +9443,7 @@ class Definition(
9443
9443
  :param source_apis: Definition of source APIs associated with this Merged API.
9444
9444
  :param merged_api_execution_role: IAM Role used to validate access to source APIs at runtime and to update the merged API endpoint with the source API changes. Default: - An IAM Role with acccess to source schemas will be created
9445
9445
 
9446
- :return: API Source with for AppSync Merged API
9446
+ :return: Definition with for AppSync Merged API
9447
9447
  '''
9448
9448
  source_api_options = SourceApiOptions(
9449
9449
  source_apis=source_apis,
@@ -10341,7 +10341,7 @@ class GraphqlApiProps:
10341
10341
 
10342
10342
  :default: - schema will be generated code-first (i.e. addType, addObjectType, etc.)
10343
10343
 
10344
- :deprecated: use apiSource.schema instead
10344
+ :deprecated: use Definition.schema instead
10345
10345
 
10346
10346
  :stability: deprecated
10347
10347
  '''
@@ -2509,6 +2509,14 @@ class CfnAutoScalingGroup(
2509
2509
  '''The CloudFormation resource type name for this resource class.'''
2510
2510
  return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
2511
2511
 
2512
+ @builtins.property
2513
+ @jsii.member(jsii_name="attrId")
2514
+ def attr_id(self) -> builtins.str:
2515
+ '''
2516
+ :cloudformationAttribute: Id
2517
+ '''
2518
+ return typing.cast(builtins.str, jsii.get(self, "attrId"))
2519
+
2512
2520
  @builtins.property
2513
2521
  @jsii.member(jsii_name="cfnProperties")
2514
2522
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]: