aws-cdk-lib 2.186.0__py3-none-any.whl → 2.187.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +281 -116
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.186.0.jsii.tgz → aws-cdk-lib@2.187.0.jsii.tgz} +0 -0
- aws_cdk/aws_amplify/__init__.py +124 -0
- aws_cdk/aws_apigateway/__init__.py +48 -2
- aws_cdk/aws_appsync/__init__.py +14 -5
- aws_cdk/aws_bedrock/__init__.py +32 -22
- aws_cdk/aws_cassandra/__init__.py +2 -2
- aws_cdk/aws_cloudfront/__init__.py +11 -0
- aws_cdk/aws_cloudtrail/__init__.py +4 -18
- aws_cdk/aws_cloudwatch/__init__.py +50 -50
- aws_cdk/aws_codebuild/__init__.py +9 -0
- aws_cdk/aws_config/__init__.py +2 -5
- aws_cdk/aws_datazone/__init__.py +287 -226
- aws_cdk/aws_detective/__init__.py +3 -3
- aws_cdk/aws_dynamodb/__init__.py +37 -0
- aws_cdk/aws_ec2/__init__.py +154 -12
- aws_cdk/aws_ecr/__init__.py +143 -0
- aws_cdk/aws_ecr_assets/__init__.py +115 -4
- aws_cdk/aws_ecs/__init__.py +51 -0
- aws_cdk/aws_eks/__init__.py +114 -0
- aws_cdk/aws_events/__init__.py +8 -11
- aws_cdk/aws_forecast/__init__.py +1 -1
- aws_cdk/aws_fsx/__init__.py +2 -2
- aws_cdk/aws_gamelift/__init__.py +6 -6
- aws_cdk/aws_identitystore/__init__.py +16 -16
- aws_cdk/aws_iotsitewise/__init__.py +623 -0
- aws_cdk/aws_kms/__init__.py +10 -11
- aws_cdk/aws_lakeformation/__init__.py +3 -3
- aws_cdk/aws_lambda/__init__.py +105 -4
- aws_cdk/aws_lambda_event_sources/__init__.py +65 -3
- aws_cdk/aws_lambda_nodejs/__init__.py +5 -24
- aws_cdk/aws_lex/__init__.py +981 -5
- aws_cdk/aws_mediaconnect/__init__.py +714 -290
- aws_cdk/aws_mwaa/__init__.py +9 -9
- aws_cdk/aws_networkfirewall/__init__.py +44 -0
- aws_cdk/aws_omics/__init__.py +216 -0
- aws_cdk/aws_quicksight/__init__.py +244 -39
- aws_cdk/aws_rds/__init__.py +102 -10
- aws_cdk/aws_route53/__init__.py +2 -2
- aws_cdk/aws_route53recoverycontrol/__init__.py +43 -2
- aws_cdk/aws_s3_assets/__init__.py +70 -1
- aws_cdk/aws_s3_deployment/__init__.py +4 -0
- aws_cdk/aws_sagemaker/__init__.py +6 -4
- aws_cdk/aws_scheduler_targets/__init__.py +4 -16
- aws_cdk/aws_securitylake/__init__.py +2 -2
- aws_cdk/aws_servicecatalog/__init__.py +4 -0
- aws_cdk/aws_sns/__init__.py +1 -1
- aws_cdk/aws_stepfunctions/__init__.py +23 -17
- aws_cdk/aws_stepfunctions_tasks/__init__.py +4 -0
- aws_cdk/aws_synthetics/__init__.py +9 -0
- aws_cdk/aws_systemsmanagersap/__init__.py +150 -0
- aws_cdk/aws_wafv2/__init__.py +464 -1138
- aws_cdk/cloud_assembly_schema/__init__.py +60 -10
- aws_cdk/cx_api/__init__.py +15 -0
- aws_cdk/pipelines/__init__.py +20 -2
- {aws_cdk_lib-2.186.0.dist-info → aws_cdk_lib-2.187.0.dist-info}/METADATA +4 -4
- {aws_cdk_lib-2.186.0.dist-info → aws_cdk_lib-2.187.0.dist-info}/RECORD +62 -62
- {aws_cdk_lib-2.186.0.dist-info → aws_cdk_lib-2.187.0.dist-info}/WHEEL +1 -1
- {aws_cdk_lib-2.186.0.dist-info → aws_cdk_lib-2.187.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.186.0.dist-info → aws_cdk_lib-2.187.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.186.0.dist-info → aws_cdk_lib-2.187.0.dist-info}/top_level.txt +0 -0
|
@@ -92,6 +92,11 @@ class CfnApplication(
|
|
|
92
92
|
application_type="applicationType",
|
|
93
93
|
|
|
94
94
|
# the properties below are optional
|
|
95
|
+
components_info=[systemsmanagersap.CfnApplication.ComponentInfoProperty(
|
|
96
|
+
component_type="componentType",
|
|
97
|
+
ec2_instance_id="ec2InstanceId",
|
|
98
|
+
sid="sid"
|
|
99
|
+
)],
|
|
95
100
|
credentials=[systemsmanagersap.CfnApplication.CredentialProperty(
|
|
96
101
|
credential_type="credentialType",
|
|
97
102
|
database_name="databaseName",
|
|
@@ -115,6 +120,7 @@ class CfnApplication(
|
|
|
115
120
|
*,
|
|
116
121
|
application_id: builtins.str,
|
|
117
122
|
application_type: builtins.str,
|
|
123
|
+
components_info: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplication.ComponentInfoProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
118
124
|
credentials: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplication.CredentialProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
119
125
|
database_arn: typing.Optional[builtins.str] = None,
|
|
120
126
|
instances: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -127,6 +133,7 @@ class CfnApplication(
|
|
|
127
133
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
128
134
|
:param application_id: The ID of the application.
|
|
129
135
|
:param application_type: The type of the application.
|
|
136
|
+
:param components_info: This is an optional parameter for component details to which the SAP ABAP application is attached, such as Web Dispatcher.
|
|
130
137
|
:param credentials: The credentials of the SAP application.
|
|
131
138
|
:param database_arn: The Amazon Resource Name (ARN) of the database.
|
|
132
139
|
:param instances: The Amazon EC2 instances on which your SAP application is running.
|
|
@@ -141,6 +148,7 @@ class CfnApplication(
|
|
|
141
148
|
props = CfnApplicationProps(
|
|
142
149
|
application_id=application_id,
|
|
143
150
|
application_type=application_type,
|
|
151
|
+
components_info=components_info,
|
|
144
152
|
credentials=credentials,
|
|
145
153
|
database_arn=database_arn,
|
|
146
154
|
instances=instances,
|
|
@@ -227,6 +235,24 @@ class CfnApplication(
|
|
|
227
235
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
228
236
|
jsii.set(self, "applicationType", value) # pyright: ignore[reportArgumentType]
|
|
229
237
|
|
|
238
|
+
@builtins.property
|
|
239
|
+
@jsii.member(jsii_name="componentsInfo")
|
|
240
|
+
def components_info(
|
|
241
|
+
self,
|
|
242
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnApplication.ComponentInfoProperty"]]]]:
|
|
243
|
+
'''This is an optional parameter for component details to which the SAP ABAP application is attached, such as Web Dispatcher.'''
|
|
244
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnApplication.ComponentInfoProperty"]]]], jsii.get(self, "componentsInfo"))
|
|
245
|
+
|
|
246
|
+
@components_info.setter
|
|
247
|
+
def components_info(
|
|
248
|
+
self,
|
|
249
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnApplication.ComponentInfoProperty"]]]],
|
|
250
|
+
) -> None:
|
|
251
|
+
if __debug__:
|
|
252
|
+
type_hints = typing.get_type_hints(_typecheckingstub__2a90939925dbb220d73328e704914b8b8622262010f7b16d224d782fd843e8a3)
|
|
253
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
254
|
+
jsii.set(self, "componentsInfo", value) # pyright: ignore[reportArgumentType]
|
|
255
|
+
|
|
230
256
|
@builtins.property
|
|
231
257
|
@jsii.member(jsii_name="credentials")
|
|
232
258
|
def credentials(
|
|
@@ -310,6 +336,91 @@ class CfnApplication(
|
|
|
310
336
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
311
337
|
jsii.set(self, "tagsRaw", value) # pyright: ignore[reportArgumentType]
|
|
312
338
|
|
|
339
|
+
@jsii.data_type(
|
|
340
|
+
jsii_type="aws-cdk-lib.aws_systemsmanagersap.CfnApplication.ComponentInfoProperty",
|
|
341
|
+
jsii_struct_bases=[],
|
|
342
|
+
name_mapping={
|
|
343
|
+
"component_type": "componentType",
|
|
344
|
+
"ec2_instance_id": "ec2InstanceId",
|
|
345
|
+
"sid": "sid",
|
|
346
|
+
},
|
|
347
|
+
)
|
|
348
|
+
class ComponentInfoProperty:
|
|
349
|
+
def __init__(
|
|
350
|
+
self,
|
|
351
|
+
*,
|
|
352
|
+
component_type: typing.Optional[builtins.str] = None,
|
|
353
|
+
ec2_instance_id: typing.Optional[builtins.str] = None,
|
|
354
|
+
sid: typing.Optional[builtins.str] = None,
|
|
355
|
+
) -> None:
|
|
356
|
+
'''
|
|
357
|
+
:param component_type:
|
|
358
|
+
:param ec2_instance_id:
|
|
359
|
+
:param sid:
|
|
360
|
+
|
|
361
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-systemsmanagersap-application-componentinfo.html
|
|
362
|
+
:exampleMetadata: fixture=_generated
|
|
363
|
+
|
|
364
|
+
Example::
|
|
365
|
+
|
|
366
|
+
# The code below shows an example of how to instantiate this type.
|
|
367
|
+
# The values are placeholders you should change.
|
|
368
|
+
from aws_cdk import aws_systemsmanagersap as systemsmanagersap
|
|
369
|
+
|
|
370
|
+
component_info_property = systemsmanagersap.CfnApplication.ComponentInfoProperty(
|
|
371
|
+
component_type="componentType",
|
|
372
|
+
ec2_instance_id="ec2InstanceId",
|
|
373
|
+
sid="sid"
|
|
374
|
+
)
|
|
375
|
+
'''
|
|
376
|
+
if __debug__:
|
|
377
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1d49f9988316c0ff51fd56107927f5c7d63f756eab7f3d81bea3d009409a851d)
|
|
378
|
+
check_type(argname="argument component_type", value=component_type, expected_type=type_hints["component_type"])
|
|
379
|
+
check_type(argname="argument ec2_instance_id", value=ec2_instance_id, expected_type=type_hints["ec2_instance_id"])
|
|
380
|
+
check_type(argname="argument sid", value=sid, expected_type=type_hints["sid"])
|
|
381
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
382
|
+
if component_type is not None:
|
|
383
|
+
self._values["component_type"] = component_type
|
|
384
|
+
if ec2_instance_id is not None:
|
|
385
|
+
self._values["ec2_instance_id"] = ec2_instance_id
|
|
386
|
+
if sid is not None:
|
|
387
|
+
self._values["sid"] = sid
|
|
388
|
+
|
|
389
|
+
@builtins.property
|
|
390
|
+
def component_type(self) -> typing.Optional[builtins.str]:
|
|
391
|
+
'''
|
|
392
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-systemsmanagersap-application-componentinfo.html#cfn-systemsmanagersap-application-componentinfo-componenttype
|
|
393
|
+
'''
|
|
394
|
+
result = self._values.get("component_type")
|
|
395
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
396
|
+
|
|
397
|
+
@builtins.property
|
|
398
|
+
def ec2_instance_id(self) -> typing.Optional[builtins.str]:
|
|
399
|
+
'''
|
|
400
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-systemsmanagersap-application-componentinfo.html#cfn-systemsmanagersap-application-componentinfo-ec2instanceid
|
|
401
|
+
'''
|
|
402
|
+
result = self._values.get("ec2_instance_id")
|
|
403
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
404
|
+
|
|
405
|
+
@builtins.property
|
|
406
|
+
def sid(self) -> typing.Optional[builtins.str]:
|
|
407
|
+
'''
|
|
408
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-systemsmanagersap-application-componentinfo.html#cfn-systemsmanagersap-application-componentinfo-sid
|
|
409
|
+
'''
|
|
410
|
+
result = self._values.get("sid")
|
|
411
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
412
|
+
|
|
413
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
414
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
415
|
+
|
|
416
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
417
|
+
return not (rhs == self)
|
|
418
|
+
|
|
419
|
+
def __repr__(self) -> str:
|
|
420
|
+
return "ComponentInfoProperty(%s)" % ", ".join(
|
|
421
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
422
|
+
)
|
|
423
|
+
|
|
313
424
|
@jsii.data_type(
|
|
314
425
|
jsii_type="aws-cdk-lib.aws_systemsmanagersap.CfnApplication.CredentialProperty",
|
|
315
426
|
jsii_struct_bases=[],
|
|
@@ -406,6 +517,7 @@ class CfnApplication(
|
|
|
406
517
|
name_mapping={
|
|
407
518
|
"application_id": "applicationId",
|
|
408
519
|
"application_type": "applicationType",
|
|
520
|
+
"components_info": "componentsInfo",
|
|
409
521
|
"credentials": "credentials",
|
|
410
522
|
"database_arn": "databaseArn",
|
|
411
523
|
"instances": "instances",
|
|
@@ -420,6 +532,7 @@ class CfnApplicationProps:
|
|
|
420
532
|
*,
|
|
421
533
|
application_id: builtins.str,
|
|
422
534
|
application_type: builtins.str,
|
|
535
|
+
components_info: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnApplication.ComponentInfoProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
423
536
|
credentials: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnApplication.CredentialProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
424
537
|
database_arn: typing.Optional[builtins.str] = None,
|
|
425
538
|
instances: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -431,6 +544,7 @@ class CfnApplicationProps:
|
|
|
431
544
|
|
|
432
545
|
:param application_id: The ID of the application.
|
|
433
546
|
:param application_type: The type of the application.
|
|
547
|
+
:param components_info: This is an optional parameter for component details to which the SAP ABAP application is attached, such as Web Dispatcher.
|
|
434
548
|
:param credentials: The credentials of the SAP application.
|
|
435
549
|
:param database_arn: The Amazon Resource Name (ARN) of the database.
|
|
436
550
|
:param instances: The Amazon EC2 instances on which your SAP application is running.
|
|
@@ -452,6 +566,11 @@ class CfnApplicationProps:
|
|
|
452
566
|
application_type="applicationType",
|
|
453
567
|
|
|
454
568
|
# the properties below are optional
|
|
569
|
+
components_info=[systemsmanagersap.CfnApplication.ComponentInfoProperty(
|
|
570
|
+
component_type="componentType",
|
|
571
|
+
ec2_instance_id="ec2InstanceId",
|
|
572
|
+
sid="sid"
|
|
573
|
+
)],
|
|
455
574
|
credentials=[systemsmanagersap.CfnApplication.CredentialProperty(
|
|
456
575
|
credential_type="credentialType",
|
|
457
576
|
database_name="databaseName",
|
|
@@ -471,6 +590,7 @@ class CfnApplicationProps:
|
|
|
471
590
|
type_hints = typing.get_type_hints(_typecheckingstub__0a3a450935d6aacabad9991c3fdce7052d4392d63c713049280ff2a2a2615a38)
|
|
472
591
|
check_type(argname="argument application_id", value=application_id, expected_type=type_hints["application_id"])
|
|
473
592
|
check_type(argname="argument application_type", value=application_type, expected_type=type_hints["application_type"])
|
|
593
|
+
check_type(argname="argument components_info", value=components_info, expected_type=type_hints["components_info"])
|
|
474
594
|
check_type(argname="argument credentials", value=credentials, expected_type=type_hints["credentials"])
|
|
475
595
|
check_type(argname="argument database_arn", value=database_arn, expected_type=type_hints["database_arn"])
|
|
476
596
|
check_type(argname="argument instances", value=instances, expected_type=type_hints["instances"])
|
|
@@ -481,6 +601,8 @@ class CfnApplicationProps:
|
|
|
481
601
|
"application_id": application_id,
|
|
482
602
|
"application_type": application_type,
|
|
483
603
|
}
|
|
604
|
+
if components_info is not None:
|
|
605
|
+
self._values["components_info"] = components_info
|
|
484
606
|
if credentials is not None:
|
|
485
607
|
self._values["credentials"] = credentials
|
|
486
608
|
if database_arn is not None:
|
|
@@ -514,6 +636,17 @@ class CfnApplicationProps:
|
|
|
514
636
|
assert result is not None, "Required property 'application_type' is missing"
|
|
515
637
|
return typing.cast(builtins.str, result)
|
|
516
638
|
|
|
639
|
+
@builtins.property
|
|
640
|
+
def components_info(
|
|
641
|
+
self,
|
|
642
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnApplication.ComponentInfoProperty]]]]:
|
|
643
|
+
'''This is an optional parameter for component details to which the SAP ABAP application is attached, such as Web Dispatcher.
|
|
644
|
+
|
|
645
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-componentsinfo
|
|
646
|
+
'''
|
|
647
|
+
result = self._values.get("components_info")
|
|
648
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnApplication.ComponentInfoProperty]]]], result)
|
|
649
|
+
|
|
517
650
|
@builtins.property
|
|
518
651
|
def credentials(
|
|
519
652
|
self,
|
|
@@ -595,6 +728,7 @@ def _typecheckingstub__d9271c1fe4df837d944d62ed41ed4e1f7b01ee290ee0cedef450b7d3b
|
|
|
595
728
|
*,
|
|
596
729
|
application_id: builtins.str,
|
|
597
730
|
application_type: builtins.str,
|
|
731
|
+
components_info: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnApplication.ComponentInfoProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
598
732
|
credentials: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnApplication.CredentialProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
599
733
|
database_arn: typing.Optional[builtins.str] = None,
|
|
600
734
|
instances: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -629,6 +763,12 @@ def _typecheckingstub__c4b8f1dc3ab2cc2af53565165fea2e3a71b3636909d6590d329ac8b01
|
|
|
629
763
|
"""Type checking stubs"""
|
|
630
764
|
pass
|
|
631
765
|
|
|
766
|
+
def _typecheckingstub__2a90939925dbb220d73328e704914b8b8622262010f7b16d224d782fd843e8a3(
|
|
767
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnApplication.ComponentInfoProperty]]]],
|
|
768
|
+
) -> None:
|
|
769
|
+
"""Type checking stubs"""
|
|
770
|
+
pass
|
|
771
|
+
|
|
632
772
|
def _typecheckingstub__3d7fd4ddc7b1c5dd15b7872fe8002624e595dabcca134f126fb732c23e5149c6(
|
|
633
773
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnApplication.CredentialProperty]]]],
|
|
634
774
|
) -> None:
|
|
@@ -665,6 +805,15 @@ def _typecheckingstub__84a8afb3becf838692cd2e040ef53d955aba6f46033283c6fd2d80766
|
|
|
665
805
|
"""Type checking stubs"""
|
|
666
806
|
pass
|
|
667
807
|
|
|
808
|
+
def _typecheckingstub__1d49f9988316c0ff51fd56107927f5c7d63f756eab7f3d81bea3d009409a851d(
|
|
809
|
+
*,
|
|
810
|
+
component_type: typing.Optional[builtins.str] = None,
|
|
811
|
+
ec2_instance_id: typing.Optional[builtins.str] = None,
|
|
812
|
+
sid: typing.Optional[builtins.str] = None,
|
|
813
|
+
) -> None:
|
|
814
|
+
"""Type checking stubs"""
|
|
815
|
+
pass
|
|
816
|
+
|
|
668
817
|
def _typecheckingstub__209aa7feaf1ed6ac2bf183538ccbb7555a21c47880975dd9f9b002d73b1e7cbb(
|
|
669
818
|
*,
|
|
670
819
|
credential_type: typing.Optional[builtins.str] = None,
|
|
@@ -678,6 +827,7 @@ def _typecheckingstub__0a3a450935d6aacabad9991c3fdce7052d4392d63c713049280ff2a2a
|
|
|
678
827
|
*,
|
|
679
828
|
application_id: builtins.str,
|
|
680
829
|
application_type: builtins.str,
|
|
830
|
+
components_info: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnApplication.ComponentInfoProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
681
831
|
credentials: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnApplication.CredentialProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
682
832
|
database_arn: typing.Optional[builtins.str] = None,
|
|
683
833
|
instances: typing.Optional[typing.Sequence[builtins.str]] = None,
|