aws-cdk-lib 2.125.0__py3-none-any.whl → 2.127.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of aws-cdk-lib might be problematic. Click here for more details.

Files changed (69) hide show
  1. aws_cdk/__init__.py +0 -2
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.125.0.jsii.tgz → aws-cdk-lib@2.127.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_acmpca/__init__.py +18 -6
  5. aws_cdk/aws_amazonmq/__init__.py +3 -2
  6. aws_cdk/aws_amplifyuibuilder/__init__.py +1212 -666
  7. aws_cdk/aws_apigateway/__init__.py +7 -3
  8. aws_cdk/aws_appconfig/__init__.py +108 -19
  9. aws_cdk/aws_appsync/__init__.py +43 -0
  10. aws_cdk/aws_autoscaling/__init__.py +37 -14
  11. aws_cdk/aws_cassandra/__init__.py +810 -4
  12. aws_cdk/aws_cloudfront/__init__.py +35 -37
  13. aws_cdk/aws_cloudfront/experimental/__init__.py +21 -0
  14. aws_cdk/aws_codebuild/__init__.py +43 -3
  15. aws_cdk/aws_codecommit/__init__.py +1 -0
  16. aws_cdk/aws_codepipeline/__init__.py +7 -3
  17. aws_cdk/aws_codepipeline_actions/__init__.py +11 -1
  18. aws_cdk/aws_codestarnotifications/__init__.py +24 -15
  19. aws_cdk/aws_cognito/__init__.py +180 -116
  20. aws_cdk/aws_datasync/__init__.py +8 -4
  21. aws_cdk/aws_dynamodb/__init__.py +80 -11
  22. aws_cdk/aws_ec2/__init__.py +207 -45
  23. aws_cdk/aws_ecs/__init__.py +171 -78
  24. aws_cdk/aws_ecs_patterns/__init__.py +24 -0
  25. aws_cdk/aws_efs/__init__.py +64 -8
  26. aws_cdk/aws_eks/__init__.py +52 -41
  27. aws_cdk/aws_elasticloadbalancingv2/__init__.py +12 -9
  28. aws_cdk/aws_fis/__init__.py +32 -12
  29. aws_cdk/aws_fsx/__init__.py +61 -43
  30. aws_cdk/aws_glue/__init__.py +449 -0
  31. aws_cdk/aws_guardduty/__init__.py +0 -8
  32. aws_cdk/aws_iam/__init__.py +3 -3
  33. aws_cdk/aws_inspectorv2/__init__.py +989 -0
  34. aws_cdk/aws_internetmonitor/__init__.py +10 -12
  35. aws_cdk/aws_iot/__init__.py +112 -0
  36. aws_cdk/aws_iotwireless/__init__.py +32 -19
  37. aws_cdk/aws_lambda/__init__.py +129 -32
  38. aws_cdk/aws_lambda_event_sources/__init__.py +95 -4
  39. aws_cdk/aws_lambda_nodejs/__init__.py +21 -0
  40. aws_cdk/aws_location/__init__.py +8 -2
  41. aws_cdk/aws_logs/__init__.py +7 -3
  42. aws_cdk/aws_networkmanager/__init__.py +1 -1
  43. aws_cdk/aws_opensearchserverless/__init__.py +4 -4
  44. aws_cdk/aws_osis/__init__.py +13 -13
  45. aws_cdk/aws_personalize/__init__.py +1 -1
  46. aws_cdk/aws_pinpoint/__init__.py +5 -5
  47. aws_cdk/aws_pipes/__init__.py +7 -10
  48. aws_cdk/aws_rds/__init__.py +449 -8
  49. aws_cdk/aws_redshiftserverless/__init__.py +282 -0
  50. aws_cdk/aws_rolesanywhere/__init__.py +53 -41
  51. aws_cdk/aws_route53/__init__.py +282 -0
  52. aws_cdk/aws_s3/__init__.py +11 -6
  53. aws_cdk/aws_sagemaker/__init__.py +1398 -39
  54. aws_cdk/aws_sns/__init__.py +56 -13
  55. aws_cdk/aws_sqs/__init__.py +13 -10
  56. aws_cdk/aws_stepfunctions/__init__.py +3612 -1395
  57. aws_cdk/aws_stepfunctions_tasks/__init__.py +267 -181
  58. aws_cdk/aws_transfer/__init__.py +1 -1
  59. aws_cdk/aws_verifiedpermissions/__init__.py +55 -55
  60. aws_cdk/aws_workspacesweb/__init__.py +6 -3
  61. aws_cdk/cx_api/__init__.py +17 -0
  62. aws_cdk/triggers/__init__.py +21 -0
  63. {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/METADATA +1 -1
  64. {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/RECORD +68 -69
  65. aws_cdk/aws_ssmguiconnect/__init__.py +0 -540
  66. {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/LICENSE +0 -0
  67. {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/NOTICE +0 -0
  68. {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/WHEEL +0 -0
  69. {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/top_level.txt +0 -0
@@ -74,58 +74,58 @@ class CfnComponent(
74
74
  scope: _constructs_77d1e7e8.Construct,
75
75
  id: builtins.str,
76
76
  *,
77
- binding_properties: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnComponent.ComponentBindingPropertiesValueProperty", typing.Dict[builtins.str, typing.Any]]]]],
78
- component_type: builtins.str,
79
- name: builtins.str,
80
- overrides: typing.Any,
81
- properties: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnComponent.ComponentPropertyProperty", typing.Dict[builtins.str, typing.Any]]]]],
82
- variants: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnComponent.ComponentVariantProperty", typing.Dict[builtins.str, typing.Any]]]]],
83
77
  app_id: typing.Optional[builtins.str] = None,
78
+ binding_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnComponent.ComponentBindingPropertiesValueProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
84
79
  children: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnComponent.ComponentChildProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
85
80
  collection_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnComponent.ComponentDataConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
81
+ component_type: typing.Optional[builtins.str] = None,
86
82
  environment_name: typing.Optional[builtins.str] = None,
87
83
  events: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnComponent.ComponentEventProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
84
+ name: typing.Optional[builtins.str] = None,
85
+ overrides: typing.Any = None,
86
+ properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnComponent.ComponentPropertyProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
88
87
  schema_version: typing.Optional[builtins.str] = None,
89
88
  source_id: typing.Optional[builtins.str] = None,
90
89
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
90
+ variants: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnComponent.ComponentVariantProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
91
91
  ) -> None:
92
92
  '''
93
93
  :param scope: Scope in which this resource is defined.
94
94
  :param id: Construct identifier for this resource (unique in its scope).
95
- :param binding_properties: The information to connect a component's properties to data at runtime. You can't specify ``tags`` as a valid property for ``bindingProperties`` .
96
- :param component_type: The type of the component. This can be an Amplify custom UI component or another custom component.
97
- :param name: The name of the component.
98
- :param overrides: Describes the component's properties that can be overriden in a customized instance of the component. You can't specify ``tags`` as a valid property for ``overrides`` .
99
- :param properties: Describes the component's properties. You can't specify ``tags`` as a valid property for ``properties`` .
100
- :param variants: A list of the component's variants. A variant is a unique style configuration of a main component.
101
95
  :param app_id: The unique ID of the Amplify app associated with the component.
96
+ :param binding_properties: The information to connect a component's properties to data at runtime. You can't specify ``tags`` as a valid property for ``bindingProperties`` .
102
97
  :param children: A list of the component's ``ComponentChild`` instances.
103
98
  :param collection_properties: The data binding configuration for the component's properties. Use this for a collection component. You can't specify ``tags`` as a valid property for ``collectionProperties`` .
99
+ :param component_type: The type of the component. This can be an Amplify custom UI component or another custom component.
104
100
  :param environment_name: The name of the backend environment that is a part of the Amplify app.
105
101
  :param events: Describes the events that can be raised on the component. Use for the workflow feature in Amplify Studio that allows you to bind events and actions to components.
102
+ :param name: The name of the component.
103
+ :param overrides: Describes the component's properties that can be overriden in a customized instance of the component. You can't specify ``tags`` as a valid property for ``overrides`` .
104
+ :param properties: Describes the component's properties. You can't specify ``tags`` as a valid property for ``properties`` .
106
105
  :param schema_version: The schema version of the component when it was imported.
107
106
  :param source_id: The unique ID of the component in its original source system, such as Figma.
108
107
  :param tags: One or more key-value pairs to use when tagging the component.
108
+ :param variants: A list of the component's variants. A variant is a unique style configuration of a main component.
109
109
  '''
110
110
  if __debug__:
111
111
  type_hints = typing.get_type_hints(_typecheckingstub__fd7799829199faf127a94fa77781fc238076f764c5a29e3192b18302477d99ad)
112
112
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
113
113
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
114
114
  props = CfnComponentProps(
115
- binding_properties=binding_properties,
116
- component_type=component_type,
117
- name=name,
118
- overrides=overrides,
119
- properties=properties,
120
- variants=variants,
121
115
  app_id=app_id,
116
+ binding_properties=binding_properties,
122
117
  children=children,
123
118
  collection_properties=collection_properties,
119
+ component_type=component_type,
124
120
  environment_name=environment_name,
125
121
  events=events,
122
+ name=name,
123
+ overrides=overrides,
124
+ properties=properties,
126
125
  schema_version=schema_version,
127
126
  source_id=source_id,
128
127
  tags=tags,
128
+ variants=variants,
129
129
  )
130
130
 
131
131
  jsii.create(self.__class__, self, [scope, id, props])
@@ -160,6 +160,15 @@ class CfnComponent(
160
160
  '''The CloudFormation resource type name for this resource class.'''
161
161
  return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
162
162
 
163
+ @builtins.property
164
+ @jsii.member(jsii_name="attrCreatedAt")
165
+ def attr_created_at(self) -> builtins.str:
166
+ '''The time that the component was created.
167
+
168
+ :cloudformationAttribute: CreatedAt
169
+ '''
170
+ return typing.cast(builtins.str, jsii.get(self, "attrCreatedAt"))
171
+
163
172
  @builtins.property
164
173
  @jsii.member(jsii_name="attrId")
165
174
  def attr_id(self) -> builtins.str:
@@ -169,6 +178,15 @@ class CfnComponent(
169
178
  '''
170
179
  return typing.cast(builtins.str, jsii.get(self, "attrId"))
171
180
 
181
+ @builtins.property
182
+ @jsii.member(jsii_name="attrModifiedAt")
183
+ def attr_modified_at(self) -> builtins.str:
184
+ '''The time that the component was modified.
185
+
186
+ :cloudformationAttribute: ModifiedAt
187
+ '''
188
+ return typing.cast(builtins.str, jsii.get(self, "attrModifiedAt"))
189
+
172
190
  @builtins.property
173
191
  @jsii.member(jsii_name="cfnProperties")
174
192
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -180,112 +198,37 @@ class CfnComponent(
180
198
  '''Tag Manager which manages the tags for this resource.'''
181
199
  return typing.cast(_TagManager_0a598cb3, jsii.get(self, "tags"))
182
200
 
201
+ @builtins.property
202
+ @jsii.member(jsii_name="appId")
203
+ def app_id(self) -> typing.Optional[builtins.str]:
204
+ '''The unique ID of the Amplify app associated with the component.'''
205
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "appId"))
206
+
207
+ @app_id.setter
208
+ def app_id(self, value: typing.Optional[builtins.str]) -> None:
209
+ if __debug__:
210
+ type_hints = typing.get_type_hints(_typecheckingstub__52def26f5917015e0ec1be927753e0ddd7c6ba2b26ed493f53e325e9fc57f820)
211
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
212
+ jsii.set(self, "appId", value)
213
+
183
214
  @builtins.property
184
215
  @jsii.member(jsii_name="bindingProperties")
185
216
  def binding_properties(
186
217
  self,
187
- ) -> typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentBindingPropertiesValueProperty"]]]:
218
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentBindingPropertiesValueProperty"]]]]:
188
219
  '''The information to connect a component's properties to data at runtime.'''
189
- return typing.cast(typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentBindingPropertiesValueProperty"]]], jsii.get(self, "bindingProperties"))
220
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentBindingPropertiesValueProperty"]]]], jsii.get(self, "bindingProperties"))
190
221
 
191
222
  @binding_properties.setter
192
223
  def binding_properties(
193
224
  self,
194
- value: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentBindingPropertiesValueProperty"]]],
225
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentBindingPropertiesValueProperty"]]]],
195
226
  ) -> None:
196
227
  if __debug__:
197
228
  type_hints = typing.get_type_hints(_typecheckingstub__4318ac16b5fec407f318eecf547fbef09f6a25d44eee663a0eb2d9d4cfb515c8)
198
229
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
199
230
  jsii.set(self, "bindingProperties", value)
200
231
 
201
- @builtins.property
202
- @jsii.member(jsii_name="componentType")
203
- def component_type(self) -> builtins.str:
204
- '''The type of the component.'''
205
- return typing.cast(builtins.str, jsii.get(self, "componentType"))
206
-
207
- @component_type.setter
208
- def component_type(self, value: builtins.str) -> None:
209
- if __debug__:
210
- type_hints = typing.get_type_hints(_typecheckingstub__d75568dbcc6cfcf6d654bc9d347cea6e2a04e9fed153e3f59a35fd309d097273)
211
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
212
- jsii.set(self, "componentType", value)
213
-
214
- @builtins.property
215
- @jsii.member(jsii_name="name")
216
- def name(self) -> builtins.str:
217
- '''The name of the component.'''
218
- return typing.cast(builtins.str, jsii.get(self, "name"))
219
-
220
- @name.setter
221
- def name(self, value: builtins.str) -> None:
222
- if __debug__:
223
- type_hints = typing.get_type_hints(_typecheckingstub__d390004d0f30759542ef28ada1804bcce6e8abbebac682bdb562339425f06133)
224
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
225
- jsii.set(self, "name", value)
226
-
227
- @builtins.property
228
- @jsii.member(jsii_name="overrides")
229
- def overrides(self) -> typing.Any:
230
- '''Describes the component's properties that can be overriden in a customized instance of the component.'''
231
- return typing.cast(typing.Any, jsii.get(self, "overrides"))
232
-
233
- @overrides.setter
234
- def overrides(self, value: typing.Any) -> None:
235
- if __debug__:
236
- type_hints = typing.get_type_hints(_typecheckingstub__0df3bcfbc7a5f3b8c1c149ff6cbac150b1f0b40f2b39df29eaf014b9a94c7083)
237
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
238
- jsii.set(self, "overrides", value)
239
-
240
- @builtins.property
241
- @jsii.member(jsii_name="properties")
242
- def properties(
243
- self,
244
- ) -> typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentPropertyProperty"]]]:
245
- '''Describes the component's properties.'''
246
- return typing.cast(typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentPropertyProperty"]]], jsii.get(self, "properties"))
247
-
248
- @properties.setter
249
- def properties(
250
- self,
251
- value: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentPropertyProperty"]]],
252
- ) -> None:
253
- if __debug__:
254
- type_hints = typing.get_type_hints(_typecheckingstub__996d9ae7924c5b47d79b0dc8a0bdd64fe013219ccbe4230a2423b7e9ad5aba37)
255
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
256
- jsii.set(self, "properties", value)
257
-
258
- @builtins.property
259
- @jsii.member(jsii_name="variants")
260
- def variants(
261
- self,
262
- ) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentVariantProperty"]]]:
263
- '''A list of the component's variants.'''
264
- return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentVariantProperty"]]], jsii.get(self, "variants"))
265
-
266
- @variants.setter
267
- def variants(
268
- self,
269
- value: typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentVariantProperty"]]],
270
- ) -> None:
271
- if __debug__:
272
- type_hints = typing.get_type_hints(_typecheckingstub__21622fc70206995803294c972e78d130850c0e1dde7f836f2646dd47d873fc48)
273
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
274
- jsii.set(self, "variants", value)
275
-
276
- @builtins.property
277
- @jsii.member(jsii_name="appId")
278
- def app_id(self) -> typing.Optional[builtins.str]:
279
- '''The unique ID of the Amplify app associated with the component.'''
280
- return typing.cast(typing.Optional[builtins.str], jsii.get(self, "appId"))
281
-
282
- @app_id.setter
283
- def app_id(self, value: typing.Optional[builtins.str]) -> None:
284
- if __debug__:
285
- type_hints = typing.get_type_hints(_typecheckingstub__52def26f5917015e0ec1be927753e0ddd7c6ba2b26ed493f53e325e9fc57f820)
286
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
287
- jsii.set(self, "appId", value)
288
-
289
232
  @builtins.property
290
233
  @jsii.member(jsii_name="children")
291
234
  def children(
@@ -322,6 +265,19 @@ class CfnComponent(
322
265
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
323
266
  jsii.set(self, "collectionProperties", value)
324
267
 
268
+ @builtins.property
269
+ @jsii.member(jsii_name="componentType")
270
+ def component_type(self) -> typing.Optional[builtins.str]:
271
+ '''The type of the component.'''
272
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "componentType"))
273
+
274
+ @component_type.setter
275
+ def component_type(self, value: typing.Optional[builtins.str]) -> None:
276
+ if __debug__:
277
+ type_hints = typing.get_type_hints(_typecheckingstub__d75568dbcc6cfcf6d654bc9d347cea6e2a04e9fed153e3f59a35fd309d097273)
278
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
279
+ jsii.set(self, "componentType", value)
280
+
325
281
  @builtins.property
326
282
  @jsii.member(jsii_name="environmentName")
327
283
  def environment_name(self) -> typing.Optional[builtins.str]:
@@ -353,6 +309,50 @@ class CfnComponent(
353
309
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
354
310
  jsii.set(self, "events", value)
355
311
 
312
+ @builtins.property
313
+ @jsii.member(jsii_name="name")
314
+ def name(self) -> typing.Optional[builtins.str]:
315
+ '''The name of the component.'''
316
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "name"))
317
+
318
+ @name.setter
319
+ def name(self, value: typing.Optional[builtins.str]) -> None:
320
+ if __debug__:
321
+ type_hints = typing.get_type_hints(_typecheckingstub__d390004d0f30759542ef28ada1804bcce6e8abbebac682bdb562339425f06133)
322
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
323
+ jsii.set(self, "name", value)
324
+
325
+ @builtins.property
326
+ @jsii.member(jsii_name="overrides")
327
+ def overrides(self) -> typing.Any:
328
+ '''Describes the component's properties that can be overriden in a customized instance of the component.'''
329
+ return typing.cast(typing.Any, jsii.get(self, "overrides"))
330
+
331
+ @overrides.setter
332
+ def overrides(self, value: typing.Any) -> None:
333
+ if __debug__:
334
+ type_hints = typing.get_type_hints(_typecheckingstub__0df3bcfbc7a5f3b8c1c149ff6cbac150b1f0b40f2b39df29eaf014b9a94c7083)
335
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
336
+ jsii.set(self, "overrides", value)
337
+
338
+ @builtins.property
339
+ @jsii.member(jsii_name="properties")
340
+ def properties(
341
+ self,
342
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentPropertyProperty"]]]]:
343
+ '''Describes the component's properties.'''
344
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentPropertyProperty"]]]], jsii.get(self, "properties"))
345
+
346
+ @properties.setter
347
+ def properties(
348
+ self,
349
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentPropertyProperty"]]]],
350
+ ) -> None:
351
+ if __debug__:
352
+ type_hints = typing.get_type_hints(_typecheckingstub__996d9ae7924c5b47d79b0dc8a0bdd64fe013219ccbe4230a2423b7e9ad5aba37)
353
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
354
+ jsii.set(self, "properties", value)
355
+
356
356
  @builtins.property
357
357
  @jsii.member(jsii_name="schemaVersion")
358
358
  def schema_version(self) -> typing.Optional[builtins.str]:
@@ -395,6 +395,24 @@ class CfnComponent(
395
395
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
396
396
  jsii.set(self, "tagsRaw", value)
397
397
 
398
+ @builtins.property
399
+ @jsii.member(jsii_name="variants")
400
+ def variants(
401
+ self,
402
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentVariantProperty"]]]]:
403
+ '''A list of the component's variants.'''
404
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentVariantProperty"]]]], jsii.get(self, "variants"))
405
+
406
+ @variants.setter
407
+ def variants(
408
+ self,
409
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentVariantProperty"]]]],
410
+ ) -> None:
411
+ if __debug__:
412
+ type_hints = typing.get_type_hints(_typecheckingstub__21622fc70206995803294c972e78d130850c0e1dde7f836f2646dd47d873fc48)
413
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
414
+ jsii.set(self, "variants", value)
415
+
398
416
  @jsii.data_type(
399
417
  jsii_type="aws-cdk-lib.aws_amplifyuibuilder.CfnComponent.ActionParametersProperty",
400
418
  jsii_struct_bases=[],
@@ -940,6 +958,7 @@ class CfnComponent(
940
958
  "key": "key",
941
959
  "model": "model",
942
960
  "predicates": "predicates",
961
+ "slot_name": "slotName",
943
962
  "user_attribute": "userAttribute",
944
963
  },
945
964
  )
@@ -953,6 +972,7 @@ class CfnComponent(
953
972
  key: typing.Optional[builtins.str] = None,
954
973
  model: typing.Optional[builtins.str] = None,
955
974
  predicates: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnComponent.PredicateProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
975
+ slot_name: typing.Optional[builtins.str] = None,
956
976
  user_attribute: typing.Optional[builtins.str] = None,
957
977
  ) -> None:
958
978
  '''The ``ComponentBindingPropertiesValueProperties`` property specifies the data binding configuration for a specific property using data stored in AWS .
@@ -965,6 +985,7 @@ class CfnComponent(
965
985
  :param key: The storage key for an Amazon S3 bucket.
966
986
  :param model: An Amplify DataStore model.
967
987
  :param predicates: A list of predicates for binding a component's properties to data.
988
+ :param slot_name: The name of a component slot.
968
989
  :param user_attribute: An authenticated user attribute.
969
990
 
970
991
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-componentbindingpropertiesvalueproperties.html
@@ -988,9 +1009,11 @@ class CfnComponent(
988
1009
  and=[predicate_property_],
989
1010
  field="field",
990
1011
  operand="operand",
1012
+ operand_type="operandType",
991
1013
  operator="operator",
992
1014
  or=[predicate_property_]
993
1015
  )],
1016
+ slot_name="slotName",
994
1017
  user_attribute="userAttribute"
995
1018
  )
996
1019
  '''
@@ -1002,6 +1025,7 @@ class CfnComponent(
1002
1025
  check_type(argname="argument key", value=key, expected_type=type_hints["key"])
1003
1026
  check_type(argname="argument model", value=model, expected_type=type_hints["model"])
1004
1027
  check_type(argname="argument predicates", value=predicates, expected_type=type_hints["predicates"])
1028
+ check_type(argname="argument slot_name", value=slot_name, expected_type=type_hints["slot_name"])
1005
1029
  check_type(argname="argument user_attribute", value=user_attribute, expected_type=type_hints["user_attribute"])
1006
1030
  self._values: typing.Dict[builtins.str, typing.Any] = {}
1007
1031
  if bucket is not None:
@@ -1016,6 +1040,8 @@ class CfnComponent(
1016
1040
  self._values["model"] = model
1017
1041
  if predicates is not None:
1018
1042
  self._values["predicates"] = predicates
1043
+ if slot_name is not None:
1044
+ self._values["slot_name"] = slot_name
1019
1045
  if user_attribute is not None:
1020
1046
  self._values["user_attribute"] = user_attribute
1021
1047
 
@@ -1075,6 +1101,15 @@ class CfnComponent(
1075
1101
  result = self._values.get("predicates")
1076
1102
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnComponent.PredicateProperty"]]]], result)
1077
1103
 
1104
+ @builtins.property
1105
+ def slot_name(self) -> typing.Optional[builtins.str]:
1106
+ '''The name of a component slot.
1107
+
1108
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-componentbindingpropertiesvalueproperties.html#cfn-amplifyuibuilder-component-componentbindingpropertiesvalueproperties-slotname
1109
+ '''
1110
+ result = self._values.get("slot_name")
1111
+ return typing.cast(typing.Optional[builtins.str], result)
1112
+
1078
1113
  @builtins.property
1079
1114
  def user_attribute(self) -> typing.Optional[builtins.str]:
1080
1115
  '''An authenticated user attribute.
@@ -1142,9 +1177,11 @@ class CfnComponent(
1142
1177
  and=[predicate_property_],
1143
1178
  field="field",
1144
1179
  operand="operand",
1180
+ operand_type="operandType",
1145
1181
  operator="operator",
1146
1182
  or=[predicate_property_]
1147
1183
  )],
1184
+ slot_name="slotName",
1148
1185
  user_attribute="userAttribute"
1149
1186
  ),
1150
1187
  default_value="defaultValue",
@@ -1213,6 +1250,7 @@ class CfnComponent(
1213
1250
  "properties": "properties",
1214
1251
  "children": "children",
1215
1252
  "events": "events",
1253
+ "source_id": "sourceId",
1216
1254
  },
1217
1255
  )
1218
1256
  class ComponentChildProperty:
@@ -1224,6 +1262,7 @@ class CfnComponent(
1224
1262
  properties: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnComponent.ComponentPropertyProperty", typing.Dict[builtins.str, typing.Any]]]]],
1225
1263
  children: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnComponent.ComponentChildProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
1226
1264
  events: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnComponent.ComponentEventProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
1265
+ source_id: typing.Optional[builtins.str] = None,
1227
1266
  ) -> None:
1228
1267
  '''The ``ComponentChild`` property specifies a nested UI configuration within a parent ``Component`` .
1229
1268
 
@@ -1232,6 +1271,7 @@ class CfnComponent(
1232
1271
  :param properties: Describes the properties of the child component. You can't specify ``tags`` as a valid property for ``properties`` .
1233
1272
  :param children: The list of ``ComponentChild`` instances for this component.
1234
1273
  :param events: Describes the events that can be raised on the child component. Use for the workflow feature in Amplify Studio that allows you to bind events and actions to components.
1274
+ :param source_id: The unique ID of the child component in its original source system, such as Figma.
1235
1275
 
1236
1276
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-componentchild.html
1237
1277
  :exampleMetadata: fixture=_generated
@@ -1296,6 +1336,7 @@ class CfnComponent(
1296
1336
  events={
1297
1337
  "events_key": amplifyuibuilder.CfnComponent.ComponentEventProperty(
1298
1338
  action="action",
1339
+ binding_event="bindingEvent",
1299
1340
  parameters=amplifyuibuilder.CfnComponent.ActionParametersProperty(
1300
1341
  anchor=amplifyuibuilder.CfnComponent.ComponentPropertyProperty(
1301
1342
  binding_properties=amplifyuibuilder.CfnComponent.ComponentPropertyBindingPropertiesProperty(
@@ -1626,7 +1667,8 @@ class CfnComponent(
1626
1667
  )
1627
1668
  )
1628
1669
  )
1629
- }
1670
+ },
1671
+ source_id="sourceId"
1630
1672
  )
1631
1673
  '''
1632
1674
  if __debug__:
@@ -1636,6 +1678,7 @@ class CfnComponent(
1636
1678
  check_type(argname="argument properties", value=properties, expected_type=type_hints["properties"])
1637
1679
  check_type(argname="argument children", value=children, expected_type=type_hints["children"])
1638
1680
  check_type(argname="argument events", value=events, expected_type=type_hints["events"])
1681
+ check_type(argname="argument source_id", value=source_id, expected_type=type_hints["source_id"])
1639
1682
  self._values: typing.Dict[builtins.str, typing.Any] = {
1640
1683
  "component_type": component_type,
1641
1684
  "name": name,
@@ -1645,6 +1688,8 @@ class CfnComponent(
1645
1688
  self._values["children"] = children
1646
1689
  if events is not None:
1647
1690
  self._values["events"] = events
1691
+ if source_id is not None:
1692
+ self._values["source_id"] = source_id
1648
1693
 
1649
1694
  @builtins.property
1650
1695
  def component_type(self) -> builtins.str:
@@ -1704,6 +1749,15 @@ class CfnComponent(
1704
1749
  result = self._values.get("events")
1705
1750
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnComponent.ComponentEventProperty"]]]], result)
1706
1751
 
1752
+ @builtins.property
1753
+ def source_id(self) -> typing.Optional[builtins.str]:
1754
+ '''The unique ID of the child component in its original source system, such as Figma.
1755
+
1756
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-componentchild.html#cfn-amplifyuibuilder-component-componentchild-sourceid
1757
+ '''
1758
+ result = self._values.get("source_id")
1759
+ return typing.cast(typing.Optional[builtins.str], result)
1760
+
1707
1761
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
1708
1762
  return isinstance(rhs, self.__class__) and rhs._values == self._values
1709
1763
 
@@ -1987,6 +2041,7 @@ class CfnComponent(
1987
2041
  and=[predicate_property_],
1988
2042
  field="field",
1989
2043
  operand="operand",
2044
+ operand_type="operandType",
1990
2045
  operator="operator",
1991
2046
  or=[predicate_property_]
1992
2047
  ),
@@ -2071,13 +2126,18 @@ class CfnComponent(
2071
2126
  @jsii.data_type(
2072
2127
  jsii_type="aws-cdk-lib.aws_amplifyuibuilder.CfnComponent.ComponentEventProperty",
2073
2128
  jsii_struct_bases=[],
2074
- name_mapping={"action": "action", "parameters": "parameters"},
2129
+ name_mapping={
2130
+ "action": "action",
2131
+ "binding_event": "bindingEvent",
2132
+ "parameters": "parameters",
2133
+ },
2075
2134
  )
2076
2135
  class ComponentEventProperty:
2077
2136
  def __init__(
2078
2137
  self,
2079
2138
  *,
2080
2139
  action: typing.Optional[builtins.str] = None,
2140
+ binding_event: typing.Optional[builtins.str] = None,
2081
2141
  parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnComponent.ActionParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
2082
2142
  ) -> None:
2083
2143
  '''The ``ComponentEvent`` property specifies the configuration of an event.
@@ -2085,6 +2145,7 @@ class CfnComponent(
2085
2145
  You can bind an event and a corresponding action to a ``Component`` or a ``ComponentChild`` . A button click is an example of an event.
2086
2146
 
2087
2147
  :param action: The action to perform when a specific event is raised.
2148
+ :param binding_event: Binds an event to an action on a component. When you specify a ``bindingEvent`` , the event is called when the action is performed.
2088
2149
  :param parameters: Describes information about the action.
2089
2150
 
2090
2151
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-componentevent.html
@@ -2100,6 +2161,7 @@ class CfnComponent(
2100
2161
 
2101
2162
  component_event_property = amplifyuibuilder.CfnComponent.ComponentEventProperty(
2102
2163
  action="action",
2164
+ binding_event="bindingEvent",
2103
2165
  parameters=amplifyuibuilder.CfnComponent.ActionParametersProperty(
2104
2166
  anchor=amplifyuibuilder.CfnComponent.ComponentPropertyProperty(
2105
2167
  binding_properties=amplifyuibuilder.CfnComponent.ComponentPropertyBindingPropertiesProperty(
@@ -2434,10 +2496,13 @@ class CfnComponent(
2434
2496
  if __debug__:
2435
2497
  type_hints = typing.get_type_hints(_typecheckingstub__0a2199271a6b5de84d37a061bced7624cc98fc5b38d9799e48008b25cc4beb30)
2436
2498
  check_type(argname="argument action", value=action, expected_type=type_hints["action"])
2499
+ check_type(argname="argument binding_event", value=binding_event, expected_type=type_hints["binding_event"])
2437
2500
  check_type(argname="argument parameters", value=parameters, expected_type=type_hints["parameters"])
2438
2501
  self._values: typing.Dict[builtins.str, typing.Any] = {}
2439
2502
  if action is not None:
2440
2503
  self._values["action"] = action
2504
+ if binding_event is not None:
2505
+ self._values["binding_event"] = binding_event
2441
2506
  if parameters is not None:
2442
2507
  self._values["parameters"] = parameters
2443
2508
 
@@ -2450,6 +2515,17 @@ class CfnComponent(
2450
2515
  result = self._values.get("action")
2451
2516
  return typing.cast(typing.Optional[builtins.str], result)
2452
2517
 
2518
+ @builtins.property
2519
+ def binding_event(self) -> typing.Optional[builtins.str]:
2520
+ '''Binds an event to an action on a component.
2521
+
2522
+ When you specify a ``bindingEvent`` , the event is called when the action is performed.
2523
+
2524
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-componentevent.html#cfn-amplifyuibuilder-component-componentevent-bindingevent
2525
+ '''
2526
+ result = self._values.get("binding_event")
2527
+ return typing.cast(typing.Optional[builtins.str], result)
2528
+
2453
2529
  @builtins.property
2454
2530
  def parameters(
2455
2531
  self,
@@ -3155,6 +3231,7 @@ class CfnComponent(
3155
3231
  "and_": "and",
3156
3232
  "field": "field",
3157
3233
  "operand": "operand",
3234
+ "operand_type": "operandType",
3158
3235
  "operator": "operator",
3159
3236
  "or_": "or",
3160
3237
  },
@@ -3166,6 +3243,7 @@ class CfnComponent(
3166
3243
  and_: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnComponent.PredicateProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
3167
3244
  field: typing.Optional[builtins.str] = None,
3168
3245
  operand: typing.Optional[builtins.str] = None,
3246
+ operand_type: typing.Optional[builtins.str] = None,
3169
3247
  operator: typing.Optional[builtins.str] = None,
3170
3248
  or_: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnComponent.PredicateProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
3171
3249
  ) -> None:
@@ -3176,6 +3254,7 @@ class CfnComponent(
3176
3254
  :param and_: A list of predicates to combine logically.
3177
3255
  :param field: The field to query.
3178
3256
  :param operand: The value to use when performing the evaluation.
3257
+ :param operand_type: The type of value to use when performing the evaluation.
3179
3258
  :param operator: The operator to use to perform the evaluation.
3180
3259
  :param or_: A list of predicates to combine logically.
3181
3260
 
@@ -3194,6 +3273,7 @@ class CfnComponent(
3194
3273
  and=[predicate_property_],
3195
3274
  field="field",
3196
3275
  operand="operand",
3276
+ operand_type="operandType",
3197
3277
  operator="operator",
3198
3278
  or=[predicate_property_]
3199
3279
  )
@@ -3203,6 +3283,7 @@ class CfnComponent(
3203
3283
  check_type(argname="argument and_", value=and_, expected_type=type_hints["and_"])
3204
3284
  check_type(argname="argument field", value=field, expected_type=type_hints["field"])
3205
3285
  check_type(argname="argument operand", value=operand, expected_type=type_hints["operand"])
3286
+ check_type(argname="argument operand_type", value=operand_type, expected_type=type_hints["operand_type"])
3206
3287
  check_type(argname="argument operator", value=operator, expected_type=type_hints["operator"])
3207
3288
  check_type(argname="argument or_", value=or_, expected_type=type_hints["or_"])
3208
3289
  self._values: typing.Dict[builtins.str, typing.Any] = {}
@@ -3212,6 +3293,8 @@ class CfnComponent(
3212
3293
  self._values["field"] = field
3213
3294
  if operand is not None:
3214
3295
  self._values["operand"] = operand
3296
+ if operand_type is not None:
3297
+ self._values["operand_type"] = operand_type
3215
3298
  if operator is not None:
3216
3299
  self._values["operator"] = operator
3217
3300
  if or_ is not None:
@@ -3246,6 +3329,15 @@ class CfnComponent(
3246
3329
  result = self._values.get("operand")
3247
3330
  return typing.cast(typing.Optional[builtins.str], result)
3248
3331
 
3332
+ @builtins.property
3333
+ def operand_type(self) -> typing.Optional[builtins.str]:
3334
+ '''The type of value to use when performing the evaluation.
3335
+
3336
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-predicate.html#cfn-amplifyuibuilder-component-predicate-operandtype
3337
+ '''
3338
+ result = self._values.get("operand_type")
3339
+ return typing.cast(typing.Optional[builtins.str], result)
3340
+
3249
3341
  @builtins.property
3250
3342
  def operator(self) -> typing.Optional[builtins.str]:
3251
3343
  '''The operator to use to perform the evaluation.
@@ -3348,57 +3440,57 @@ class CfnComponent(
3348
3440
  jsii_type="aws-cdk-lib.aws_amplifyuibuilder.CfnComponentProps",
3349
3441
  jsii_struct_bases=[],
3350
3442
  name_mapping={
3351
- "binding_properties": "bindingProperties",
3352
- "component_type": "componentType",
3353
- "name": "name",
3354
- "overrides": "overrides",
3355
- "properties": "properties",
3356
- "variants": "variants",
3357
3443
  "app_id": "appId",
3444
+ "binding_properties": "bindingProperties",
3358
3445
  "children": "children",
3359
3446
  "collection_properties": "collectionProperties",
3447
+ "component_type": "componentType",
3360
3448
  "environment_name": "environmentName",
3361
3449
  "events": "events",
3450
+ "name": "name",
3451
+ "overrides": "overrides",
3452
+ "properties": "properties",
3362
3453
  "schema_version": "schemaVersion",
3363
3454
  "source_id": "sourceId",
3364
3455
  "tags": "tags",
3456
+ "variants": "variants",
3365
3457
  },
3366
3458
  )
3367
3459
  class CfnComponentProps:
3368
3460
  def __init__(
3369
3461
  self,
3370
3462
  *,
3371
- binding_properties: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentBindingPropertiesValueProperty, typing.Dict[builtins.str, typing.Any]]]]],
3372
- component_type: builtins.str,
3373
- name: builtins.str,
3374
- overrides: typing.Any,
3375
- properties: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentPropertyProperty, typing.Dict[builtins.str, typing.Any]]]]],
3376
- variants: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentVariantProperty, typing.Dict[builtins.str, typing.Any]]]]],
3377
3463
  app_id: typing.Optional[builtins.str] = None,
3464
+ binding_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentBindingPropertiesValueProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
3378
3465
  children: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentChildProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
3379
3466
  collection_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentDataConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
3467
+ component_type: typing.Optional[builtins.str] = None,
3380
3468
  environment_name: typing.Optional[builtins.str] = None,
3381
3469
  events: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentEventProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
3470
+ name: typing.Optional[builtins.str] = None,
3471
+ overrides: typing.Any = None,
3472
+ properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentPropertyProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
3382
3473
  schema_version: typing.Optional[builtins.str] = None,
3383
3474
  source_id: typing.Optional[builtins.str] = None,
3384
3475
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3476
+ variants: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentVariantProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
3385
3477
  ) -> None:
3386
3478
  '''Properties for defining a ``CfnComponent``.
3387
3479
 
3388
- :param binding_properties: The information to connect a component's properties to data at runtime. You can't specify ``tags`` as a valid property for ``bindingProperties`` .
3389
- :param component_type: The type of the component. This can be an Amplify custom UI component or another custom component.
3390
- :param name: The name of the component.
3391
- :param overrides: Describes the component's properties that can be overriden in a customized instance of the component. You can't specify ``tags`` as a valid property for ``overrides`` .
3392
- :param properties: Describes the component's properties. You can't specify ``tags`` as a valid property for ``properties`` .
3393
- :param variants: A list of the component's variants. A variant is a unique style configuration of a main component.
3394
3480
  :param app_id: The unique ID of the Amplify app associated with the component.
3481
+ :param binding_properties: The information to connect a component's properties to data at runtime. You can't specify ``tags`` as a valid property for ``bindingProperties`` .
3395
3482
  :param children: A list of the component's ``ComponentChild`` instances.
3396
3483
  :param collection_properties: The data binding configuration for the component's properties. Use this for a collection component. You can't specify ``tags`` as a valid property for ``collectionProperties`` .
3484
+ :param component_type: The type of the component. This can be an Amplify custom UI component or another custom component.
3397
3485
  :param environment_name: The name of the backend environment that is a part of the Amplify app.
3398
3486
  :param events: Describes the events that can be raised on the component. Use for the workflow feature in Amplify Studio that allows you to bind events and actions to components.
3487
+ :param name: The name of the component.
3488
+ :param overrides: Describes the component's properties that can be overriden in a customized instance of the component. You can't specify ``tags`` as a valid property for ``overrides`` .
3489
+ :param properties: Describes the component's properties. You can't specify ``tags`` as a valid property for ``properties`` .
3399
3490
  :param schema_version: The schema version of the component when it was imported.
3400
3491
  :param source_id: The unique ID of the component in its original source system, such as Figma.
3401
3492
  :param tags: One or more key-value pairs to use when tagging the component.
3493
+ :param variants: A list of the component's variants. A variant is a unique style configuration of a main component.
3402
3494
 
3403
3495
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-component.html
3404
3496
  :exampleMetadata: fixture=_generated
@@ -3409,49 +3501,63 @@ class CfnComponentProps:
3409
3501
  '''
3410
3502
  if __debug__:
3411
3503
  type_hints = typing.get_type_hints(_typecheckingstub__f53200a7ca068c25e3052be6f1490d18f9816b65f2cfec3a854a23ba3d5e5f45)
3412
- check_type(argname="argument binding_properties", value=binding_properties, expected_type=type_hints["binding_properties"])
3413
- check_type(argname="argument component_type", value=component_type, expected_type=type_hints["component_type"])
3414
- check_type(argname="argument name", value=name, expected_type=type_hints["name"])
3415
- check_type(argname="argument overrides", value=overrides, expected_type=type_hints["overrides"])
3416
- check_type(argname="argument properties", value=properties, expected_type=type_hints["properties"])
3417
- check_type(argname="argument variants", value=variants, expected_type=type_hints["variants"])
3418
3504
  check_type(argname="argument app_id", value=app_id, expected_type=type_hints["app_id"])
3505
+ check_type(argname="argument binding_properties", value=binding_properties, expected_type=type_hints["binding_properties"])
3419
3506
  check_type(argname="argument children", value=children, expected_type=type_hints["children"])
3420
3507
  check_type(argname="argument collection_properties", value=collection_properties, expected_type=type_hints["collection_properties"])
3508
+ check_type(argname="argument component_type", value=component_type, expected_type=type_hints["component_type"])
3421
3509
  check_type(argname="argument environment_name", value=environment_name, expected_type=type_hints["environment_name"])
3422
3510
  check_type(argname="argument events", value=events, expected_type=type_hints["events"])
3511
+ check_type(argname="argument name", value=name, expected_type=type_hints["name"])
3512
+ check_type(argname="argument overrides", value=overrides, expected_type=type_hints["overrides"])
3513
+ check_type(argname="argument properties", value=properties, expected_type=type_hints["properties"])
3423
3514
  check_type(argname="argument schema_version", value=schema_version, expected_type=type_hints["schema_version"])
3424
3515
  check_type(argname="argument source_id", value=source_id, expected_type=type_hints["source_id"])
3425
3516
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
3426
- self._values: typing.Dict[builtins.str, typing.Any] = {
3427
- "binding_properties": binding_properties,
3428
- "component_type": component_type,
3429
- "name": name,
3430
- "overrides": overrides,
3431
- "properties": properties,
3432
- "variants": variants,
3433
- }
3517
+ check_type(argname="argument variants", value=variants, expected_type=type_hints["variants"])
3518
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
3434
3519
  if app_id is not None:
3435
3520
  self._values["app_id"] = app_id
3521
+ if binding_properties is not None:
3522
+ self._values["binding_properties"] = binding_properties
3436
3523
  if children is not None:
3437
3524
  self._values["children"] = children
3438
3525
  if collection_properties is not None:
3439
3526
  self._values["collection_properties"] = collection_properties
3527
+ if component_type is not None:
3528
+ self._values["component_type"] = component_type
3440
3529
  if environment_name is not None:
3441
3530
  self._values["environment_name"] = environment_name
3442
3531
  if events is not None:
3443
3532
  self._values["events"] = events
3533
+ if name is not None:
3534
+ self._values["name"] = name
3535
+ if overrides is not None:
3536
+ self._values["overrides"] = overrides
3537
+ if properties is not None:
3538
+ self._values["properties"] = properties
3444
3539
  if schema_version is not None:
3445
3540
  self._values["schema_version"] = schema_version
3446
3541
  if source_id is not None:
3447
3542
  self._values["source_id"] = source_id
3448
3543
  if tags is not None:
3449
3544
  self._values["tags"] = tags
3545
+ if variants is not None:
3546
+ self._values["variants"] = variants
3547
+
3548
+ @builtins.property
3549
+ def app_id(self) -> typing.Optional[builtins.str]:
3550
+ '''The unique ID of the Amplify app associated with the component.
3551
+
3552
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-component.html#cfn-amplifyuibuilder-component-appid
3553
+ '''
3554
+ result = self._values.get("app_id")
3555
+ return typing.cast(typing.Optional[builtins.str], result)
3450
3556
 
3451
3557
  @builtins.property
3452
3558
  def binding_properties(
3453
3559
  self,
3454
- ) -> typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentBindingPropertiesValueProperty]]]:
3560
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentBindingPropertiesValueProperty]]]]:
3455
3561
  '''The information to connect a component's properties to data at runtime.
3456
3562
 
3457
3563
  You can't specify ``tags`` as a valid property for ``bindingProperties`` .
@@ -3459,79 +3565,7 @@ class CfnComponentProps:
3459
3565
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-component.html#cfn-amplifyuibuilder-component-bindingproperties
3460
3566
  '''
3461
3567
  result = self._values.get("binding_properties")
3462
- assert result is not None, "Required property 'binding_properties' is missing"
3463
- return typing.cast(typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentBindingPropertiesValueProperty]]], result)
3464
-
3465
- @builtins.property
3466
- def component_type(self) -> builtins.str:
3467
- '''The type of the component.
3468
-
3469
- This can be an Amplify custom UI component or another custom component.
3470
-
3471
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-component.html#cfn-amplifyuibuilder-component-componenttype
3472
- '''
3473
- result = self._values.get("component_type")
3474
- assert result is not None, "Required property 'component_type' is missing"
3475
- return typing.cast(builtins.str, result)
3476
-
3477
- @builtins.property
3478
- def name(self) -> builtins.str:
3479
- '''The name of the component.
3480
-
3481
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-component.html#cfn-amplifyuibuilder-component-name
3482
- '''
3483
- result = self._values.get("name")
3484
- assert result is not None, "Required property 'name' is missing"
3485
- return typing.cast(builtins.str, result)
3486
-
3487
- @builtins.property
3488
- def overrides(self) -> typing.Any:
3489
- '''Describes the component's properties that can be overriden in a customized instance of the component.
3490
-
3491
- You can't specify ``tags`` as a valid property for ``overrides`` .
3492
-
3493
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-component.html#cfn-amplifyuibuilder-component-overrides
3494
- '''
3495
- result = self._values.get("overrides")
3496
- assert result is not None, "Required property 'overrides' is missing"
3497
- return typing.cast(typing.Any, result)
3498
-
3499
- @builtins.property
3500
- def properties(
3501
- self,
3502
- ) -> typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentPropertyProperty]]]:
3503
- '''Describes the component's properties.
3504
-
3505
- You can't specify ``tags`` as a valid property for ``properties`` .
3506
-
3507
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-component.html#cfn-amplifyuibuilder-component-properties
3508
- '''
3509
- result = self._values.get("properties")
3510
- assert result is not None, "Required property 'properties' is missing"
3511
- return typing.cast(typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentPropertyProperty]]], result)
3512
-
3513
- @builtins.property
3514
- def variants(
3515
- self,
3516
- ) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentVariantProperty]]]:
3517
- '''A list of the component's variants.
3518
-
3519
- A variant is a unique style configuration of a main component.
3520
-
3521
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-component.html#cfn-amplifyuibuilder-component-variants
3522
- '''
3523
- result = self._values.get("variants")
3524
- assert result is not None, "Required property 'variants' is missing"
3525
- return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentVariantProperty]]], result)
3526
-
3527
- @builtins.property
3528
- def app_id(self) -> typing.Optional[builtins.str]:
3529
- '''The unique ID of the Amplify app associated with the component.
3530
-
3531
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-component.html#cfn-amplifyuibuilder-component-appid
3532
- '''
3533
- result = self._values.get("app_id")
3534
- return typing.cast(typing.Optional[builtins.str], result)
3568
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentBindingPropertiesValueProperty]]]], result)
3535
3569
 
3536
3570
  @builtins.property
3537
3571
  def children(
@@ -3557,6 +3591,17 @@ class CfnComponentProps:
3557
3591
  result = self._values.get("collection_properties")
3558
3592
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentDataConfigurationProperty]]]], result)
3559
3593
 
3594
+ @builtins.property
3595
+ def component_type(self) -> typing.Optional[builtins.str]:
3596
+ '''The type of the component.
3597
+
3598
+ This can be an Amplify custom UI component or another custom component.
3599
+
3600
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-component.html#cfn-amplifyuibuilder-component-componenttype
3601
+ '''
3602
+ result = self._values.get("component_type")
3603
+ return typing.cast(typing.Optional[builtins.str], result)
3604
+
3560
3605
  @builtins.property
3561
3606
  def environment_name(self) -> typing.Optional[builtins.str]:
3562
3607
  '''The name of the backend environment that is a part of the Amplify app.
@@ -3579,6 +3624,39 @@ class CfnComponentProps:
3579
3624
  result = self._values.get("events")
3580
3625
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentEventProperty]]]], result)
3581
3626
 
3627
+ @builtins.property
3628
+ def name(self) -> typing.Optional[builtins.str]:
3629
+ '''The name of the component.
3630
+
3631
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-component.html#cfn-amplifyuibuilder-component-name
3632
+ '''
3633
+ result = self._values.get("name")
3634
+ return typing.cast(typing.Optional[builtins.str], result)
3635
+
3636
+ @builtins.property
3637
+ def overrides(self) -> typing.Any:
3638
+ '''Describes the component's properties that can be overriden in a customized instance of the component.
3639
+
3640
+ You can't specify ``tags`` as a valid property for ``overrides`` .
3641
+
3642
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-component.html#cfn-amplifyuibuilder-component-overrides
3643
+ '''
3644
+ result = self._values.get("overrides")
3645
+ return typing.cast(typing.Any, result)
3646
+
3647
+ @builtins.property
3648
+ def properties(
3649
+ self,
3650
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentPropertyProperty]]]]:
3651
+ '''Describes the component's properties.
3652
+
3653
+ You can't specify ``tags`` as a valid property for ``properties`` .
3654
+
3655
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-component.html#cfn-amplifyuibuilder-component-properties
3656
+ '''
3657
+ result = self._values.get("properties")
3658
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentPropertyProperty]]]], result)
3659
+
3582
3660
  @builtins.property
3583
3661
  def schema_version(self) -> typing.Optional[builtins.str]:
3584
3662
  '''The schema version of the component when it was imported.
@@ -3606,6 +3684,19 @@ class CfnComponentProps:
3606
3684
  result = self._values.get("tags")
3607
3685
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], result)
3608
3686
 
3687
+ @builtins.property
3688
+ def variants(
3689
+ self,
3690
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentVariantProperty]]]]:
3691
+ '''A list of the component's variants.
3692
+
3693
+ A variant is a unique style configuration of a main component.
3694
+
3695
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-component.html#cfn-amplifyuibuilder-component-variants
3696
+ '''
3697
+ result = self._values.get("variants")
3698
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentVariantProperty]]]], result)
3699
+
3609
3700
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
3610
3701
  return isinstance(rhs, self.__class__) and rhs._values == self._values
3611
3702
 
@@ -3636,11 +3727,45 @@ class CfnForm(
3636
3727
  # The values are placeholders you should change.
3637
3728
  from aws_cdk import aws_amplifyuibuilder as amplifyuibuilder
3638
3729
 
3730
+ # form_input_value_property_property_: amplifyuibuilder.CfnForm.FormInputValuePropertyProperty
3731
+
3639
3732
  cfn_form = amplifyuibuilder.CfnForm(self, "MyCfnForm",
3733
+ app_id="appId",
3734
+ cta=amplifyuibuilder.CfnForm.FormCTAProperty(
3735
+ cancel=amplifyuibuilder.CfnForm.FormButtonProperty(
3736
+ children="children",
3737
+ excluded=False,
3738
+ position=amplifyuibuilder.CfnForm.FieldPositionProperty(
3739
+ below="below",
3740
+ fixed="fixed",
3741
+ right_of="rightOf"
3742
+ )
3743
+ ),
3744
+ clear=amplifyuibuilder.CfnForm.FormButtonProperty(
3745
+ children="children",
3746
+ excluded=False,
3747
+ position=amplifyuibuilder.CfnForm.FieldPositionProperty(
3748
+ below="below",
3749
+ fixed="fixed",
3750
+ right_of="rightOf"
3751
+ )
3752
+ ),
3753
+ position="position",
3754
+ submit=amplifyuibuilder.CfnForm.FormButtonProperty(
3755
+ children="children",
3756
+ excluded=False,
3757
+ position=amplifyuibuilder.CfnForm.FieldPositionProperty(
3758
+ below="below",
3759
+ fixed="fixed",
3760
+ right_of="rightOf"
3761
+ )
3762
+ )
3763
+ ),
3640
3764
  data_type=amplifyuibuilder.CfnForm.FormDataTypeConfigProperty(
3641
3765
  data_source_type="dataSourceType",
3642
3766
  data_type_name="dataTypeName"
3643
3767
  ),
3768
+ environment_name="environmentName",
3644
3769
  fields={
3645
3770
  "fields_key": amplifyuibuilder.CfnForm.FieldConfigProperty(
3646
3771
  excluded=False,
@@ -3674,14 +3799,38 @@ class CfnForm(
3674
3799
  value_mappings=amplifyuibuilder.CfnForm.ValueMappingsProperty(
3675
3800
  values=[amplifyuibuilder.CfnForm.ValueMappingProperty(
3676
3801
  value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty(
3802
+ binding_properties=amplifyuibuilder.CfnForm.FormInputValuePropertyBindingPropertiesProperty(
3803
+ property="property",
3804
+
3805
+ # the properties below are optional
3806
+ field="field"
3807
+ ),
3808
+ concat=[form_input_value_property_property_],
3677
3809
  value="value"
3678
3810
  ),
3679
3811
 
3680
3812
  # the properties below are optional
3681
3813
  display_value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty(
3814
+ binding_properties=amplifyuibuilder.CfnForm.FormInputValuePropertyBindingPropertiesProperty(
3815
+ property="property",
3816
+
3817
+ # the properties below are optional
3818
+ field="field"
3819
+ ),
3820
+ concat=[form_input_value_property_property_],
3682
3821
  value="value"
3683
3822
  )
3684
- )]
3823
+ )],
3824
+
3825
+ # the properties below are optional
3826
+ binding_properties={
3827
+ "binding_properties_key": amplifyuibuilder.CfnForm.FormInputBindingPropertiesValueProperty(
3828
+ binding_properties=amplifyuibuilder.CfnForm.FormInputBindingPropertiesValuePropertiesProperty(
3829
+ model="model"
3830
+ ),
3831
+ type="type"
3832
+ )
3833
+ }
3685
3834
  )
3686
3835
  ),
3687
3836
  label="label",
@@ -3701,6 +3850,7 @@ class CfnForm(
3701
3850
  )
3702
3851
  },
3703
3852
  form_action_type="formActionType",
3853
+ label_decorator="labelDecorator",
3704
3854
  name="name",
3705
3855
  schema_version="schemaVersion",
3706
3856
  sectional_elements={
@@ -3733,41 +3883,6 @@ class CfnForm(
3733
3883
  value="value"
3734
3884
  )
3735
3885
  ),
3736
-
3737
- # the properties below are optional
3738
- app_id="appId",
3739
- cta=amplifyuibuilder.CfnForm.FormCTAProperty(
3740
- cancel=amplifyuibuilder.CfnForm.FormButtonProperty(
3741
- children="children",
3742
- excluded=False,
3743
- position=amplifyuibuilder.CfnForm.FieldPositionProperty(
3744
- below="below",
3745
- fixed="fixed",
3746
- right_of="rightOf"
3747
- )
3748
- ),
3749
- clear=amplifyuibuilder.CfnForm.FormButtonProperty(
3750
- children="children",
3751
- excluded=False,
3752
- position=amplifyuibuilder.CfnForm.FieldPositionProperty(
3753
- below="below",
3754
- fixed="fixed",
3755
- right_of="rightOf"
3756
- )
3757
- ),
3758
- position="position",
3759
- submit=amplifyuibuilder.CfnForm.FormButtonProperty(
3760
- children="children",
3761
- excluded=False,
3762
- position=amplifyuibuilder.CfnForm.FieldPositionProperty(
3763
- below="below",
3764
- fixed="fixed",
3765
- right_of="rightOf"
3766
- )
3767
- )
3768
- ),
3769
- environment_name="environmentName",
3770
- label_decorator="labelDecorator",
3771
3886
  tags={
3772
3887
  "tags_key": "tags"
3773
3888
  }
@@ -3779,33 +3894,33 @@ class CfnForm(
3779
3894
  scope: _constructs_77d1e7e8.Construct,
3780
3895
  id: builtins.str,
3781
3896
  *,
3782
- data_type: typing.Union[_IResolvable_da3f097b, typing.Union["CfnForm.FormDataTypeConfigProperty", typing.Dict[builtins.str, typing.Any]]],
3783
- fields: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnForm.FieldConfigProperty", typing.Dict[builtins.str, typing.Any]]]]],
3784
- form_action_type: builtins.str,
3785
- name: builtins.str,
3786
- schema_version: builtins.str,
3787
- sectional_elements: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnForm.SectionalElementProperty", typing.Dict[builtins.str, typing.Any]]]]],
3788
- style: typing.Union[_IResolvable_da3f097b, typing.Union["CfnForm.FormStyleProperty", typing.Dict[builtins.str, typing.Any]]],
3789
3897
  app_id: typing.Optional[builtins.str] = None,
3790
3898
  cta: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnForm.FormCTAProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
3899
+ data_type: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnForm.FormDataTypeConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
3791
3900
  environment_name: typing.Optional[builtins.str] = None,
3901
+ fields: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnForm.FieldConfigProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
3902
+ form_action_type: typing.Optional[builtins.str] = None,
3792
3903
  label_decorator: typing.Optional[builtins.str] = None,
3904
+ name: typing.Optional[builtins.str] = None,
3905
+ schema_version: typing.Optional[builtins.str] = None,
3906
+ sectional_elements: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnForm.SectionalElementProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
3907
+ style: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnForm.FormStyleProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
3793
3908
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3794
3909
  ) -> None:
3795
3910
  '''
3796
3911
  :param scope: Scope in which this resource is defined.
3797
3912
  :param id: Construct identifier for this resource (unique in its scope).
3913
+ :param app_id: The unique ID of the Amplify app associated with the form.
3914
+ :param cta: The ``FormCTA`` object that stores the call to action configuration for the form.
3798
3915
  :param data_type: The type of data source to use to create the form.
3916
+ :param environment_name: The name of the backend environment that is a part of the Amplify app.
3799
3917
  :param fields: The configuration information for the form's fields.
3800
3918
  :param form_action_type: Specifies whether to perform a create or update action on the form.
3919
+ :param label_decorator: Specifies an icon or decoration to display on the form.
3801
3920
  :param name: The name of the form.
3802
3921
  :param schema_version: The schema version of the form.
3803
3922
  :param sectional_elements: The configuration information for the visual helper elements for the form. These elements are not associated with any data.
3804
3923
  :param style: The configuration for the form's style.
3805
- :param app_id: The unique ID of the Amplify app associated with the form.
3806
- :param cta: The ``FormCTA`` object that stores the call to action configuration for the form.
3807
- :param environment_name: The name of the backend environment that is a part of the Amplify app.
3808
- :param label_decorator: Specifies an icon or decoration to display on the form.
3809
3924
  :param tags: One or more key-value pairs to use when tagging the form data.
3810
3925
  '''
3811
3926
  if __debug__:
@@ -3813,17 +3928,17 @@ class CfnForm(
3813
3928
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
3814
3929
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
3815
3930
  props = CfnFormProps(
3931
+ app_id=app_id,
3932
+ cta=cta,
3816
3933
  data_type=data_type,
3934
+ environment_name=environment_name,
3817
3935
  fields=fields,
3818
3936
  form_action_type=form_action_type,
3937
+ label_decorator=label_decorator,
3819
3938
  name=name,
3820
3939
  schema_version=schema_version,
3821
3940
  sectional_elements=sectional_elements,
3822
3941
  style=style,
3823
- app_id=app_id,
3824
- cta=cta,
3825
- environment_name=environment_name,
3826
- label_decorator=label_decorator,
3827
3942
  tags=tags,
3828
3943
  )
3829
3944
 
@@ -3879,36 +3994,80 @@ class CfnForm(
3879
3994
  '''Tag Manager which manages the tags for this resource.'''
3880
3995
  return typing.cast(_TagManager_0a598cb3, jsii.get(self, "tags"))
3881
3996
 
3997
+ @builtins.property
3998
+ @jsii.member(jsii_name="appId")
3999
+ def app_id(self) -> typing.Optional[builtins.str]:
4000
+ '''The unique ID of the Amplify app associated with the form.'''
4001
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "appId"))
4002
+
4003
+ @app_id.setter
4004
+ def app_id(self, value: typing.Optional[builtins.str]) -> None:
4005
+ if __debug__:
4006
+ type_hints = typing.get_type_hints(_typecheckingstub__a6086ddf273ace487109ec97dd1dc720c5f83ebbe24a96e2c42ae15646389d00)
4007
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
4008
+ jsii.set(self, "appId", value)
4009
+
4010
+ @builtins.property
4011
+ @jsii.member(jsii_name="cta")
4012
+ def cta(
4013
+ self,
4014
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnForm.FormCTAProperty"]]:
4015
+ '''The ``FormCTA`` object that stores the call to action configuration for the form.'''
4016
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnForm.FormCTAProperty"]], jsii.get(self, "cta"))
4017
+
4018
+ @cta.setter
4019
+ def cta(
4020
+ self,
4021
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnForm.FormCTAProperty"]],
4022
+ ) -> None:
4023
+ if __debug__:
4024
+ type_hints = typing.get_type_hints(_typecheckingstub__dcc01bb0df0b0a573caa23a9628b8cbfe2eb86510e0e390b92156dd05d486862)
4025
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
4026
+ jsii.set(self, "cta", value)
4027
+
3882
4028
  @builtins.property
3883
4029
  @jsii.member(jsii_name="dataType")
3884
4030
  def data_type(
3885
4031
  self,
3886
- ) -> typing.Union[_IResolvable_da3f097b, "CfnForm.FormDataTypeConfigProperty"]:
4032
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnForm.FormDataTypeConfigProperty"]]:
3887
4033
  '''The type of data source to use to create the form.'''
3888
- return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnForm.FormDataTypeConfigProperty"], jsii.get(self, "dataType"))
4034
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnForm.FormDataTypeConfigProperty"]], jsii.get(self, "dataType"))
3889
4035
 
3890
4036
  @data_type.setter
3891
4037
  def data_type(
3892
4038
  self,
3893
- value: typing.Union[_IResolvable_da3f097b, "CfnForm.FormDataTypeConfigProperty"],
4039
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnForm.FormDataTypeConfigProperty"]],
3894
4040
  ) -> None:
3895
4041
  if __debug__:
3896
4042
  type_hints = typing.get_type_hints(_typecheckingstub__c7e19a017312460ae2a463321b8755f4cbb046f23e5b3f211bc3667291c8fc4c)
3897
4043
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3898
4044
  jsii.set(self, "dataType", value)
3899
4045
 
4046
+ @builtins.property
4047
+ @jsii.member(jsii_name="environmentName")
4048
+ def environment_name(self) -> typing.Optional[builtins.str]:
4049
+ '''The name of the backend environment that is a part of the Amplify app.'''
4050
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "environmentName"))
4051
+
4052
+ @environment_name.setter
4053
+ def environment_name(self, value: typing.Optional[builtins.str]) -> None:
4054
+ if __debug__:
4055
+ type_hints = typing.get_type_hints(_typecheckingstub__34caf84fc388835a97bc0ea839fd35da20c88a4c8e915204f78e924b66d4de02)
4056
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
4057
+ jsii.set(self, "environmentName", value)
4058
+
3900
4059
  @builtins.property
3901
4060
  @jsii.member(jsii_name="fields")
3902
4061
  def fields(
3903
4062
  self,
3904
- ) -> typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnForm.FieldConfigProperty"]]]:
4063
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnForm.FieldConfigProperty"]]]]:
3905
4064
  '''The configuration information for the form's fields.'''
3906
- return typing.cast(typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnForm.FieldConfigProperty"]]], jsii.get(self, "fields"))
4065
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnForm.FieldConfigProperty"]]]], jsii.get(self, "fields"))
3907
4066
 
3908
4067
  @fields.setter
3909
4068
  def fields(
3910
4069
  self,
3911
- value: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnForm.FieldConfigProperty"]]],
4070
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnForm.FieldConfigProperty"]]]],
3912
4071
  ) -> None:
3913
4072
  if __debug__:
3914
4073
  type_hints = typing.get_type_hints(_typecheckingstub__b9015687d91891d43612fe42019ff55cd0a88db183c4588c47c40ae844181ac0)
@@ -3917,25 +4076,38 @@ class CfnForm(
3917
4076
 
3918
4077
  @builtins.property
3919
4078
  @jsii.member(jsii_name="formActionType")
3920
- def form_action_type(self) -> builtins.str:
4079
+ def form_action_type(self) -> typing.Optional[builtins.str]:
3921
4080
  '''Specifies whether to perform a create or update action on the form.'''
3922
- return typing.cast(builtins.str, jsii.get(self, "formActionType"))
4081
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "formActionType"))
3923
4082
 
3924
4083
  @form_action_type.setter
3925
- def form_action_type(self, value: builtins.str) -> None:
4084
+ def form_action_type(self, value: typing.Optional[builtins.str]) -> None:
3926
4085
  if __debug__:
3927
4086
  type_hints = typing.get_type_hints(_typecheckingstub__2fc577f05ff38c0454a529f8e25d70043166c3c843ba386b8533d1566010fb3c)
3928
4087
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3929
4088
  jsii.set(self, "formActionType", value)
3930
4089
 
4090
+ @builtins.property
4091
+ @jsii.member(jsii_name="labelDecorator")
4092
+ def label_decorator(self) -> typing.Optional[builtins.str]:
4093
+ '''Specifies an icon or decoration to display on the form.'''
4094
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "labelDecorator"))
4095
+
4096
+ @label_decorator.setter
4097
+ def label_decorator(self, value: typing.Optional[builtins.str]) -> None:
4098
+ if __debug__:
4099
+ type_hints = typing.get_type_hints(_typecheckingstub__7bb58fff4cc1b15eb6764b753579e921632aacbf08b0c7e91de1462a850e49ec)
4100
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
4101
+ jsii.set(self, "labelDecorator", value)
4102
+
3931
4103
  @builtins.property
3932
4104
  @jsii.member(jsii_name="name")
3933
- def name(self) -> builtins.str:
4105
+ def name(self) -> typing.Optional[builtins.str]:
3934
4106
  '''The name of the form.'''
3935
- return typing.cast(builtins.str, jsii.get(self, "name"))
4107
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "name"))
3936
4108
 
3937
4109
  @name.setter
3938
- def name(self, value: builtins.str) -> None:
4110
+ def name(self, value: typing.Optional[builtins.str]) -> None:
3939
4111
  if __debug__:
3940
4112
  type_hints = typing.get_type_hints(_typecheckingstub__c37b5c0566194412a917f8b555c9713ff611891282349436c1825e2035304e0c)
3941
4113
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
@@ -3943,12 +4115,12 @@ class CfnForm(
3943
4115
 
3944
4116
  @builtins.property
3945
4117
  @jsii.member(jsii_name="schemaVersion")
3946
- def schema_version(self) -> builtins.str:
4118
+ def schema_version(self) -> typing.Optional[builtins.str]:
3947
4119
  '''The schema version of the form.'''
3948
- return typing.cast(builtins.str, jsii.get(self, "schemaVersion"))
4120
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "schemaVersion"))
3949
4121
 
3950
4122
  @schema_version.setter
3951
- def schema_version(self, value: builtins.str) -> None:
4123
+ def schema_version(self, value: typing.Optional[builtins.str]) -> None:
3952
4124
  if __debug__:
3953
4125
  type_hints = typing.get_type_hints(_typecheckingstub__134b61ab92cc43448c72979bf06fe8c5b99e11026860e775bc799d1ac6f3485c)
3954
4126
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
@@ -3958,92 +4130,37 @@ class CfnForm(
3958
4130
  @jsii.member(jsii_name="sectionalElements")
3959
4131
  def sectional_elements(
3960
4132
  self,
3961
- ) -> typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnForm.SectionalElementProperty"]]]:
4133
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnForm.SectionalElementProperty"]]]]:
3962
4134
  '''The configuration information for the visual helper elements for the form.'''
3963
- return typing.cast(typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnForm.SectionalElementProperty"]]], jsii.get(self, "sectionalElements"))
3964
-
3965
- @sectional_elements.setter
3966
- def sectional_elements(
3967
- self,
3968
- value: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnForm.SectionalElementProperty"]]],
3969
- ) -> None:
3970
- if __debug__:
3971
- type_hints = typing.get_type_hints(_typecheckingstub__85fa037be9d97ba3c80cd93837e11c8dbd4fe3a9d81a3b57bc62c3008fc0d045)
3972
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3973
- jsii.set(self, "sectionalElements", value)
3974
-
3975
- @builtins.property
3976
- @jsii.member(jsii_name="style")
3977
- def style(self) -> typing.Union[_IResolvable_da3f097b, "CfnForm.FormStyleProperty"]:
3978
- '''The configuration for the form's style.'''
3979
- return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnForm.FormStyleProperty"], jsii.get(self, "style"))
3980
-
3981
- @style.setter
3982
- def style(
3983
- self,
3984
- value: typing.Union[_IResolvable_da3f097b, "CfnForm.FormStyleProperty"],
3985
- ) -> None:
3986
- if __debug__:
3987
- type_hints = typing.get_type_hints(_typecheckingstub__70860863c037915af307f857edb8d06dc079e810fc30f8a36441c45da0c1bed9)
3988
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3989
- jsii.set(self, "style", value)
3990
-
3991
- @builtins.property
3992
- @jsii.member(jsii_name="appId")
3993
- def app_id(self) -> typing.Optional[builtins.str]:
3994
- '''The unique ID of the Amplify app associated with the form.'''
3995
- return typing.cast(typing.Optional[builtins.str], jsii.get(self, "appId"))
3996
-
3997
- @app_id.setter
3998
- def app_id(self, value: typing.Optional[builtins.str]) -> None:
3999
- if __debug__:
4000
- type_hints = typing.get_type_hints(_typecheckingstub__a6086ddf273ace487109ec97dd1dc720c5f83ebbe24a96e2c42ae15646389d00)
4001
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
4002
- jsii.set(self, "appId", value)
4003
-
4004
- @builtins.property
4005
- @jsii.member(jsii_name="cta")
4006
- def cta(
4007
- self,
4008
- ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnForm.FormCTAProperty"]]:
4009
- '''The ``FormCTA`` object that stores the call to action configuration for the form.'''
4010
- return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnForm.FormCTAProperty"]], jsii.get(self, "cta"))
4011
-
4012
- @cta.setter
4013
- def cta(
4014
- self,
4015
- value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnForm.FormCTAProperty"]],
4016
- ) -> None:
4017
- if __debug__:
4018
- type_hints = typing.get_type_hints(_typecheckingstub__dcc01bb0df0b0a573caa23a9628b8cbfe2eb86510e0e390b92156dd05d486862)
4019
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
4020
- jsii.set(self, "cta", value)
4021
-
4022
- @builtins.property
4023
- @jsii.member(jsii_name="environmentName")
4024
- def environment_name(self) -> typing.Optional[builtins.str]:
4025
- '''The name of the backend environment that is a part of the Amplify app.'''
4026
- return typing.cast(typing.Optional[builtins.str], jsii.get(self, "environmentName"))
4135
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnForm.SectionalElementProperty"]]]], jsii.get(self, "sectionalElements"))
4027
4136
 
4028
- @environment_name.setter
4029
- def environment_name(self, value: typing.Optional[builtins.str]) -> None:
4137
+ @sectional_elements.setter
4138
+ def sectional_elements(
4139
+ self,
4140
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnForm.SectionalElementProperty"]]]],
4141
+ ) -> None:
4030
4142
  if __debug__:
4031
- type_hints = typing.get_type_hints(_typecheckingstub__34caf84fc388835a97bc0ea839fd35da20c88a4c8e915204f78e924b66d4de02)
4143
+ type_hints = typing.get_type_hints(_typecheckingstub__85fa037be9d97ba3c80cd93837e11c8dbd4fe3a9d81a3b57bc62c3008fc0d045)
4032
4144
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
4033
- jsii.set(self, "environmentName", value)
4145
+ jsii.set(self, "sectionalElements", value)
4034
4146
 
4035
4147
  @builtins.property
4036
- @jsii.member(jsii_name="labelDecorator")
4037
- def label_decorator(self) -> typing.Optional[builtins.str]:
4038
- '''Specifies an icon or decoration to display on the form.'''
4039
- return typing.cast(typing.Optional[builtins.str], jsii.get(self, "labelDecorator"))
4148
+ @jsii.member(jsii_name="style")
4149
+ def style(
4150
+ self,
4151
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnForm.FormStyleProperty"]]:
4152
+ '''The configuration for the form's style.'''
4153
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnForm.FormStyleProperty"]], jsii.get(self, "style"))
4040
4154
 
4041
- @label_decorator.setter
4042
- def label_decorator(self, value: typing.Optional[builtins.str]) -> None:
4155
+ @style.setter
4156
+ def style(
4157
+ self,
4158
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnForm.FormStyleProperty"]],
4159
+ ) -> None:
4043
4160
  if __debug__:
4044
- type_hints = typing.get_type_hints(_typecheckingstub__7bb58fff4cc1b15eb6764b753579e921632aacbf08b0c7e91de1462a850e49ec)
4161
+ type_hints = typing.get_type_hints(_typecheckingstub__70860863c037915af307f857edb8d06dc079e810fc30f8a36441c45da0c1bed9)
4045
4162
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
4046
- jsii.set(self, "labelDecorator", value)
4163
+ jsii.set(self, "style", value)
4047
4164
 
4048
4165
  @builtins.property
4049
4166
  @jsii.member(jsii_name="tagsRaw")
@@ -4099,6 +4216,8 @@ class CfnForm(
4099
4216
  # The values are placeholders you should change.
4100
4217
  from aws_cdk import aws_amplifyuibuilder as amplifyuibuilder
4101
4218
 
4219
+ # form_input_value_property_property_: amplifyuibuilder.CfnForm.FormInputValuePropertyProperty
4220
+
4102
4221
  field_config_property = amplifyuibuilder.CfnForm.FieldConfigProperty(
4103
4222
  excluded=False,
4104
4223
  input_type=amplifyuibuilder.CfnForm.FieldInputConfigProperty(
@@ -4131,14 +4250,38 @@ class CfnForm(
4131
4250
  value_mappings=amplifyuibuilder.CfnForm.ValueMappingsProperty(
4132
4251
  values=[amplifyuibuilder.CfnForm.ValueMappingProperty(
4133
4252
  value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty(
4253
+ binding_properties=amplifyuibuilder.CfnForm.FormInputValuePropertyBindingPropertiesProperty(
4254
+ property="property",
4255
+
4256
+ # the properties below are optional
4257
+ field="field"
4258
+ ),
4259
+ concat=[form_input_value_property_property_],
4134
4260
  value="value"
4135
4261
  ),
4136
4262
 
4137
4263
  # the properties below are optional
4138
4264
  display_value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty(
4265
+ binding_properties=amplifyuibuilder.CfnForm.FormInputValuePropertyBindingPropertiesProperty(
4266
+ property="property",
4267
+
4268
+ # the properties below are optional
4269
+ field="field"
4270
+ ),
4271
+ concat=[form_input_value_property_property_],
4139
4272
  value="value"
4140
4273
  )
4141
- )]
4274
+ )],
4275
+
4276
+ # the properties below are optional
4277
+ binding_properties={
4278
+ "binding_properties_key": amplifyuibuilder.CfnForm.FormInputBindingPropertiesValueProperty(
4279
+ binding_properties=amplifyuibuilder.CfnForm.FormInputBindingPropertiesValuePropertiesProperty(
4280
+ model="model"
4281
+ ),
4282
+ type="type"
4283
+ )
4284
+ }
4142
4285
  )
4143
4286
  ),
4144
4287
  label="label",
@@ -4311,6 +4454,8 @@ class CfnForm(
4311
4454
  # The values are placeholders you should change.
4312
4455
  from aws_cdk import aws_amplifyuibuilder as amplifyuibuilder
4313
4456
 
4457
+ # form_input_value_property_property_: amplifyuibuilder.CfnForm.FormInputValuePropertyProperty
4458
+
4314
4459
  field_input_config_property = amplifyuibuilder.CfnForm.FieldInputConfigProperty(
4315
4460
  type="type",
4316
4461
 
@@ -4341,14 +4486,38 @@ class CfnForm(
4341
4486
  value_mappings=amplifyuibuilder.CfnForm.ValueMappingsProperty(
4342
4487
  values=[amplifyuibuilder.CfnForm.ValueMappingProperty(
4343
4488
  value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty(
4489
+ binding_properties=amplifyuibuilder.CfnForm.FormInputValuePropertyBindingPropertiesProperty(
4490
+ property="property",
4491
+
4492
+ # the properties below are optional
4493
+ field="field"
4494
+ ),
4495
+ concat=[form_input_value_property_property_],
4344
4496
  value="value"
4345
4497
  ),
4346
4498
 
4347
4499
  # the properties below are optional
4348
4500
  display_value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty(
4501
+ binding_properties=amplifyuibuilder.CfnForm.FormInputValuePropertyBindingPropertiesProperty(
4502
+ property="property",
4503
+
4504
+ # the properties below are optional
4505
+ field="field"
4506
+ ),
4507
+ concat=[form_input_value_property_property_],
4349
4508
  value="value"
4350
4509
  )
4351
- )]
4510
+ )],
4511
+
4512
+ # the properties below are optional
4513
+ binding_properties={
4514
+ "binding_properties_key": amplifyuibuilder.CfnForm.FormInputBindingPropertiesValueProperty(
4515
+ binding_properties=amplifyuibuilder.CfnForm.FormInputBindingPropertiesValuePropertiesProperty(
4516
+ model="model"
4517
+ ),
4518
+ type="type"
4519
+ )
4520
+ }
4352
4521
  )
4353
4522
  )
4354
4523
  '''
@@ -5233,17 +5402,231 @@ class CfnForm(
5233
5402
  k + "=" + repr(v) for k, v in self._values.items()
5234
5403
  )
5235
5404
 
5405
+ @jsii.data_type(
5406
+ jsii_type="aws-cdk-lib.aws_amplifyuibuilder.CfnForm.FormInputBindingPropertiesValuePropertiesProperty",
5407
+ jsii_struct_bases=[],
5408
+ name_mapping={"model": "model"},
5409
+ )
5410
+ class FormInputBindingPropertiesValuePropertiesProperty:
5411
+ def __init__(self, *, model: typing.Optional[builtins.str] = None) -> None:
5412
+ '''Represents the data binding configuration for a specific property using data stored in AWS .
5413
+
5414
+ For AWS connected properties, you can bind a property to data stored in an Amplify DataStore model.
5415
+
5416
+ :param model: An Amplify DataStore model.
5417
+
5418
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-forminputbindingpropertiesvalueproperties.html
5419
+ :exampleMetadata: fixture=_generated
5420
+
5421
+ Example::
5422
+
5423
+ # The code below shows an example of how to instantiate this type.
5424
+ # The values are placeholders you should change.
5425
+ from aws_cdk import aws_amplifyuibuilder as amplifyuibuilder
5426
+
5427
+ form_input_binding_properties_value_properties_property = amplifyuibuilder.CfnForm.FormInputBindingPropertiesValuePropertiesProperty(
5428
+ model="model"
5429
+ )
5430
+ '''
5431
+ if __debug__:
5432
+ type_hints = typing.get_type_hints(_typecheckingstub__e49a023124bfcb7abe6c639ac120065289e3237be67e100ab59da65f7d780f12)
5433
+ check_type(argname="argument model", value=model, expected_type=type_hints["model"])
5434
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
5435
+ if model is not None:
5436
+ self._values["model"] = model
5437
+
5438
+ @builtins.property
5439
+ def model(self) -> typing.Optional[builtins.str]:
5440
+ '''An Amplify DataStore model.
5441
+
5442
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-forminputbindingpropertiesvalueproperties.html#cfn-amplifyuibuilder-form-forminputbindingpropertiesvalueproperties-model
5443
+ '''
5444
+ result = self._values.get("model")
5445
+ return typing.cast(typing.Optional[builtins.str], result)
5446
+
5447
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
5448
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
5449
+
5450
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
5451
+ return not (rhs == self)
5452
+
5453
+ def __repr__(self) -> str:
5454
+ return "FormInputBindingPropertiesValuePropertiesProperty(%s)" % ", ".join(
5455
+ k + "=" + repr(v) for k, v in self._values.items()
5456
+ )
5457
+
5458
+ @jsii.data_type(
5459
+ jsii_type="aws-cdk-lib.aws_amplifyuibuilder.CfnForm.FormInputBindingPropertiesValueProperty",
5460
+ jsii_struct_bases=[],
5461
+ name_mapping={"binding_properties": "bindingProperties", "type": "type"},
5462
+ )
5463
+ class FormInputBindingPropertiesValueProperty:
5464
+ def __init__(
5465
+ self,
5466
+ *,
5467
+ binding_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnForm.FormInputBindingPropertiesValuePropertiesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5468
+ type: typing.Optional[builtins.str] = None,
5469
+ ) -> None:
5470
+ '''Represents the data binding configuration for a form's input fields at runtime.You can use ``FormInputBindingPropertiesValue`` to add exposed properties to a form to allow different values to be entered when a form is reused in different places in an app.
5471
+
5472
+ :param binding_properties: Describes the properties to customize with data at runtime.
5473
+ :param type: The property type.
5474
+
5475
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-forminputbindingpropertiesvalue.html
5476
+ :exampleMetadata: fixture=_generated
5477
+
5478
+ Example::
5479
+
5480
+ # The code below shows an example of how to instantiate this type.
5481
+ # The values are placeholders you should change.
5482
+ from aws_cdk import aws_amplifyuibuilder as amplifyuibuilder
5483
+
5484
+ form_input_binding_properties_value_property = amplifyuibuilder.CfnForm.FormInputBindingPropertiesValueProperty(
5485
+ binding_properties=amplifyuibuilder.CfnForm.FormInputBindingPropertiesValuePropertiesProperty(
5486
+ model="model"
5487
+ ),
5488
+ type="type"
5489
+ )
5490
+ '''
5491
+ if __debug__:
5492
+ type_hints = typing.get_type_hints(_typecheckingstub__96e2b156267ea5c453a576b2a0887821ce82e0ecfb9e232e4ed3f5041b278807)
5493
+ check_type(argname="argument binding_properties", value=binding_properties, expected_type=type_hints["binding_properties"])
5494
+ check_type(argname="argument type", value=type, expected_type=type_hints["type"])
5495
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
5496
+ if binding_properties is not None:
5497
+ self._values["binding_properties"] = binding_properties
5498
+ if type is not None:
5499
+ self._values["type"] = type
5500
+
5501
+ @builtins.property
5502
+ def binding_properties(
5503
+ self,
5504
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnForm.FormInputBindingPropertiesValuePropertiesProperty"]]:
5505
+ '''Describes the properties to customize with data at runtime.
5506
+
5507
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-forminputbindingpropertiesvalue.html#cfn-amplifyuibuilder-form-forminputbindingpropertiesvalue-bindingproperties
5508
+ '''
5509
+ result = self._values.get("binding_properties")
5510
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnForm.FormInputBindingPropertiesValuePropertiesProperty"]], result)
5511
+
5512
+ @builtins.property
5513
+ def type(self) -> typing.Optional[builtins.str]:
5514
+ '''The property type.
5515
+
5516
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-forminputbindingpropertiesvalue.html#cfn-amplifyuibuilder-form-forminputbindingpropertiesvalue-type
5517
+ '''
5518
+ result = self._values.get("type")
5519
+ return typing.cast(typing.Optional[builtins.str], result)
5520
+
5521
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
5522
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
5523
+
5524
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
5525
+ return not (rhs == self)
5526
+
5527
+ def __repr__(self) -> str:
5528
+ return "FormInputBindingPropertiesValueProperty(%s)" % ", ".join(
5529
+ k + "=" + repr(v) for k, v in self._values.items()
5530
+ )
5531
+
5532
+ @jsii.data_type(
5533
+ jsii_type="aws-cdk-lib.aws_amplifyuibuilder.CfnForm.FormInputValuePropertyBindingPropertiesProperty",
5534
+ jsii_struct_bases=[],
5535
+ name_mapping={"property": "property", "field": "field"},
5536
+ )
5537
+ class FormInputValuePropertyBindingPropertiesProperty:
5538
+ def __init__(
5539
+ self,
5540
+ *,
5541
+ property: builtins.str,
5542
+ field: typing.Optional[builtins.str] = None,
5543
+ ) -> None:
5544
+ '''Associates a form property to a binding property.
5545
+
5546
+ This enables exposed properties on the top level form to propagate data to the form's property values.
5547
+
5548
+ :param property: The form property to bind to the data field.
5549
+ :param field: The data field to bind the property to.
5550
+
5551
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-forminputvaluepropertybindingproperties.html
5552
+ :exampleMetadata: fixture=_generated
5553
+
5554
+ Example::
5555
+
5556
+ # The code below shows an example of how to instantiate this type.
5557
+ # The values are placeholders you should change.
5558
+ from aws_cdk import aws_amplifyuibuilder as amplifyuibuilder
5559
+
5560
+ form_input_value_property_binding_properties_property = amplifyuibuilder.CfnForm.FormInputValuePropertyBindingPropertiesProperty(
5561
+ property="property",
5562
+
5563
+ # the properties below are optional
5564
+ field="field"
5565
+ )
5566
+ '''
5567
+ if __debug__:
5568
+ type_hints = typing.get_type_hints(_typecheckingstub__442ffd571935c3b45d1a0f4bf41d61336ca04d0b4cd16d3c3c32aa98f12a617c)
5569
+ check_type(argname="argument property", value=property, expected_type=type_hints["property"])
5570
+ check_type(argname="argument field", value=field, expected_type=type_hints["field"])
5571
+ self._values: typing.Dict[builtins.str, typing.Any] = {
5572
+ "property": property,
5573
+ }
5574
+ if field is not None:
5575
+ self._values["field"] = field
5576
+
5577
+ @builtins.property
5578
+ def property(self) -> builtins.str:
5579
+ '''The form property to bind to the data field.
5580
+
5581
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-forminputvaluepropertybindingproperties.html#cfn-amplifyuibuilder-form-forminputvaluepropertybindingproperties-property
5582
+ '''
5583
+ result = self._values.get("property")
5584
+ assert result is not None, "Required property 'property' is missing"
5585
+ return typing.cast(builtins.str, result)
5586
+
5587
+ @builtins.property
5588
+ def field(self) -> typing.Optional[builtins.str]:
5589
+ '''The data field to bind the property to.
5590
+
5591
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-forminputvaluepropertybindingproperties.html#cfn-amplifyuibuilder-form-forminputvaluepropertybindingproperties-field
5592
+ '''
5593
+ result = self._values.get("field")
5594
+ return typing.cast(typing.Optional[builtins.str], result)
5595
+
5596
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
5597
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
5598
+
5599
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
5600
+ return not (rhs == self)
5601
+
5602
+ def __repr__(self) -> str:
5603
+ return "FormInputValuePropertyBindingPropertiesProperty(%s)" % ", ".join(
5604
+ k + "=" + repr(v) for k, v in self._values.items()
5605
+ )
5606
+
5236
5607
  @jsii.data_type(
5237
5608
  jsii_type="aws-cdk-lib.aws_amplifyuibuilder.CfnForm.FormInputValuePropertyProperty",
5238
5609
  jsii_struct_bases=[],
5239
- name_mapping={"value": "value"},
5610
+ name_mapping={
5611
+ "binding_properties": "bindingProperties",
5612
+ "concat": "concat",
5613
+ "value": "value",
5614
+ },
5240
5615
  )
5241
5616
  class FormInputValuePropertyProperty:
5242
- def __init__(self, *, value: typing.Optional[builtins.str] = None) -> None:
5617
+ def __init__(
5618
+ self,
5619
+ *,
5620
+ binding_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnForm.FormInputValuePropertyBindingPropertiesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5621
+ concat: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnForm.FormInputValuePropertyProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
5622
+ value: typing.Optional[builtins.str] = None,
5623
+ ) -> None:
5243
5624
  '''The ``FormInputValueProperty`` property specifies the configuration for an input field on a form.
5244
5625
 
5245
5626
  Use ``FormInputValueProperty`` to specify the values to render or bind by default.
5246
5627
 
5628
+ :param binding_properties: The information to bind fields to data at runtime.
5629
+ :param concat: A list of form properties to concatenate to create the value to assign to this field property.
5247
5630
  :param value: The value to assign to the input field.
5248
5631
 
5249
5632
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-forminputvalueproperty.html
@@ -5255,17 +5638,54 @@ class CfnForm(
5255
5638
  # The values are placeholders you should change.
5256
5639
  from aws_cdk import aws_amplifyuibuilder as amplifyuibuilder
5257
5640
 
5641
+ # form_input_value_property_property_: amplifyuibuilder.CfnForm.FormInputValuePropertyProperty
5642
+
5258
5643
  form_input_value_property_property = amplifyuibuilder.CfnForm.FormInputValuePropertyProperty(
5644
+ binding_properties=amplifyuibuilder.CfnForm.FormInputValuePropertyBindingPropertiesProperty(
5645
+ property="property",
5646
+
5647
+ # the properties below are optional
5648
+ field="field"
5649
+ ),
5650
+ concat=[form_input_value_property_property_],
5259
5651
  value="value"
5260
5652
  )
5261
5653
  '''
5262
5654
  if __debug__:
5263
5655
  type_hints = typing.get_type_hints(_typecheckingstub__18fb1cc6c981a6a2bd1a5b53248a9d11f4a7c98e09a7132c1a7ca82bcd56c726)
5656
+ check_type(argname="argument binding_properties", value=binding_properties, expected_type=type_hints["binding_properties"])
5657
+ check_type(argname="argument concat", value=concat, expected_type=type_hints["concat"])
5264
5658
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
5265
5659
  self._values: typing.Dict[builtins.str, typing.Any] = {}
5660
+ if binding_properties is not None:
5661
+ self._values["binding_properties"] = binding_properties
5662
+ if concat is not None:
5663
+ self._values["concat"] = concat
5266
5664
  if value is not None:
5267
5665
  self._values["value"] = value
5268
5666
 
5667
+ @builtins.property
5668
+ def binding_properties(
5669
+ self,
5670
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnForm.FormInputValuePropertyBindingPropertiesProperty"]]:
5671
+ '''The information to bind fields to data at runtime.
5672
+
5673
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-forminputvalueproperty.html#cfn-amplifyuibuilder-form-forminputvalueproperty-bindingproperties
5674
+ '''
5675
+ result = self._values.get("binding_properties")
5676
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnForm.FormInputValuePropertyBindingPropertiesProperty"]], result)
5677
+
5678
+ @builtins.property
5679
+ def concat(
5680
+ self,
5681
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnForm.FormInputValuePropertyProperty"]]]]:
5682
+ '''A list of form properties to concatenate to create the value to assign to this field property.
5683
+
5684
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-forminputvalueproperty.html#cfn-amplifyuibuilder-form-forminputvalueproperty-concat
5685
+ '''
5686
+ result = self._values.get("concat")
5687
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnForm.FormInputValuePropertyProperty"]]]], result)
5688
+
5269
5689
  @builtins.property
5270
5690
  def value(self) -> typing.Optional[builtins.str]:
5271
5691
  '''The value to assign to the input field.
@@ -5644,13 +6064,29 @@ class CfnForm(
5644
6064
  # The values are placeholders you should change.
5645
6065
  from aws_cdk import aws_amplifyuibuilder as amplifyuibuilder
5646
6066
 
6067
+ # form_input_value_property_property_: amplifyuibuilder.CfnForm.FormInputValuePropertyProperty
6068
+
5647
6069
  value_mapping_property = amplifyuibuilder.CfnForm.ValueMappingProperty(
5648
6070
  value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty(
6071
+ binding_properties=amplifyuibuilder.CfnForm.FormInputValuePropertyBindingPropertiesProperty(
6072
+ property="property",
6073
+
6074
+ # the properties below are optional
6075
+ field="field"
6076
+ ),
6077
+ concat=[form_input_value_property_property_],
5649
6078
  value="value"
5650
6079
  ),
5651
6080
 
5652
6081
  # the properties below are optional
5653
6082
  display_value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty(
6083
+ binding_properties=amplifyuibuilder.CfnForm.FormInputValuePropertyBindingPropertiesProperty(
6084
+ property="property",
6085
+
6086
+ # the properties below are optional
6087
+ field="field"
6088
+ ),
6089
+ concat=[form_input_value_property_property_],
5654
6090
  value="value"
5655
6091
  )
5656
6092
  )
@@ -5702,17 +6138,19 @@ class CfnForm(
5702
6138
  @jsii.data_type(
5703
6139
  jsii_type="aws-cdk-lib.aws_amplifyuibuilder.CfnForm.ValueMappingsProperty",
5704
6140
  jsii_struct_bases=[],
5705
- name_mapping={"values": "values"},
6141
+ name_mapping={"values": "values", "binding_properties": "bindingProperties"},
5706
6142
  )
5707
6143
  class ValueMappingsProperty:
5708
6144
  def __init__(
5709
6145
  self,
5710
6146
  *,
5711
6147
  values: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnForm.ValueMappingProperty", typing.Dict[builtins.str, typing.Any]]]]],
6148
+ binding_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnForm.FormInputBindingPropertiesValueProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
5712
6149
  ) -> None:
5713
6150
  '''The ``ValueMappings`` property specifies the data binding configuration for a value map.
5714
6151
 
5715
6152
  :param values: The value and display value pairs.
6153
+ :param binding_properties: The information to bind fields to data at runtime.
5716
6154
 
5717
6155
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-valuemappings.html
5718
6156
  :exampleMetadata: fixture=_generated
@@ -5723,25 +6161,54 @@ class CfnForm(
5723
6161
  # The values are placeholders you should change.
5724
6162
  from aws_cdk import aws_amplifyuibuilder as amplifyuibuilder
5725
6163
 
6164
+ # form_input_value_property_property_: amplifyuibuilder.CfnForm.FormInputValuePropertyProperty
6165
+
5726
6166
  value_mappings_property = amplifyuibuilder.CfnForm.ValueMappingsProperty(
5727
6167
  values=[amplifyuibuilder.CfnForm.ValueMappingProperty(
5728
6168
  value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty(
6169
+ binding_properties=amplifyuibuilder.CfnForm.FormInputValuePropertyBindingPropertiesProperty(
6170
+ property="property",
6171
+
6172
+ # the properties below are optional
6173
+ field="field"
6174
+ ),
6175
+ concat=[form_input_value_property_property_],
5729
6176
  value="value"
5730
6177
  ),
5731
6178
 
5732
6179
  # the properties below are optional
5733
6180
  display_value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty(
6181
+ binding_properties=amplifyuibuilder.CfnForm.FormInputValuePropertyBindingPropertiesProperty(
6182
+ property="property",
6183
+
6184
+ # the properties below are optional
6185
+ field="field"
6186
+ ),
6187
+ concat=[form_input_value_property_property_],
5734
6188
  value="value"
5735
6189
  )
5736
- )]
6190
+ )],
6191
+
6192
+ # the properties below are optional
6193
+ binding_properties={
6194
+ "binding_properties_key": amplifyuibuilder.CfnForm.FormInputBindingPropertiesValueProperty(
6195
+ binding_properties=amplifyuibuilder.CfnForm.FormInputBindingPropertiesValuePropertiesProperty(
6196
+ model="model"
6197
+ ),
6198
+ type="type"
6199
+ )
6200
+ }
5737
6201
  )
5738
6202
  '''
5739
6203
  if __debug__:
5740
6204
  type_hints = typing.get_type_hints(_typecheckingstub__d724ce98e4e33046526453a6db65965e6f336a8f4ff6e0f67b70823d84267d95)
5741
6205
  check_type(argname="argument values", value=values, expected_type=type_hints["values"])
6206
+ check_type(argname="argument binding_properties", value=binding_properties, expected_type=type_hints["binding_properties"])
5742
6207
  self._values: typing.Dict[builtins.str, typing.Any] = {
5743
6208
  "values": values,
5744
6209
  }
6210
+ if binding_properties is not None:
6211
+ self._values["binding_properties"] = binding_properties
5745
6212
 
5746
6213
  @builtins.property
5747
6214
  def values(
@@ -5755,6 +6222,17 @@ class CfnForm(
5755
6222
  assert result is not None, "Required property 'values' is missing"
5756
6223
  return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnForm.ValueMappingProperty"]]], result)
5757
6224
 
6225
+ @builtins.property
6226
+ def binding_properties(
6227
+ self,
6228
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnForm.FormInputBindingPropertiesValueProperty"]]]]:
6229
+ '''The information to bind fields to data at runtime.
6230
+
6231
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-valuemappings.html#cfn-amplifyuibuilder-form-valuemappings-bindingproperties
6232
+ '''
6233
+ result = self._values.get("binding_properties")
6234
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnForm.FormInputBindingPropertiesValueProperty"]]]], result)
6235
+
5758
6236
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
5759
6237
  return isinstance(rhs, self.__class__) and rhs._values == self._values
5760
6238
 
@@ -5771,17 +6249,17 @@ class CfnForm(
5771
6249
  jsii_type="aws-cdk-lib.aws_amplifyuibuilder.CfnFormProps",
5772
6250
  jsii_struct_bases=[],
5773
6251
  name_mapping={
6252
+ "app_id": "appId",
6253
+ "cta": "cta",
5774
6254
  "data_type": "dataType",
6255
+ "environment_name": "environmentName",
5775
6256
  "fields": "fields",
5776
6257
  "form_action_type": "formActionType",
6258
+ "label_decorator": "labelDecorator",
5777
6259
  "name": "name",
5778
6260
  "schema_version": "schemaVersion",
5779
6261
  "sectional_elements": "sectionalElements",
5780
6262
  "style": "style",
5781
- "app_id": "appId",
5782
- "cta": "cta",
5783
- "environment_name": "environmentName",
5784
- "label_decorator": "labelDecorator",
5785
6263
  "tags": "tags",
5786
6264
  },
5787
6265
  )
@@ -5789,32 +6267,32 @@ class CfnFormProps:
5789
6267
  def __init__(
5790
6268
  self,
5791
6269
  *,
5792
- data_type: typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormDataTypeConfigProperty, typing.Dict[builtins.str, typing.Any]]],
5793
- fields: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FieldConfigProperty, typing.Dict[builtins.str, typing.Any]]]]],
5794
- form_action_type: builtins.str,
5795
- name: builtins.str,
5796
- schema_version: builtins.str,
5797
- sectional_elements: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.SectionalElementProperty, typing.Dict[builtins.str, typing.Any]]]]],
5798
- style: typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormStyleProperty, typing.Dict[builtins.str, typing.Any]]],
5799
6270
  app_id: typing.Optional[builtins.str] = None,
5800
6271
  cta: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormCTAProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
6272
+ data_type: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormDataTypeConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
5801
6273
  environment_name: typing.Optional[builtins.str] = None,
6274
+ fields: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FieldConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6275
+ form_action_type: typing.Optional[builtins.str] = None,
5802
6276
  label_decorator: typing.Optional[builtins.str] = None,
6277
+ name: typing.Optional[builtins.str] = None,
6278
+ schema_version: typing.Optional[builtins.str] = None,
6279
+ sectional_elements: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.SectionalElementProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6280
+ style: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormStyleProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
5803
6281
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5804
6282
  ) -> None:
5805
6283
  '''Properties for defining a ``CfnForm``.
5806
6284
 
6285
+ :param app_id: The unique ID of the Amplify app associated with the form.
6286
+ :param cta: The ``FormCTA`` object that stores the call to action configuration for the form.
5807
6287
  :param data_type: The type of data source to use to create the form.
6288
+ :param environment_name: The name of the backend environment that is a part of the Amplify app.
5808
6289
  :param fields: The configuration information for the form's fields.
5809
6290
  :param form_action_type: Specifies whether to perform a create or update action on the form.
6291
+ :param label_decorator: Specifies an icon or decoration to display on the form.
5810
6292
  :param name: The name of the form.
5811
6293
  :param schema_version: The schema version of the form.
5812
6294
  :param sectional_elements: The configuration information for the visual helper elements for the form. These elements are not associated with any data.
5813
6295
  :param style: The configuration for the form's style.
5814
- :param app_id: The unique ID of the Amplify app associated with the form.
5815
- :param cta: The ``FormCTA`` object that stores the call to action configuration for the form.
5816
- :param environment_name: The name of the backend environment that is a part of the Amplify app.
5817
- :param label_decorator: Specifies an icon or decoration to display on the form.
5818
6296
  :param tags: One or more key-value pairs to use when tagging the form data.
5819
6297
 
5820
6298
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-form.html
@@ -5826,11 +6304,45 @@ class CfnFormProps:
5826
6304
  # The values are placeholders you should change.
5827
6305
  from aws_cdk import aws_amplifyuibuilder as amplifyuibuilder
5828
6306
 
6307
+ # form_input_value_property_property_: amplifyuibuilder.CfnForm.FormInputValuePropertyProperty
6308
+
5829
6309
  cfn_form_props = amplifyuibuilder.CfnFormProps(
6310
+ app_id="appId",
6311
+ cta=amplifyuibuilder.CfnForm.FormCTAProperty(
6312
+ cancel=amplifyuibuilder.CfnForm.FormButtonProperty(
6313
+ children="children",
6314
+ excluded=False,
6315
+ position=amplifyuibuilder.CfnForm.FieldPositionProperty(
6316
+ below="below",
6317
+ fixed="fixed",
6318
+ right_of="rightOf"
6319
+ )
6320
+ ),
6321
+ clear=amplifyuibuilder.CfnForm.FormButtonProperty(
6322
+ children="children",
6323
+ excluded=False,
6324
+ position=amplifyuibuilder.CfnForm.FieldPositionProperty(
6325
+ below="below",
6326
+ fixed="fixed",
6327
+ right_of="rightOf"
6328
+ )
6329
+ ),
6330
+ position="position",
6331
+ submit=amplifyuibuilder.CfnForm.FormButtonProperty(
6332
+ children="children",
6333
+ excluded=False,
6334
+ position=amplifyuibuilder.CfnForm.FieldPositionProperty(
6335
+ below="below",
6336
+ fixed="fixed",
6337
+ right_of="rightOf"
6338
+ )
6339
+ )
6340
+ ),
5830
6341
  data_type=amplifyuibuilder.CfnForm.FormDataTypeConfigProperty(
5831
6342
  data_source_type="dataSourceType",
5832
6343
  data_type_name="dataTypeName"
5833
6344
  ),
6345
+ environment_name="environmentName",
5834
6346
  fields={
5835
6347
  "fields_key": amplifyuibuilder.CfnForm.FieldConfigProperty(
5836
6348
  excluded=False,
@@ -5864,14 +6376,38 @@ class CfnFormProps:
5864
6376
  value_mappings=amplifyuibuilder.CfnForm.ValueMappingsProperty(
5865
6377
  values=[amplifyuibuilder.CfnForm.ValueMappingProperty(
5866
6378
  value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty(
6379
+ binding_properties=amplifyuibuilder.CfnForm.FormInputValuePropertyBindingPropertiesProperty(
6380
+ property="property",
6381
+
6382
+ # the properties below are optional
6383
+ field="field"
6384
+ ),
6385
+ concat=[form_input_value_property_property_],
5867
6386
  value="value"
5868
6387
  ),
5869
6388
 
5870
6389
  # the properties below are optional
5871
6390
  display_value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty(
6391
+ binding_properties=amplifyuibuilder.CfnForm.FormInputValuePropertyBindingPropertiesProperty(
6392
+ property="property",
6393
+
6394
+ # the properties below are optional
6395
+ field="field"
6396
+ ),
6397
+ concat=[form_input_value_property_property_],
5872
6398
  value="value"
5873
6399
  )
5874
- )]
6400
+ )],
6401
+
6402
+ # the properties below are optional
6403
+ binding_properties={
6404
+ "binding_properties_key": amplifyuibuilder.CfnForm.FormInputBindingPropertiesValueProperty(
6405
+ binding_properties=amplifyuibuilder.CfnForm.FormInputBindingPropertiesValuePropertiesProperty(
6406
+ model="model"
6407
+ ),
6408
+ type="type"
6409
+ )
6410
+ }
5875
6411
  )
5876
6412
  ),
5877
6413
  label="label",
@@ -5891,6 +6427,7 @@ class CfnFormProps:
5891
6427
  )
5892
6428
  },
5893
6429
  form_action_type="formActionType",
6430
+ label_decorator="labelDecorator",
5894
6431
  name="name",
5895
6432
  schema_version="schemaVersion",
5896
6433
  sectional_elements={
@@ -5923,41 +6460,6 @@ class CfnFormProps:
5923
6460
  value="value"
5924
6461
  )
5925
6462
  ),
5926
-
5927
- # the properties below are optional
5928
- app_id="appId",
5929
- cta=amplifyuibuilder.CfnForm.FormCTAProperty(
5930
- cancel=amplifyuibuilder.CfnForm.FormButtonProperty(
5931
- children="children",
5932
- excluded=False,
5933
- position=amplifyuibuilder.CfnForm.FieldPositionProperty(
5934
- below="below",
5935
- fixed="fixed",
5936
- right_of="rightOf"
5937
- )
5938
- ),
5939
- clear=amplifyuibuilder.CfnForm.FormButtonProperty(
5940
- children="children",
5941
- excluded=False,
5942
- position=amplifyuibuilder.CfnForm.FieldPositionProperty(
5943
- below="below",
5944
- fixed="fixed",
5945
- right_of="rightOf"
5946
- )
5947
- ),
5948
- position="position",
5949
- submit=amplifyuibuilder.CfnForm.FormButtonProperty(
5950
- children="children",
5951
- excluded=False,
5952
- position=amplifyuibuilder.CfnForm.FieldPositionProperty(
5953
- below="below",
5954
- fixed="fixed",
5955
- right_of="rightOf"
5956
- )
5957
- )
5958
- ),
5959
- environment_name="environmentName",
5960
- label_decorator="labelDecorator",
5961
6463
  tags={
5962
6464
  "tags_key": "tags"
5963
6465
  }
@@ -5965,96 +6467,135 @@ class CfnFormProps:
5965
6467
  '''
5966
6468
  if __debug__:
5967
6469
  type_hints = typing.get_type_hints(_typecheckingstub__4bb63d5cc6b32485abf45108b28446e1c750de14c1855dae86134a9765f5dbf4)
6470
+ check_type(argname="argument app_id", value=app_id, expected_type=type_hints["app_id"])
6471
+ check_type(argname="argument cta", value=cta, expected_type=type_hints["cta"])
5968
6472
  check_type(argname="argument data_type", value=data_type, expected_type=type_hints["data_type"])
6473
+ check_type(argname="argument environment_name", value=environment_name, expected_type=type_hints["environment_name"])
5969
6474
  check_type(argname="argument fields", value=fields, expected_type=type_hints["fields"])
5970
6475
  check_type(argname="argument form_action_type", value=form_action_type, expected_type=type_hints["form_action_type"])
6476
+ check_type(argname="argument label_decorator", value=label_decorator, expected_type=type_hints["label_decorator"])
5971
6477
  check_type(argname="argument name", value=name, expected_type=type_hints["name"])
5972
6478
  check_type(argname="argument schema_version", value=schema_version, expected_type=type_hints["schema_version"])
5973
6479
  check_type(argname="argument sectional_elements", value=sectional_elements, expected_type=type_hints["sectional_elements"])
5974
6480
  check_type(argname="argument style", value=style, expected_type=type_hints["style"])
5975
- check_type(argname="argument app_id", value=app_id, expected_type=type_hints["app_id"])
5976
- check_type(argname="argument cta", value=cta, expected_type=type_hints["cta"])
5977
- check_type(argname="argument environment_name", value=environment_name, expected_type=type_hints["environment_name"])
5978
- check_type(argname="argument label_decorator", value=label_decorator, expected_type=type_hints["label_decorator"])
5979
6481
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
5980
- self._values: typing.Dict[builtins.str, typing.Any] = {
5981
- "data_type": data_type,
5982
- "fields": fields,
5983
- "form_action_type": form_action_type,
5984
- "name": name,
5985
- "schema_version": schema_version,
5986
- "sectional_elements": sectional_elements,
5987
- "style": style,
5988
- }
6482
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
5989
6483
  if app_id is not None:
5990
6484
  self._values["app_id"] = app_id
5991
6485
  if cta is not None:
5992
6486
  self._values["cta"] = cta
6487
+ if data_type is not None:
6488
+ self._values["data_type"] = data_type
5993
6489
  if environment_name is not None:
5994
6490
  self._values["environment_name"] = environment_name
6491
+ if fields is not None:
6492
+ self._values["fields"] = fields
6493
+ if form_action_type is not None:
6494
+ self._values["form_action_type"] = form_action_type
5995
6495
  if label_decorator is not None:
5996
6496
  self._values["label_decorator"] = label_decorator
6497
+ if name is not None:
6498
+ self._values["name"] = name
6499
+ if schema_version is not None:
6500
+ self._values["schema_version"] = schema_version
6501
+ if sectional_elements is not None:
6502
+ self._values["sectional_elements"] = sectional_elements
6503
+ if style is not None:
6504
+ self._values["style"] = style
5997
6505
  if tags is not None:
5998
6506
  self._values["tags"] = tags
5999
6507
 
6508
+ @builtins.property
6509
+ def app_id(self) -> typing.Optional[builtins.str]:
6510
+ '''The unique ID of the Amplify app associated with the form.
6511
+
6512
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-form.html#cfn-amplifyuibuilder-form-appid
6513
+ '''
6514
+ result = self._values.get("app_id")
6515
+ return typing.cast(typing.Optional[builtins.str], result)
6516
+
6517
+ @builtins.property
6518
+ def cta(
6519
+ self,
6520
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnForm.FormCTAProperty]]:
6521
+ '''The ``FormCTA`` object that stores the call to action configuration for the form.
6522
+
6523
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-form.html#cfn-amplifyuibuilder-form-cta
6524
+ '''
6525
+ result = self._values.get("cta")
6526
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnForm.FormCTAProperty]], result)
6527
+
6000
6528
  @builtins.property
6001
6529
  def data_type(
6002
6530
  self,
6003
- ) -> typing.Union[_IResolvable_da3f097b, CfnForm.FormDataTypeConfigProperty]:
6531
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnForm.FormDataTypeConfigProperty]]:
6004
6532
  '''The type of data source to use to create the form.
6005
6533
 
6006
6534
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-form.html#cfn-amplifyuibuilder-form-datatype
6007
6535
  '''
6008
6536
  result = self._values.get("data_type")
6009
- assert result is not None, "Required property 'data_type' is missing"
6010
- return typing.cast(typing.Union[_IResolvable_da3f097b, CfnForm.FormDataTypeConfigProperty], result)
6537
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnForm.FormDataTypeConfigProperty]], result)
6538
+
6539
+ @builtins.property
6540
+ def environment_name(self) -> typing.Optional[builtins.str]:
6541
+ '''The name of the backend environment that is a part of the Amplify app.
6542
+
6543
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-form.html#cfn-amplifyuibuilder-form-environmentname
6544
+ '''
6545
+ result = self._values.get("environment_name")
6546
+ return typing.cast(typing.Optional[builtins.str], result)
6011
6547
 
6012
6548
  @builtins.property
6013
6549
  def fields(
6014
6550
  self,
6015
- ) -> typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnForm.FieldConfigProperty]]]:
6551
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnForm.FieldConfigProperty]]]]:
6016
6552
  '''The configuration information for the form's fields.
6017
6553
 
6018
6554
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-form.html#cfn-amplifyuibuilder-form-fields
6019
6555
  '''
6020
6556
  result = self._values.get("fields")
6021
- assert result is not None, "Required property 'fields' is missing"
6022
- return typing.cast(typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnForm.FieldConfigProperty]]], result)
6557
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnForm.FieldConfigProperty]]]], result)
6023
6558
 
6024
6559
  @builtins.property
6025
- def form_action_type(self) -> builtins.str:
6560
+ def form_action_type(self) -> typing.Optional[builtins.str]:
6026
6561
  '''Specifies whether to perform a create or update action on the form.
6027
6562
 
6028
6563
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-form.html#cfn-amplifyuibuilder-form-formactiontype
6029
6564
  '''
6030
6565
  result = self._values.get("form_action_type")
6031
- assert result is not None, "Required property 'form_action_type' is missing"
6032
- return typing.cast(builtins.str, result)
6566
+ return typing.cast(typing.Optional[builtins.str], result)
6567
+
6568
+ @builtins.property
6569
+ def label_decorator(self) -> typing.Optional[builtins.str]:
6570
+ '''Specifies an icon or decoration to display on the form.
6571
+
6572
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-form.html#cfn-amplifyuibuilder-form-labeldecorator
6573
+ '''
6574
+ result = self._values.get("label_decorator")
6575
+ return typing.cast(typing.Optional[builtins.str], result)
6033
6576
 
6034
6577
  @builtins.property
6035
- def name(self) -> builtins.str:
6578
+ def name(self) -> typing.Optional[builtins.str]:
6036
6579
  '''The name of the form.
6037
6580
 
6038
6581
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-form.html#cfn-amplifyuibuilder-form-name
6039
6582
  '''
6040
6583
  result = self._values.get("name")
6041
- assert result is not None, "Required property 'name' is missing"
6042
- return typing.cast(builtins.str, result)
6584
+ return typing.cast(typing.Optional[builtins.str], result)
6043
6585
 
6044
6586
  @builtins.property
6045
- def schema_version(self) -> builtins.str:
6587
+ def schema_version(self) -> typing.Optional[builtins.str]:
6046
6588
  '''The schema version of the form.
6047
6589
 
6048
6590
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-form.html#cfn-amplifyuibuilder-form-schemaversion
6049
6591
  '''
6050
6592
  result = self._values.get("schema_version")
6051
- assert result is not None, "Required property 'schema_version' is missing"
6052
- return typing.cast(builtins.str, result)
6593
+ return typing.cast(typing.Optional[builtins.str], result)
6053
6594
 
6054
6595
  @builtins.property
6055
6596
  def sectional_elements(
6056
6597
  self,
6057
- ) -> typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnForm.SectionalElementProperty]]]:
6598
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnForm.SectionalElementProperty]]]]:
6058
6599
  '''The configuration information for the visual helper elements for the form.
6059
6600
 
6060
6601
  These elements are not associated with any data.
@@ -6062,56 +6603,18 @@ class CfnFormProps:
6062
6603
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-form.html#cfn-amplifyuibuilder-form-sectionalelements
6063
6604
  '''
6064
6605
  result = self._values.get("sectional_elements")
6065
- assert result is not None, "Required property 'sectional_elements' is missing"
6066
- return typing.cast(typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnForm.SectionalElementProperty]]], result)
6606
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnForm.SectionalElementProperty]]]], result)
6067
6607
 
6068
6608
  @builtins.property
6069
- def style(self) -> typing.Union[_IResolvable_da3f097b, CfnForm.FormStyleProperty]:
6609
+ def style(
6610
+ self,
6611
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnForm.FormStyleProperty]]:
6070
6612
  '''The configuration for the form's style.
6071
6613
 
6072
6614
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-form.html#cfn-amplifyuibuilder-form-style
6073
6615
  '''
6074
6616
  result = self._values.get("style")
6075
- assert result is not None, "Required property 'style' is missing"
6076
- return typing.cast(typing.Union[_IResolvable_da3f097b, CfnForm.FormStyleProperty], result)
6077
-
6078
- @builtins.property
6079
- def app_id(self) -> typing.Optional[builtins.str]:
6080
- '''The unique ID of the Amplify app associated with the form.
6081
-
6082
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-form.html#cfn-amplifyuibuilder-form-appid
6083
- '''
6084
- result = self._values.get("app_id")
6085
- return typing.cast(typing.Optional[builtins.str], result)
6086
-
6087
- @builtins.property
6088
- def cta(
6089
- self,
6090
- ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnForm.FormCTAProperty]]:
6091
- '''The ``FormCTA`` object that stores the call to action configuration for the form.
6092
-
6093
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-form.html#cfn-amplifyuibuilder-form-cta
6094
- '''
6095
- result = self._values.get("cta")
6096
- return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnForm.FormCTAProperty]], result)
6097
-
6098
- @builtins.property
6099
- def environment_name(self) -> typing.Optional[builtins.str]:
6100
- '''The name of the backend environment that is a part of the Amplify app.
6101
-
6102
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-form.html#cfn-amplifyuibuilder-form-environmentname
6103
- '''
6104
- result = self._values.get("environment_name")
6105
- return typing.cast(typing.Optional[builtins.str], result)
6106
-
6107
- @builtins.property
6108
- def label_decorator(self) -> typing.Optional[builtins.str]:
6109
- '''Specifies an icon or decoration to display on the form.
6110
-
6111
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-form.html#cfn-amplifyuibuilder-form-labeldecorator
6112
- '''
6113
- result = self._values.get("label_decorator")
6114
- return typing.cast(typing.Optional[builtins.str], result)
6617
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnForm.FormStyleProperty]], result)
6115
6618
 
6116
6619
  @builtins.property
6117
6620
  def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
@@ -6157,28 +6660,26 @@ class CfnTheme(
6157
6660
  # theme_values_property_: amplifyuibuilder.CfnTheme.ThemeValuesProperty
6158
6661
 
6159
6662
  cfn_theme = amplifyuibuilder.CfnTheme(self, "MyCfnTheme",
6663
+ app_id="appId",
6664
+ environment_name="environmentName",
6160
6665
  name="name",
6161
- values=[amplifyuibuilder.CfnTheme.ThemeValuesProperty(
6666
+ overrides=[amplifyuibuilder.CfnTheme.ThemeValuesProperty(
6162
6667
  key="key",
6163
6668
  value=amplifyuibuilder.CfnTheme.ThemeValueProperty(
6164
6669
  children=[theme_values_property_],
6165
6670
  value="value"
6166
6671
  )
6167
6672
  )],
6168
-
6169
- # the properties below are optional
6170
- app_id="appId",
6171
- environment_name="environmentName",
6172
- overrides=[amplifyuibuilder.CfnTheme.ThemeValuesProperty(
6673
+ tags={
6674
+ "tags_key": "tags"
6675
+ },
6676
+ values=[amplifyuibuilder.CfnTheme.ThemeValuesProperty(
6173
6677
  key="key",
6174
6678
  value=amplifyuibuilder.CfnTheme.ThemeValueProperty(
6175
6679
  children=[theme_values_property_],
6176
6680
  value="value"
6177
6681
  )
6178
- )],
6179
- tags={
6180
- "tags_key": "tags"
6181
- }
6682
+ )]
6182
6683
  )
6183
6684
  '''
6184
6685
 
@@ -6187,34 +6688,34 @@ class CfnTheme(
6187
6688
  scope: _constructs_77d1e7e8.Construct,
6188
6689
  id: builtins.str,
6189
6690
  *,
6190
- name: builtins.str,
6191
- values: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTheme.ThemeValuesProperty", typing.Dict[builtins.str, typing.Any]]]]],
6192
6691
  app_id: typing.Optional[builtins.str] = None,
6193
6692
  environment_name: typing.Optional[builtins.str] = None,
6693
+ name: typing.Optional[builtins.str] = None,
6194
6694
  overrides: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTheme.ThemeValuesProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
6195
6695
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
6696
+ values: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTheme.ThemeValuesProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
6196
6697
  ) -> None:
6197
6698
  '''
6198
6699
  :param scope: Scope in which this resource is defined.
6199
6700
  :param id: Construct identifier for this resource (unique in its scope).
6200
- :param name: The name of the theme.
6201
- :param values: A list of key-value pairs that defines the properties of the theme.
6202
6701
  :param app_id: The unique ID for the Amplify app associated with the theme.
6203
6702
  :param environment_name: The name of the backend environment that is a part of the Amplify app.
6703
+ :param name: The name of the theme.
6204
6704
  :param overrides: Describes the properties that can be overriden to customize a theme.
6205
6705
  :param tags: One or more key-value pairs to use when tagging the theme.
6706
+ :param values: A list of key-value pairs that defines the properties of the theme.
6206
6707
  '''
6207
6708
  if __debug__:
6208
6709
  type_hints = typing.get_type_hints(_typecheckingstub__2279f682c519f8cd82b48b2513abcff891e39a55368285f7ff433a9378321040)
6209
6710
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
6210
6711
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
6211
6712
  props = CfnThemeProps(
6212
- name=name,
6213
- values=values,
6214
6713
  app_id=app_id,
6215
6714
  environment_name=environment_name,
6715
+ name=name,
6216
6716
  overrides=overrides,
6217
6717
  tags=tags,
6718
+ values=values,
6218
6719
  )
6219
6720
 
6220
6721
  jsii.create(self.__class__, self, [scope, id, props])
@@ -6249,6 +6750,15 @@ class CfnTheme(
6249
6750
  '''The CloudFormation resource type name for this resource class.'''
6250
6751
  return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
6251
6752
 
6753
+ @builtins.property
6754
+ @jsii.member(jsii_name="attrCreatedAt")
6755
+ def attr_created_at(self) -> builtins.str:
6756
+ '''The time that the theme was created.
6757
+
6758
+ :cloudformationAttribute: CreatedAt
6759
+ '''
6760
+ return typing.cast(builtins.str, jsii.get(self, "attrCreatedAt"))
6761
+
6252
6762
  @builtins.property
6253
6763
  @jsii.member(jsii_name="attrId")
6254
6764
  def attr_id(self) -> builtins.str:
@@ -6258,6 +6768,15 @@ class CfnTheme(
6258
6768
  '''
6259
6769
  return typing.cast(builtins.str, jsii.get(self, "attrId"))
6260
6770
 
6771
+ @builtins.property
6772
+ @jsii.member(jsii_name="attrModifiedAt")
6773
+ def attr_modified_at(self) -> builtins.str:
6774
+ '''The time that the theme was modified.
6775
+
6776
+ :cloudformationAttribute: ModifiedAt
6777
+ '''
6778
+ return typing.cast(builtins.str, jsii.get(self, "attrModifiedAt"))
6779
+
6261
6780
  @builtins.property
6262
6781
  @jsii.member(jsii_name="cfnProperties")
6263
6782
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -6269,37 +6788,6 @@ class CfnTheme(
6269
6788
  '''Tag Manager which manages the tags for this resource.'''
6270
6789
  return typing.cast(_TagManager_0a598cb3, jsii.get(self, "tags"))
6271
6790
 
6272
- @builtins.property
6273
- @jsii.member(jsii_name="name")
6274
- def name(self) -> builtins.str:
6275
- '''The name of the theme.'''
6276
- return typing.cast(builtins.str, jsii.get(self, "name"))
6277
-
6278
- @name.setter
6279
- def name(self, value: builtins.str) -> None:
6280
- if __debug__:
6281
- type_hints = typing.get_type_hints(_typecheckingstub__37420262c86d20249895865fc6efbd1cf14792658f7f10af8ab3410f125160d8)
6282
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6283
- jsii.set(self, "name", value)
6284
-
6285
- @builtins.property
6286
- @jsii.member(jsii_name="values")
6287
- def values(
6288
- self,
6289
- ) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnTheme.ThemeValuesProperty"]]]:
6290
- '''A list of key-value pairs that defines the properties of the theme.'''
6291
- return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnTheme.ThemeValuesProperty"]]], jsii.get(self, "values"))
6292
-
6293
- @values.setter
6294
- def values(
6295
- self,
6296
- value: typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnTheme.ThemeValuesProperty"]]],
6297
- ) -> None:
6298
- if __debug__:
6299
- type_hints = typing.get_type_hints(_typecheckingstub__bb8701acac3d1216eee5ea6afa5963493d323823cf518c1ba70eebb677f169f7)
6300
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6301
- jsii.set(self, "values", value)
6302
-
6303
6791
  @builtins.property
6304
6792
  @jsii.member(jsii_name="appId")
6305
6793
  def app_id(self) -> typing.Optional[builtins.str]:
@@ -6326,6 +6814,19 @@ class CfnTheme(
6326
6814
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6327
6815
  jsii.set(self, "environmentName", value)
6328
6816
 
6817
+ @builtins.property
6818
+ @jsii.member(jsii_name="name")
6819
+ def name(self) -> typing.Optional[builtins.str]:
6820
+ '''The name of the theme.'''
6821
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "name"))
6822
+
6823
+ @name.setter
6824
+ def name(self, value: typing.Optional[builtins.str]) -> None:
6825
+ if __debug__:
6826
+ type_hints = typing.get_type_hints(_typecheckingstub__37420262c86d20249895865fc6efbd1cf14792658f7f10af8ab3410f125160d8)
6827
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6828
+ jsii.set(self, "name", value)
6829
+
6329
6830
  @builtins.property
6330
6831
  @jsii.member(jsii_name="overrides")
6331
6832
  def overrides(
@@ -6360,6 +6861,24 @@ class CfnTheme(
6360
6861
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6361
6862
  jsii.set(self, "tagsRaw", value)
6362
6863
 
6864
+ @builtins.property
6865
+ @jsii.member(jsii_name="values")
6866
+ def values(
6867
+ self,
6868
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnTheme.ThemeValuesProperty"]]]]:
6869
+ '''A list of key-value pairs that defines the properties of the theme.'''
6870
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnTheme.ThemeValuesProperty"]]]], jsii.get(self, "values"))
6871
+
6872
+ @values.setter
6873
+ def values(
6874
+ self,
6875
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnTheme.ThemeValuesProperty"]]]],
6876
+ ) -> None:
6877
+ if __debug__:
6878
+ type_hints = typing.get_type_hints(_typecheckingstub__bb8701acac3d1216eee5ea6afa5963493d323823cf518c1ba70eebb677f169f7)
6879
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6880
+ jsii.set(self, "values", value)
6881
+
6363
6882
  @jsii.data_type(
6364
6883
  jsii_type="aws-cdk-lib.aws_amplifyuibuilder.CfnTheme.ThemeValueProperty",
6365
6884
  jsii_struct_bases=[],
@@ -6519,33 +7038,33 @@ class CfnTheme(
6519
7038
  jsii_type="aws-cdk-lib.aws_amplifyuibuilder.CfnThemeProps",
6520
7039
  jsii_struct_bases=[],
6521
7040
  name_mapping={
6522
- "name": "name",
6523
- "values": "values",
6524
7041
  "app_id": "appId",
6525
7042
  "environment_name": "environmentName",
7043
+ "name": "name",
6526
7044
  "overrides": "overrides",
6527
7045
  "tags": "tags",
7046
+ "values": "values",
6528
7047
  },
6529
7048
  )
6530
7049
  class CfnThemeProps:
6531
7050
  def __init__(
6532
7051
  self,
6533
7052
  *,
6534
- name: builtins.str,
6535
- values: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTheme.ThemeValuesProperty, typing.Dict[builtins.str, typing.Any]]]]],
6536
7053
  app_id: typing.Optional[builtins.str] = None,
6537
7054
  environment_name: typing.Optional[builtins.str] = None,
7055
+ name: typing.Optional[builtins.str] = None,
6538
7056
  overrides: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTheme.ThemeValuesProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6539
7057
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7058
+ values: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTheme.ThemeValuesProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6540
7059
  ) -> None:
6541
7060
  '''Properties for defining a ``CfnTheme``.
6542
7061
 
6543
- :param name: The name of the theme.
6544
- :param values: A list of key-value pairs that defines the properties of the theme.
6545
7062
  :param app_id: The unique ID for the Amplify app associated with the theme.
6546
7063
  :param environment_name: The name of the backend environment that is a part of the Amplify app.
7064
+ :param name: The name of the theme.
6547
7065
  :param overrides: Describes the properties that can be overriden to customize a theme.
6548
7066
  :param tags: One or more key-value pairs to use when tagging the theme.
7067
+ :param values: A list of key-value pairs that defines the properties of the theme.
6549
7068
 
6550
7069
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-theme.html
6551
7070
  :exampleMetadata: fixture=_generated
@@ -6559,72 +7078,49 @@ class CfnThemeProps:
6559
7078
  # theme_values_property_: amplifyuibuilder.CfnTheme.ThemeValuesProperty
6560
7079
 
6561
7080
  cfn_theme_props = amplifyuibuilder.CfnThemeProps(
7081
+ app_id="appId",
7082
+ environment_name="environmentName",
6562
7083
  name="name",
6563
- values=[amplifyuibuilder.CfnTheme.ThemeValuesProperty(
7084
+ overrides=[amplifyuibuilder.CfnTheme.ThemeValuesProperty(
6564
7085
  key="key",
6565
7086
  value=amplifyuibuilder.CfnTheme.ThemeValueProperty(
6566
7087
  children=[theme_values_property_],
6567
7088
  value="value"
6568
7089
  )
6569
7090
  )],
6570
-
6571
- # the properties below are optional
6572
- app_id="appId",
6573
- environment_name="environmentName",
6574
- overrides=[amplifyuibuilder.CfnTheme.ThemeValuesProperty(
7091
+ tags={
7092
+ "tags_key": "tags"
7093
+ },
7094
+ values=[amplifyuibuilder.CfnTheme.ThemeValuesProperty(
6575
7095
  key="key",
6576
7096
  value=amplifyuibuilder.CfnTheme.ThemeValueProperty(
6577
7097
  children=[theme_values_property_],
6578
7098
  value="value"
6579
7099
  )
6580
- )],
6581
- tags={
6582
- "tags_key": "tags"
6583
- }
7100
+ )]
6584
7101
  )
6585
7102
  '''
6586
7103
  if __debug__:
6587
7104
  type_hints = typing.get_type_hints(_typecheckingstub__77360f99c7978648939d69b66977b92aefcb6819d200949e380c72c121fb7bad)
6588
- check_type(argname="argument name", value=name, expected_type=type_hints["name"])
6589
- check_type(argname="argument values", value=values, expected_type=type_hints["values"])
6590
7105
  check_type(argname="argument app_id", value=app_id, expected_type=type_hints["app_id"])
6591
7106
  check_type(argname="argument environment_name", value=environment_name, expected_type=type_hints["environment_name"])
7107
+ check_type(argname="argument name", value=name, expected_type=type_hints["name"])
6592
7108
  check_type(argname="argument overrides", value=overrides, expected_type=type_hints["overrides"])
6593
7109
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
6594
- self._values: typing.Dict[builtins.str, typing.Any] = {
6595
- "name": name,
6596
- "values": values,
6597
- }
7110
+ check_type(argname="argument values", value=values, expected_type=type_hints["values"])
7111
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
6598
7112
  if app_id is not None:
6599
7113
  self._values["app_id"] = app_id
6600
7114
  if environment_name is not None:
6601
7115
  self._values["environment_name"] = environment_name
7116
+ if name is not None:
7117
+ self._values["name"] = name
6602
7118
  if overrides is not None:
6603
7119
  self._values["overrides"] = overrides
6604
7120
  if tags is not None:
6605
7121
  self._values["tags"] = tags
6606
-
6607
- @builtins.property
6608
- def name(self) -> builtins.str:
6609
- '''The name of the theme.
6610
-
6611
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-theme.html#cfn-amplifyuibuilder-theme-name
6612
- '''
6613
- result = self._values.get("name")
6614
- assert result is not None, "Required property 'name' is missing"
6615
- return typing.cast(builtins.str, result)
6616
-
6617
- @builtins.property
6618
- def values(
6619
- self,
6620
- ) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnTheme.ThemeValuesProperty]]]:
6621
- '''A list of key-value pairs that defines the properties of the theme.
6622
-
6623
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-theme.html#cfn-amplifyuibuilder-theme-values
6624
- '''
6625
- result = self._values.get("values")
6626
- assert result is not None, "Required property 'values' is missing"
6627
- return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnTheme.ThemeValuesProperty]]], result)
7122
+ if values is not None:
7123
+ self._values["values"] = values
6628
7124
 
6629
7125
  @builtins.property
6630
7126
  def app_id(self) -> typing.Optional[builtins.str]:
@@ -6644,6 +7140,15 @@ class CfnThemeProps:
6644
7140
  result = self._values.get("environment_name")
6645
7141
  return typing.cast(typing.Optional[builtins.str], result)
6646
7142
 
7143
+ @builtins.property
7144
+ def name(self) -> typing.Optional[builtins.str]:
7145
+ '''The name of the theme.
7146
+
7147
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-theme.html#cfn-amplifyuibuilder-theme-name
7148
+ '''
7149
+ result = self._values.get("name")
7150
+ return typing.cast(typing.Optional[builtins.str], result)
7151
+
6647
7152
  @builtins.property
6648
7153
  def overrides(
6649
7154
  self,
@@ -6664,6 +7169,17 @@ class CfnThemeProps:
6664
7169
  result = self._values.get("tags")
6665
7170
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], result)
6666
7171
 
7172
+ @builtins.property
7173
+ def values(
7174
+ self,
7175
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnTheme.ThemeValuesProperty]]]]:
7176
+ '''A list of key-value pairs that defines the properties of the theme.
7177
+
7178
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-theme.html#cfn-amplifyuibuilder-theme-values
7179
+ '''
7180
+ result = self._values.get("values")
7181
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnTheme.ThemeValuesProperty]]]], result)
7182
+
6667
7183
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
6668
7184
  return isinstance(rhs, self.__class__) and rhs._values == self._values
6669
7185
 
@@ -6691,20 +7207,20 @@ def _typecheckingstub__fd7799829199faf127a94fa77781fc238076f764c5a29e3192b183024
6691
7207
  scope: _constructs_77d1e7e8.Construct,
6692
7208
  id: builtins.str,
6693
7209
  *,
6694
- binding_properties: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentBindingPropertiesValueProperty, typing.Dict[builtins.str, typing.Any]]]]],
6695
- component_type: builtins.str,
6696
- name: builtins.str,
6697
- overrides: typing.Any,
6698
- properties: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentPropertyProperty, typing.Dict[builtins.str, typing.Any]]]]],
6699
- variants: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentVariantProperty, typing.Dict[builtins.str, typing.Any]]]]],
6700
7210
  app_id: typing.Optional[builtins.str] = None,
7211
+ binding_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentBindingPropertiesValueProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6701
7212
  children: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentChildProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6702
7213
  collection_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentDataConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7214
+ component_type: typing.Optional[builtins.str] = None,
6703
7215
  environment_name: typing.Optional[builtins.str] = None,
6704
7216
  events: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentEventProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7217
+ name: typing.Optional[builtins.str] = None,
7218
+ overrides: typing.Any = None,
7219
+ properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentPropertyProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6705
7220
  schema_version: typing.Optional[builtins.str] = None,
6706
7221
  source_id: typing.Optional[builtins.str] = None,
6707
7222
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7223
+ variants: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentVariantProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6708
7224
  ) -> None:
6709
7225
  """Type checking stubs"""
6710
7226
  pass
@@ -6721,68 +7237,62 @@ def _typecheckingstub__5845dbb422dcf82315243e4c81979c1db599d6f4e807c7e8d29cce12a
6721
7237
  """Type checking stubs"""
6722
7238
  pass
6723
7239
 
6724
- def _typecheckingstub__4318ac16b5fec407f318eecf547fbef09f6a25d44eee663a0eb2d9d4cfb515c8(
6725
- value: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentBindingPropertiesValueProperty]]],
6726
- ) -> None:
6727
- """Type checking stubs"""
6728
- pass
6729
-
6730
- def _typecheckingstub__d75568dbcc6cfcf6d654bc9d347cea6e2a04e9fed153e3f59a35fd309d097273(
6731
- value: builtins.str,
7240
+ def _typecheckingstub__52def26f5917015e0ec1be927753e0ddd7c6ba2b26ed493f53e325e9fc57f820(
7241
+ value: typing.Optional[builtins.str],
6732
7242
  ) -> None:
6733
7243
  """Type checking stubs"""
6734
7244
  pass
6735
7245
 
6736
- def _typecheckingstub__d390004d0f30759542ef28ada1804bcce6e8abbebac682bdb562339425f06133(
6737
- value: builtins.str,
7246
+ def _typecheckingstub__4318ac16b5fec407f318eecf547fbef09f6a25d44eee663a0eb2d9d4cfb515c8(
7247
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentBindingPropertiesValueProperty]]]],
6738
7248
  ) -> None:
6739
7249
  """Type checking stubs"""
6740
7250
  pass
6741
7251
 
6742
- def _typecheckingstub__0df3bcfbc7a5f3b8c1c149ff6cbac150b1f0b40f2b39df29eaf014b9a94c7083(
6743
- value: typing.Any,
7252
+ def _typecheckingstub__8cc8d6f7afd78df5a6542a7697bbb32d8d2c9e5a18e80e3386de082f4e2b7071(
7253
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentChildProperty]]]],
6744
7254
  ) -> None:
6745
7255
  """Type checking stubs"""
6746
7256
  pass
6747
7257
 
6748
- def _typecheckingstub__996d9ae7924c5b47d79b0dc8a0bdd64fe013219ccbe4230a2423b7e9ad5aba37(
6749
- value: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentPropertyProperty]]],
7258
+ def _typecheckingstub__0ccd617dfcaf796edb26a70160a96d7ac3771afa99ba8a4500e7927f724ee8d2(
7259
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentDataConfigurationProperty]]]],
6750
7260
  ) -> None:
6751
7261
  """Type checking stubs"""
6752
7262
  pass
6753
7263
 
6754
- def _typecheckingstub__21622fc70206995803294c972e78d130850c0e1dde7f836f2646dd47d873fc48(
6755
- value: typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentVariantProperty]]],
7264
+ def _typecheckingstub__d75568dbcc6cfcf6d654bc9d347cea6e2a04e9fed153e3f59a35fd309d097273(
7265
+ value: typing.Optional[builtins.str],
6756
7266
  ) -> None:
6757
7267
  """Type checking stubs"""
6758
7268
  pass
6759
7269
 
6760
- def _typecheckingstub__52def26f5917015e0ec1be927753e0ddd7c6ba2b26ed493f53e325e9fc57f820(
7270
+ def _typecheckingstub__b4df74d1bffa910e68795eee3fd72266a3d4fbec9071447212ebcea5459c405e(
6761
7271
  value: typing.Optional[builtins.str],
6762
7272
  ) -> None:
6763
7273
  """Type checking stubs"""
6764
7274
  pass
6765
7275
 
6766
- def _typecheckingstub__8cc8d6f7afd78df5a6542a7697bbb32d8d2c9e5a18e80e3386de082f4e2b7071(
6767
- value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentChildProperty]]]],
7276
+ def _typecheckingstub__867f4afaa52290132593733e3be70d110a540505523ee1a4b0bea23f5a059f8c(
7277
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentEventProperty]]]],
6768
7278
  ) -> None:
6769
7279
  """Type checking stubs"""
6770
7280
  pass
6771
7281
 
6772
- def _typecheckingstub__0ccd617dfcaf796edb26a70160a96d7ac3771afa99ba8a4500e7927f724ee8d2(
6773
- value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentDataConfigurationProperty]]]],
7282
+ def _typecheckingstub__d390004d0f30759542ef28ada1804bcce6e8abbebac682bdb562339425f06133(
7283
+ value: typing.Optional[builtins.str],
6774
7284
  ) -> None:
6775
7285
  """Type checking stubs"""
6776
7286
  pass
6777
7287
 
6778
- def _typecheckingstub__b4df74d1bffa910e68795eee3fd72266a3d4fbec9071447212ebcea5459c405e(
6779
- value: typing.Optional[builtins.str],
7288
+ def _typecheckingstub__0df3bcfbc7a5f3b8c1c149ff6cbac150b1f0b40f2b39df29eaf014b9a94c7083(
7289
+ value: typing.Any,
6780
7290
  ) -> None:
6781
7291
  """Type checking stubs"""
6782
7292
  pass
6783
7293
 
6784
- def _typecheckingstub__867f4afaa52290132593733e3be70d110a540505523ee1a4b0bea23f5a059f8c(
6785
- value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentEventProperty]]]],
7294
+ def _typecheckingstub__996d9ae7924c5b47d79b0dc8a0bdd64fe013219ccbe4230a2423b7e9ad5aba37(
7295
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentPropertyProperty]]]],
6786
7296
  ) -> None:
6787
7297
  """Type checking stubs"""
6788
7298
  pass
@@ -6805,6 +7315,12 @@ def _typecheckingstub__0b9b20938d1ff30361e234f4ed386b675237f1fc01bc3df8c0e6a936d
6805
7315
  """Type checking stubs"""
6806
7316
  pass
6807
7317
 
7318
+ def _typecheckingstub__21622fc70206995803294c972e78d130850c0e1dde7f836f2646dd47d873fc48(
7319
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnComponent.ComponentVariantProperty]]]],
7320
+ ) -> None:
7321
+ """Type checking stubs"""
7322
+ pass
7323
+
6808
7324
  def _typecheckingstub__396df9c0159ef2683a2d199aa0e6b6baece439a466a700800ddc5e140dd124b1(
6809
7325
  *,
6810
7326
  anchor: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentPropertyProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
@@ -6828,6 +7344,7 @@ def _typecheckingstub__81ff632b19dd9fd8d12fdc9b6929e5e551d79797cb14dd1ca0cf76449
6828
7344
  key: typing.Optional[builtins.str] = None,
6829
7345
  model: typing.Optional[builtins.str] = None,
6830
7346
  predicates: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.PredicateProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7347
+ slot_name: typing.Optional[builtins.str] = None,
6831
7348
  user_attribute: typing.Optional[builtins.str] = None,
6832
7349
  ) -> None:
6833
7350
  """Type checking stubs"""
@@ -6849,6 +7366,7 @@ def _typecheckingstub__e3d50eae10e05ec6519c8b5405904b780a7f01613f52ff55abfb41b0c
6849
7366
  properties: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentPropertyProperty, typing.Dict[builtins.str, typing.Any]]]]],
6850
7367
  children: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentChildProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6851
7368
  events: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentEventProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7369
+ source_id: typing.Optional[builtins.str] = None,
6852
7370
  ) -> None:
6853
7371
  """Type checking stubs"""
6854
7372
  pass
@@ -6879,6 +7397,7 @@ def _typecheckingstub__64e141d7e4f47c6e1581f7d74ffea218f473c3420b88087f34835976e
6879
7397
  def _typecheckingstub__0a2199271a6b5de84d37a061bced7624cc98fc5b38d9799e48008b25cc4beb30(
6880
7398
  *,
6881
7399
  action: typing.Optional[builtins.str] = None,
7400
+ binding_event: typing.Optional[builtins.str] = None,
6882
7401
  parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ActionParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
6883
7402
  ) -> None:
6884
7403
  """Type checking stubs"""
@@ -6943,6 +7462,7 @@ def _typecheckingstub__37ce81ce3ae3ad1d19dadf5542dca7cb3465cd10747b81f17e473f6a2
6943
7462
  and_: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.PredicateProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6944
7463
  field: typing.Optional[builtins.str] = None,
6945
7464
  operand: typing.Optional[builtins.str] = None,
7465
+ operand_type: typing.Optional[builtins.str] = None,
6946
7466
  operator: typing.Optional[builtins.str] = None,
6947
7467
  or_: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.PredicateProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6948
7468
  ) -> None:
@@ -6959,20 +7479,20 @@ def _typecheckingstub__2e28aa12f1ac083d97c2507afcccfed6130be39825a273208c629b58a
6959
7479
 
6960
7480
  def _typecheckingstub__f53200a7ca068c25e3052be6f1490d18f9816b65f2cfec3a854a23ba3d5e5f45(
6961
7481
  *,
6962
- binding_properties: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentBindingPropertiesValueProperty, typing.Dict[builtins.str, typing.Any]]]]],
6963
- component_type: builtins.str,
6964
- name: builtins.str,
6965
- overrides: typing.Any,
6966
- properties: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentPropertyProperty, typing.Dict[builtins.str, typing.Any]]]]],
6967
- variants: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentVariantProperty, typing.Dict[builtins.str, typing.Any]]]]],
6968
7482
  app_id: typing.Optional[builtins.str] = None,
7483
+ binding_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentBindingPropertiesValueProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6969
7484
  children: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentChildProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6970
7485
  collection_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentDataConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7486
+ component_type: typing.Optional[builtins.str] = None,
6971
7487
  environment_name: typing.Optional[builtins.str] = None,
6972
7488
  events: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentEventProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7489
+ name: typing.Optional[builtins.str] = None,
7490
+ overrides: typing.Any = None,
7491
+ properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentPropertyProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6973
7492
  schema_version: typing.Optional[builtins.str] = None,
6974
7493
  source_id: typing.Optional[builtins.str] = None,
6975
7494
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7495
+ variants: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnComponent.ComponentVariantProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6976
7496
  ) -> None:
6977
7497
  """Type checking stubs"""
6978
7498
  pass
@@ -6981,17 +7501,17 @@ def _typecheckingstub__d1e1e67668c27ec66bb2b6aa2fd792ed1f3347990281e8dd83ae2ac8e
6981
7501
  scope: _constructs_77d1e7e8.Construct,
6982
7502
  id: builtins.str,
6983
7503
  *,
6984
- data_type: typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormDataTypeConfigProperty, typing.Dict[builtins.str, typing.Any]]],
6985
- fields: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FieldConfigProperty, typing.Dict[builtins.str, typing.Any]]]]],
6986
- form_action_type: builtins.str,
6987
- name: builtins.str,
6988
- schema_version: builtins.str,
6989
- sectional_elements: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.SectionalElementProperty, typing.Dict[builtins.str, typing.Any]]]]],
6990
- style: typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormStyleProperty, typing.Dict[builtins.str, typing.Any]]],
6991
7504
  app_id: typing.Optional[builtins.str] = None,
6992
7505
  cta: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormCTAProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7506
+ data_type: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormDataTypeConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
6993
7507
  environment_name: typing.Optional[builtins.str] = None,
7508
+ fields: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FieldConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7509
+ form_action_type: typing.Optional[builtins.str] = None,
6994
7510
  label_decorator: typing.Optional[builtins.str] = None,
7511
+ name: typing.Optional[builtins.str] = None,
7512
+ schema_version: typing.Optional[builtins.str] = None,
7513
+ sectional_elements: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.SectionalElementProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7514
+ style: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormStyleProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
6995
7515
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
6996
7516
  ) -> None:
6997
7517
  """Type checking stubs"""
@@ -7009,68 +7529,68 @@ def _typecheckingstub__b8dedc67622f4e478423a2acbe47f789044cbf9bf399c9f14ba25932f
7009
7529
  """Type checking stubs"""
7010
7530
  pass
7011
7531
 
7012
- def _typecheckingstub__c7e19a017312460ae2a463321b8755f4cbb046f23e5b3f211bc3667291c8fc4c(
7013
- value: typing.Union[_IResolvable_da3f097b, CfnForm.FormDataTypeConfigProperty],
7532
+ def _typecheckingstub__a6086ddf273ace487109ec97dd1dc720c5f83ebbe24a96e2c42ae15646389d00(
7533
+ value: typing.Optional[builtins.str],
7014
7534
  ) -> None:
7015
7535
  """Type checking stubs"""
7016
7536
  pass
7017
7537
 
7018
- def _typecheckingstub__b9015687d91891d43612fe42019ff55cd0a88db183c4588c47c40ae844181ac0(
7019
- value: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnForm.FieldConfigProperty]]],
7538
+ def _typecheckingstub__dcc01bb0df0b0a573caa23a9628b8cbfe2eb86510e0e390b92156dd05d486862(
7539
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnForm.FormCTAProperty]],
7020
7540
  ) -> None:
7021
7541
  """Type checking stubs"""
7022
7542
  pass
7023
7543
 
7024
- def _typecheckingstub__2fc577f05ff38c0454a529f8e25d70043166c3c843ba386b8533d1566010fb3c(
7025
- value: builtins.str,
7544
+ def _typecheckingstub__c7e19a017312460ae2a463321b8755f4cbb046f23e5b3f211bc3667291c8fc4c(
7545
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnForm.FormDataTypeConfigProperty]],
7026
7546
  ) -> None:
7027
7547
  """Type checking stubs"""
7028
7548
  pass
7029
7549
 
7030
- def _typecheckingstub__c37b5c0566194412a917f8b555c9713ff611891282349436c1825e2035304e0c(
7031
- value: builtins.str,
7550
+ def _typecheckingstub__34caf84fc388835a97bc0ea839fd35da20c88a4c8e915204f78e924b66d4de02(
7551
+ value: typing.Optional[builtins.str],
7032
7552
  ) -> None:
7033
7553
  """Type checking stubs"""
7034
7554
  pass
7035
7555
 
7036
- def _typecheckingstub__134b61ab92cc43448c72979bf06fe8c5b99e11026860e775bc799d1ac6f3485c(
7037
- value: builtins.str,
7556
+ def _typecheckingstub__b9015687d91891d43612fe42019ff55cd0a88db183c4588c47c40ae844181ac0(
7557
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnForm.FieldConfigProperty]]]],
7038
7558
  ) -> None:
7039
7559
  """Type checking stubs"""
7040
7560
  pass
7041
7561
 
7042
- def _typecheckingstub__85fa037be9d97ba3c80cd93837e11c8dbd4fe3a9d81a3b57bc62c3008fc0d045(
7043
- value: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnForm.SectionalElementProperty]]],
7562
+ def _typecheckingstub__2fc577f05ff38c0454a529f8e25d70043166c3c843ba386b8533d1566010fb3c(
7563
+ value: typing.Optional[builtins.str],
7044
7564
  ) -> None:
7045
7565
  """Type checking stubs"""
7046
7566
  pass
7047
7567
 
7048
- def _typecheckingstub__70860863c037915af307f857edb8d06dc079e810fc30f8a36441c45da0c1bed9(
7049
- value: typing.Union[_IResolvable_da3f097b, CfnForm.FormStyleProperty],
7568
+ def _typecheckingstub__7bb58fff4cc1b15eb6764b753579e921632aacbf08b0c7e91de1462a850e49ec(
7569
+ value: typing.Optional[builtins.str],
7050
7570
  ) -> None:
7051
7571
  """Type checking stubs"""
7052
7572
  pass
7053
7573
 
7054
- def _typecheckingstub__a6086ddf273ace487109ec97dd1dc720c5f83ebbe24a96e2c42ae15646389d00(
7574
+ def _typecheckingstub__c37b5c0566194412a917f8b555c9713ff611891282349436c1825e2035304e0c(
7055
7575
  value: typing.Optional[builtins.str],
7056
7576
  ) -> None:
7057
7577
  """Type checking stubs"""
7058
7578
  pass
7059
7579
 
7060
- def _typecheckingstub__dcc01bb0df0b0a573caa23a9628b8cbfe2eb86510e0e390b92156dd05d486862(
7061
- value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnForm.FormCTAProperty]],
7580
+ def _typecheckingstub__134b61ab92cc43448c72979bf06fe8c5b99e11026860e775bc799d1ac6f3485c(
7581
+ value: typing.Optional[builtins.str],
7062
7582
  ) -> None:
7063
7583
  """Type checking stubs"""
7064
7584
  pass
7065
7585
 
7066
- def _typecheckingstub__34caf84fc388835a97bc0ea839fd35da20c88a4c8e915204f78e924b66d4de02(
7067
- value: typing.Optional[builtins.str],
7586
+ def _typecheckingstub__85fa037be9d97ba3c80cd93837e11c8dbd4fe3a9d81a3b57bc62c3008fc0d045(
7587
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnForm.SectionalElementProperty]]]],
7068
7588
  ) -> None:
7069
7589
  """Type checking stubs"""
7070
7590
  pass
7071
7591
 
7072
- def _typecheckingstub__7bb58fff4cc1b15eb6764b753579e921632aacbf08b0c7e91de1462a850e49ec(
7073
- value: typing.Optional[builtins.str],
7592
+ def _typecheckingstub__70860863c037915af307f857edb8d06dc079e810fc30f8a36441c45da0c1bed9(
7593
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnForm.FormStyleProperty]],
7074
7594
  ) -> None:
7075
7595
  """Type checking stubs"""
7076
7596
  pass
@@ -7172,8 +7692,33 @@ def _typecheckingstub__c13c26fc166a4f957568be30eae909c624b75f8f8139e0588fece7eee
7172
7692
  """Type checking stubs"""
7173
7693
  pass
7174
7694
 
7695
+ def _typecheckingstub__e49a023124bfcb7abe6c639ac120065289e3237be67e100ab59da65f7d780f12(
7696
+ *,
7697
+ model: typing.Optional[builtins.str] = None,
7698
+ ) -> None:
7699
+ """Type checking stubs"""
7700
+ pass
7701
+
7702
+ def _typecheckingstub__96e2b156267ea5c453a576b2a0887821ce82e0ecfb9e232e4ed3f5041b278807(
7703
+ *,
7704
+ binding_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormInputBindingPropertiesValuePropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7705
+ type: typing.Optional[builtins.str] = None,
7706
+ ) -> None:
7707
+ """Type checking stubs"""
7708
+ pass
7709
+
7710
+ def _typecheckingstub__442ffd571935c3b45d1a0f4bf41d61336ca04d0b4cd16d3c3c32aa98f12a617c(
7711
+ *,
7712
+ property: builtins.str,
7713
+ field: typing.Optional[builtins.str] = None,
7714
+ ) -> None:
7715
+ """Type checking stubs"""
7716
+ pass
7717
+
7175
7718
  def _typecheckingstub__18fb1cc6c981a6a2bd1a5b53248a9d11f4a7c98e09a7132c1a7ca82bcd56c726(
7176
7719
  *,
7720
+ binding_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormInputValuePropertyBindingPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7721
+ concat: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormInputValuePropertyProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7177
7722
  value: typing.Optional[builtins.str] = None,
7178
7723
  ) -> None:
7179
7724
  """Type checking stubs"""
@@ -7219,23 +7764,24 @@ def _typecheckingstub__e5a419a9779cbf833c1ce04bf2e120ab8acfe6226e2a461b0e4f2dce0
7219
7764
  def _typecheckingstub__d724ce98e4e33046526453a6db65965e6f336a8f4ff6e0f67b70823d84267d95(
7220
7765
  *,
7221
7766
  values: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.ValueMappingProperty, typing.Dict[builtins.str, typing.Any]]]]],
7767
+ binding_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormInputBindingPropertiesValueProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7222
7768
  ) -> None:
7223
7769
  """Type checking stubs"""
7224
7770
  pass
7225
7771
 
7226
7772
  def _typecheckingstub__4bb63d5cc6b32485abf45108b28446e1c750de14c1855dae86134a9765f5dbf4(
7227
7773
  *,
7228
- data_type: typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormDataTypeConfigProperty, typing.Dict[builtins.str, typing.Any]]],
7229
- fields: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FieldConfigProperty, typing.Dict[builtins.str, typing.Any]]]]],
7230
- form_action_type: builtins.str,
7231
- name: builtins.str,
7232
- schema_version: builtins.str,
7233
- sectional_elements: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.SectionalElementProperty, typing.Dict[builtins.str, typing.Any]]]]],
7234
- style: typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormStyleProperty, typing.Dict[builtins.str, typing.Any]]],
7235
7774
  app_id: typing.Optional[builtins.str] = None,
7236
7775
  cta: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormCTAProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7776
+ data_type: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormDataTypeConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7237
7777
  environment_name: typing.Optional[builtins.str] = None,
7778
+ fields: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FieldConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7779
+ form_action_type: typing.Optional[builtins.str] = None,
7238
7780
  label_decorator: typing.Optional[builtins.str] = None,
7781
+ name: typing.Optional[builtins.str] = None,
7782
+ schema_version: typing.Optional[builtins.str] = None,
7783
+ sectional_elements: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.SectionalElementProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7784
+ style: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnForm.FormStyleProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7239
7785
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7240
7786
  ) -> None:
7241
7787
  """Type checking stubs"""
@@ -7245,12 +7791,12 @@ def _typecheckingstub__2279f682c519f8cd82b48b2513abcff891e39a55368285f7ff433a937
7245
7791
  scope: _constructs_77d1e7e8.Construct,
7246
7792
  id: builtins.str,
7247
7793
  *,
7248
- name: builtins.str,
7249
- values: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTheme.ThemeValuesProperty, typing.Dict[builtins.str, typing.Any]]]]],
7250
7794
  app_id: typing.Optional[builtins.str] = None,
7251
7795
  environment_name: typing.Optional[builtins.str] = None,
7796
+ name: typing.Optional[builtins.str] = None,
7252
7797
  overrides: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTheme.ThemeValuesProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7253
7798
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7799
+ values: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTheme.ThemeValuesProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7254
7800
  ) -> None:
7255
7801
  """Type checking stubs"""
7256
7802
  pass
@@ -7267,25 +7813,19 @@ def _typecheckingstub__4a229aebaa77e6195b91d905366ce47f16aebf09185cd76886e729ba2
7267
7813
  """Type checking stubs"""
7268
7814
  pass
7269
7815
 
7270
- def _typecheckingstub__37420262c86d20249895865fc6efbd1cf14792658f7f10af8ab3410f125160d8(
7271
- value: builtins.str,
7272
- ) -> None:
7273
- """Type checking stubs"""
7274
- pass
7275
-
7276
- def _typecheckingstub__bb8701acac3d1216eee5ea6afa5963493d323823cf518c1ba70eebb677f169f7(
7277
- value: typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnTheme.ThemeValuesProperty]]],
7816
+ def _typecheckingstub__f0ffc6ee64b3a996d2f17a1b95a80fca34ee0ed9b5e3c1a31bb067e444d348e5(
7817
+ value: typing.Optional[builtins.str],
7278
7818
  ) -> None:
7279
7819
  """Type checking stubs"""
7280
7820
  pass
7281
7821
 
7282
- def _typecheckingstub__f0ffc6ee64b3a996d2f17a1b95a80fca34ee0ed9b5e3c1a31bb067e444d348e5(
7822
+ def _typecheckingstub__a4863b588557c772fd24411338a83899ca5924a4d9e9cd93393cf60369a0281d(
7283
7823
  value: typing.Optional[builtins.str],
7284
7824
  ) -> None:
7285
7825
  """Type checking stubs"""
7286
7826
  pass
7287
7827
 
7288
- def _typecheckingstub__a4863b588557c772fd24411338a83899ca5924a4d9e9cd93393cf60369a0281d(
7828
+ def _typecheckingstub__37420262c86d20249895865fc6efbd1cf14792658f7f10af8ab3410f125160d8(
7289
7829
  value: typing.Optional[builtins.str],
7290
7830
  ) -> None:
7291
7831
  """Type checking stubs"""
@@ -7303,6 +7843,12 @@ def _typecheckingstub__d090d1bb1996a8d584f4c4d394f57d6d65e726a0906664df401bd4e8e
7303
7843
  """Type checking stubs"""
7304
7844
  pass
7305
7845
 
7846
+ def _typecheckingstub__bb8701acac3d1216eee5ea6afa5963493d323823cf518c1ba70eebb677f169f7(
7847
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnTheme.ThemeValuesProperty]]]],
7848
+ ) -> None:
7849
+ """Type checking stubs"""
7850
+ pass
7851
+
7306
7852
  def _typecheckingstub__968a2203f12b6fe147c86388655984948ce554ab590d84eab56303a5cb4f1443(
7307
7853
  *,
7308
7854
  children: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTheme.ThemeValuesProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
@@ -7321,12 +7867,12 @@ def _typecheckingstub__32916eb6e9dca0f7a126b89c19d4efd2943a6c491612af96a25d95ebb
7321
7867
 
7322
7868
  def _typecheckingstub__77360f99c7978648939d69b66977b92aefcb6819d200949e380c72c121fb7bad(
7323
7869
  *,
7324
- name: builtins.str,
7325
- values: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTheme.ThemeValuesProperty, typing.Dict[builtins.str, typing.Any]]]]],
7326
7870
  app_id: typing.Optional[builtins.str] = None,
7327
7871
  environment_name: typing.Optional[builtins.str] = None,
7872
+ name: typing.Optional[builtins.str] = None,
7328
7873
  overrides: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTheme.ThemeValuesProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7329
7874
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7875
+ values: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTheme.ThemeValuesProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7330
7876
  ) -> None:
7331
7877
  """Type checking stubs"""
7332
7878
  pass