aws-cdk-lib 2.212.0__py3-none-any.whl → 2.214.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 +23 -3
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.212.0.jsii.tgz → aws-cdk-lib@2.214.0.jsii.tgz} +0 -0
- aws_cdk/aws_appconfig/__init__.py +18 -6
- aws_cdk/aws_appintegrations/__init__.py +4 -4
- aws_cdk/aws_apprunner/__init__.py +5 -8
- aws_cdk/aws_aps/__init__.py +243 -10
- aws_cdk/aws_b2bi/__init__.py +1015 -128
- aws_cdk/aws_batch/__init__.py +33 -11
- aws_cdk/aws_bedrock/__init__.py +22 -216
- aws_cdk/aws_budgets/__init__.py +18 -0
- aws_cdk/aws_certificatemanager/__init__.py +96 -15
- aws_cdk/aws_cloudformation/__init__.py +3 -3
- aws_cdk/aws_cloudwatch/__init__.py +80 -49
- aws_cdk/aws_cognito/__init__.py +76 -5
- aws_cdk/aws_connect/__init__.py +188 -2
- aws_cdk/aws_datazone/__init__.py +2267 -0
- aws_cdk/aws_deadline/__init__.py +6 -5
- aws_cdk/aws_dynamodb/__init__.py +418 -56
- aws_cdk/aws_ec2/__init__.py +51 -10
- aws_cdk/aws_ecs/__init__.py +288 -25
- aws_cdk/aws_ecs_patterns/__init__.py +2 -0
- aws_cdk/aws_eks/__init__.py +124 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +6 -2
- aws_cdk/aws_entityresolution/__init__.py +107 -0
- aws_cdk/aws_events/__init__.py +153 -55
- aws_cdk/aws_events_targets/__init__.py +87 -36
- aws_cdk/aws_fsx/__init__.py +62 -0
- aws_cdk/aws_gameliftstreams/__init__.py +1 -1
- aws_cdk/aws_glue/__init__.py +205 -23
- aws_cdk/aws_guardduty/__init__.py +205 -100
- aws_cdk/aws_iam/__init__.py +18 -0
- aws_cdk/aws_inspectorv2/__init__.py +125 -80
- aws_cdk/aws_iot/__init__.py +37 -19
- aws_cdk/aws_iotsitewise/__init__.py +111 -75
- aws_cdk/aws_ivs/__init__.py +17 -17
- aws_cdk/aws_kinesisanalytics/__init__.py +122 -3
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +122 -3
- aws_cdk/aws_lambda/__init__.py +23 -2
- aws_cdk/aws_logs/__init__.py +20 -15
- aws_cdk/aws_mediapackagev2/__init__.py +2 -2
- aws_cdk/aws_networkfirewall/__init__.py +6 -6
- aws_cdk/aws_omics/__init__.py +477 -2
- aws_cdk/aws_qbusiness/__init__.py +4 -2
- aws_cdk/aws_rds/__init__.py +132 -4
- aws_cdk/aws_route53/__init__.py +18 -11
- aws_cdk/aws_s3/__init__.py +4 -4
- aws_cdk/aws_s3_deployment/__init__.py +45 -0
- aws_cdk/aws_sagemaker/__init__.py +653 -0
- aws_cdk/aws_servicediscovery/__init__.py +22 -37
- aws_cdk/aws_sns/__init__.py +12 -2
- aws_cdk/aws_sns_subscriptions/__init__.py +3 -1
- aws_cdk/aws_sqs/__init__.py +5 -5
- aws_cdk/aws_ssm/__init__.py +8 -3
- aws_cdk/aws_ssmquicksetup/__init__.py +2 -2
- aws_cdk/aws_synthetics/__init__.py +222 -12
- aws_cdk/aws_transfer/__init__.py +15 -2
- aws_cdk/aws_vpclattice/__init__.py +41 -0
- aws_cdk/aws_workspacesweb/__init__.py +71 -41
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/RECORD +65 -65
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_connect/__init__.py
CHANGED
|
@@ -7358,6 +7358,11 @@ class CfnPredefinedAttribute(
|
|
|
7358
7358
|
name="name",
|
|
7359
7359
|
|
|
7360
7360
|
# the properties below are optional
|
|
7361
|
+
attribute_configuration=connect.CfnPredefinedAttribute.AttributeConfigurationProperty(
|
|
7362
|
+
enable_value_validation_on_association=False,
|
|
7363
|
+
is_read_only=False
|
|
7364
|
+
),
|
|
7365
|
+
purposes=["purposes"],
|
|
7361
7366
|
values=connect.CfnPredefinedAttribute.ValuesProperty(
|
|
7362
7367
|
string_list=["stringList"]
|
|
7363
7368
|
)
|
|
@@ -7371,6 +7376,8 @@ class CfnPredefinedAttribute(
|
|
|
7371
7376
|
*,
|
|
7372
7377
|
instance_arn: builtins.str,
|
|
7373
7378
|
name: builtins.str,
|
|
7379
|
+
attribute_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPredefinedAttribute.AttributeConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7380
|
+
purposes: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
7374
7381
|
values: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPredefinedAttribute.ValuesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7375
7382
|
) -> None:
|
|
7376
7383
|
'''
|
|
@@ -7378,6 +7385,8 @@ class CfnPredefinedAttribute(
|
|
|
7378
7385
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
7379
7386
|
:param instance_arn: The Amazon Resource Name (ARN) of the instance.
|
|
7380
7387
|
:param name: The name of the predefined attribute.
|
|
7388
|
+
:param attribute_configuration: Custom metadata associated to a Predefined attribute that controls how the attribute behaves when used by upstream services.
|
|
7389
|
+
:param purposes: The assigned purposes of the predefined attribute.
|
|
7381
7390
|
:param values: The values of a predefined attribute.
|
|
7382
7391
|
'''
|
|
7383
7392
|
if __debug__:
|
|
@@ -7385,7 +7394,11 @@ class CfnPredefinedAttribute(
|
|
|
7385
7394
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
7386
7395
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
7387
7396
|
props = CfnPredefinedAttributeProps(
|
|
7388
|
-
instance_arn=instance_arn,
|
|
7397
|
+
instance_arn=instance_arn,
|
|
7398
|
+
name=name,
|
|
7399
|
+
attribute_configuration=attribute_configuration,
|
|
7400
|
+
purposes=purposes,
|
|
7401
|
+
values=values,
|
|
7389
7402
|
)
|
|
7390
7403
|
|
|
7391
7404
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
@@ -7469,6 +7482,37 @@ class CfnPredefinedAttribute(
|
|
|
7469
7482
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
7470
7483
|
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
7471
7484
|
|
|
7485
|
+
@builtins.property
|
|
7486
|
+
@jsii.member(jsii_name="attributeConfiguration")
|
|
7487
|
+
def attribute_configuration(
|
|
7488
|
+
self,
|
|
7489
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPredefinedAttribute.AttributeConfigurationProperty"]]:
|
|
7490
|
+
'''Custom metadata associated to a Predefined attribute that controls how the attribute behaves when used by upstream services.'''
|
|
7491
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPredefinedAttribute.AttributeConfigurationProperty"]], jsii.get(self, "attributeConfiguration"))
|
|
7492
|
+
|
|
7493
|
+
@attribute_configuration.setter
|
|
7494
|
+
def attribute_configuration(
|
|
7495
|
+
self,
|
|
7496
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPredefinedAttribute.AttributeConfigurationProperty"]],
|
|
7497
|
+
) -> None:
|
|
7498
|
+
if __debug__:
|
|
7499
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a35185cbcad8cf64b09add2cb9a411bb5fb3931d6842d9f3fa81961530854cc3)
|
|
7500
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
7501
|
+
jsii.set(self, "attributeConfiguration", value) # pyright: ignore[reportArgumentType]
|
|
7502
|
+
|
|
7503
|
+
@builtins.property
|
|
7504
|
+
@jsii.member(jsii_name="purposes")
|
|
7505
|
+
def purposes(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
7506
|
+
'''The assigned purposes of the predefined attribute.'''
|
|
7507
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "purposes"))
|
|
7508
|
+
|
|
7509
|
+
@purposes.setter
|
|
7510
|
+
def purposes(self, value: typing.Optional[typing.List[builtins.str]]) -> None:
|
|
7511
|
+
if __debug__:
|
|
7512
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3fb80bfcdcc090748297325ceef4d8be4e1b929da48eb60f56de13f34de2eed4)
|
|
7513
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
7514
|
+
jsii.set(self, "purposes", value) # pyright: ignore[reportArgumentType]
|
|
7515
|
+
|
|
7472
7516
|
@builtins.property
|
|
7473
7517
|
@jsii.member(jsii_name="values")
|
|
7474
7518
|
def values(
|
|
@@ -7487,6 +7531,83 @@ class CfnPredefinedAttribute(
|
|
|
7487
7531
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
7488
7532
|
jsii.set(self, "values", value) # pyright: ignore[reportArgumentType]
|
|
7489
7533
|
|
|
7534
|
+
@jsii.data_type(
|
|
7535
|
+
jsii_type="aws-cdk-lib.aws_connect.CfnPredefinedAttribute.AttributeConfigurationProperty",
|
|
7536
|
+
jsii_struct_bases=[],
|
|
7537
|
+
name_mapping={
|
|
7538
|
+
"enable_value_validation_on_association": "enableValueValidationOnAssociation",
|
|
7539
|
+
"is_read_only": "isReadOnly",
|
|
7540
|
+
},
|
|
7541
|
+
)
|
|
7542
|
+
class AttributeConfigurationProperty:
|
|
7543
|
+
def __init__(
|
|
7544
|
+
self,
|
|
7545
|
+
*,
|
|
7546
|
+
enable_value_validation_on_association: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
7547
|
+
is_read_only: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
7548
|
+
) -> None:
|
|
7549
|
+
'''Custom metadata associated to a Predefined attribute that controls how the attribute behaves when used by upstream services.
|
|
7550
|
+
|
|
7551
|
+
:param enable_value_validation_on_association: Enables customers to enforce strict validation on the specific values that this predefined attribute can hold.
|
|
7552
|
+
:param is_read_only: Allows the predefined attribute to show up and be managed in the Amazon Connect UI.
|
|
7553
|
+
|
|
7554
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-predefinedattribute-attributeconfiguration.html
|
|
7555
|
+
:exampleMetadata: fixture=_generated
|
|
7556
|
+
|
|
7557
|
+
Example::
|
|
7558
|
+
|
|
7559
|
+
# The code below shows an example of how to instantiate this type.
|
|
7560
|
+
# The values are placeholders you should change.
|
|
7561
|
+
from aws_cdk import aws_connect as connect
|
|
7562
|
+
|
|
7563
|
+
attribute_configuration_property = connect.CfnPredefinedAttribute.AttributeConfigurationProperty(
|
|
7564
|
+
enable_value_validation_on_association=False,
|
|
7565
|
+
is_read_only=False
|
|
7566
|
+
)
|
|
7567
|
+
'''
|
|
7568
|
+
if __debug__:
|
|
7569
|
+
type_hints = typing.get_type_hints(_typecheckingstub__385cfd98db42d25fe48e00c5c705e3669910e19bcbddd5556f58d6acb0861afc)
|
|
7570
|
+
check_type(argname="argument enable_value_validation_on_association", value=enable_value_validation_on_association, expected_type=type_hints["enable_value_validation_on_association"])
|
|
7571
|
+
check_type(argname="argument is_read_only", value=is_read_only, expected_type=type_hints["is_read_only"])
|
|
7572
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
7573
|
+
if enable_value_validation_on_association is not None:
|
|
7574
|
+
self._values["enable_value_validation_on_association"] = enable_value_validation_on_association
|
|
7575
|
+
if is_read_only is not None:
|
|
7576
|
+
self._values["is_read_only"] = is_read_only
|
|
7577
|
+
|
|
7578
|
+
@builtins.property
|
|
7579
|
+
def enable_value_validation_on_association(
|
|
7580
|
+
self,
|
|
7581
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
7582
|
+
'''Enables customers to enforce strict validation on the specific values that this predefined attribute can hold.
|
|
7583
|
+
|
|
7584
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-predefinedattribute-attributeconfiguration.html#cfn-connect-predefinedattribute-attributeconfiguration-enablevaluevalidationonassociation
|
|
7585
|
+
'''
|
|
7586
|
+
result = self._values.get("enable_value_validation_on_association")
|
|
7587
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
7588
|
+
|
|
7589
|
+
@builtins.property
|
|
7590
|
+
def is_read_only(
|
|
7591
|
+
self,
|
|
7592
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
7593
|
+
'''Allows the predefined attribute to show up and be managed in the Amazon Connect UI.
|
|
7594
|
+
|
|
7595
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-predefinedattribute-attributeconfiguration.html#cfn-connect-predefinedattribute-attributeconfiguration-isreadonly
|
|
7596
|
+
'''
|
|
7597
|
+
result = self._values.get("is_read_only")
|
|
7598
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
7599
|
+
|
|
7600
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
7601
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
7602
|
+
|
|
7603
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
7604
|
+
return not (rhs == self)
|
|
7605
|
+
|
|
7606
|
+
def __repr__(self) -> str:
|
|
7607
|
+
return "AttributeConfigurationProperty(%s)" % ", ".join(
|
|
7608
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
7609
|
+
)
|
|
7610
|
+
|
|
7490
7611
|
@jsii.data_type(
|
|
7491
7612
|
jsii_type="aws-cdk-lib.aws_connect.CfnPredefinedAttribute.ValuesProperty",
|
|
7492
7613
|
jsii_struct_bases=[],
|
|
@@ -7546,7 +7667,13 @@ class CfnPredefinedAttribute(
|
|
|
7546
7667
|
@jsii.data_type(
|
|
7547
7668
|
jsii_type="aws-cdk-lib.aws_connect.CfnPredefinedAttributeProps",
|
|
7548
7669
|
jsii_struct_bases=[],
|
|
7549
|
-
name_mapping={
|
|
7670
|
+
name_mapping={
|
|
7671
|
+
"instance_arn": "instanceArn",
|
|
7672
|
+
"name": "name",
|
|
7673
|
+
"attribute_configuration": "attributeConfiguration",
|
|
7674
|
+
"purposes": "purposes",
|
|
7675
|
+
"values": "values",
|
|
7676
|
+
},
|
|
7550
7677
|
)
|
|
7551
7678
|
class CfnPredefinedAttributeProps:
|
|
7552
7679
|
def __init__(
|
|
@@ -7554,12 +7681,16 @@ class CfnPredefinedAttributeProps:
|
|
|
7554
7681
|
*,
|
|
7555
7682
|
instance_arn: builtins.str,
|
|
7556
7683
|
name: builtins.str,
|
|
7684
|
+
attribute_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPredefinedAttribute.AttributeConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7685
|
+
purposes: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
7557
7686
|
values: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPredefinedAttribute.ValuesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7558
7687
|
) -> None:
|
|
7559
7688
|
'''Properties for defining a ``CfnPredefinedAttribute``.
|
|
7560
7689
|
|
|
7561
7690
|
:param instance_arn: The Amazon Resource Name (ARN) of the instance.
|
|
7562
7691
|
:param name: The name of the predefined attribute.
|
|
7692
|
+
:param attribute_configuration: Custom metadata associated to a Predefined attribute that controls how the attribute behaves when used by upstream services.
|
|
7693
|
+
:param purposes: The assigned purposes of the predefined attribute.
|
|
7563
7694
|
:param values: The values of a predefined attribute.
|
|
7564
7695
|
|
|
7565
7696
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-predefinedattribute.html
|
|
@@ -7576,6 +7707,11 @@ class CfnPredefinedAttributeProps:
|
|
|
7576
7707
|
name="name",
|
|
7577
7708
|
|
|
7578
7709
|
# the properties below are optional
|
|
7710
|
+
attribute_configuration=connect.CfnPredefinedAttribute.AttributeConfigurationProperty(
|
|
7711
|
+
enable_value_validation_on_association=False,
|
|
7712
|
+
is_read_only=False
|
|
7713
|
+
),
|
|
7714
|
+
purposes=["purposes"],
|
|
7579
7715
|
values=connect.CfnPredefinedAttribute.ValuesProperty(
|
|
7580
7716
|
string_list=["stringList"]
|
|
7581
7717
|
)
|
|
@@ -7585,11 +7721,17 @@ class CfnPredefinedAttributeProps:
|
|
|
7585
7721
|
type_hints = typing.get_type_hints(_typecheckingstub__e67db40db23ebfe580f504576f3022c3cb9338c26c6aa02862725f1ecadacc4d)
|
|
7586
7722
|
check_type(argname="argument instance_arn", value=instance_arn, expected_type=type_hints["instance_arn"])
|
|
7587
7723
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
7724
|
+
check_type(argname="argument attribute_configuration", value=attribute_configuration, expected_type=type_hints["attribute_configuration"])
|
|
7725
|
+
check_type(argname="argument purposes", value=purposes, expected_type=type_hints["purposes"])
|
|
7588
7726
|
check_type(argname="argument values", value=values, expected_type=type_hints["values"])
|
|
7589
7727
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
7590
7728
|
"instance_arn": instance_arn,
|
|
7591
7729
|
"name": name,
|
|
7592
7730
|
}
|
|
7731
|
+
if attribute_configuration is not None:
|
|
7732
|
+
self._values["attribute_configuration"] = attribute_configuration
|
|
7733
|
+
if purposes is not None:
|
|
7734
|
+
self._values["purposes"] = purposes
|
|
7593
7735
|
if values is not None:
|
|
7594
7736
|
self._values["values"] = values
|
|
7595
7737
|
|
|
@@ -7613,6 +7755,26 @@ class CfnPredefinedAttributeProps:
|
|
|
7613
7755
|
assert result is not None, "Required property 'name' is missing"
|
|
7614
7756
|
return typing.cast(builtins.str, result)
|
|
7615
7757
|
|
|
7758
|
+
@builtins.property
|
|
7759
|
+
def attribute_configuration(
|
|
7760
|
+
self,
|
|
7761
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPredefinedAttribute.AttributeConfigurationProperty]]:
|
|
7762
|
+
'''Custom metadata associated to a Predefined attribute that controls how the attribute behaves when used by upstream services.
|
|
7763
|
+
|
|
7764
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-predefinedattribute.html#cfn-connect-predefinedattribute-attributeconfiguration
|
|
7765
|
+
'''
|
|
7766
|
+
result = self._values.get("attribute_configuration")
|
|
7767
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPredefinedAttribute.AttributeConfigurationProperty]], result)
|
|
7768
|
+
|
|
7769
|
+
@builtins.property
|
|
7770
|
+
def purposes(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
7771
|
+
'''The assigned purposes of the predefined attribute.
|
|
7772
|
+
|
|
7773
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-predefinedattribute.html#cfn-connect-predefinedattribute-purposes
|
|
7774
|
+
'''
|
|
7775
|
+
result = self._values.get("purposes")
|
|
7776
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
7777
|
+
|
|
7616
7778
|
@builtins.property
|
|
7617
7779
|
def values(
|
|
7618
7780
|
self,
|
|
@@ -17860,6 +18022,8 @@ def _typecheckingstub__aae8251f3c38f12791d918a121eabea35a0fd76a17fe96a45e59fab89
|
|
|
17860
18022
|
*,
|
|
17861
18023
|
instance_arn: builtins.str,
|
|
17862
18024
|
name: builtins.str,
|
|
18025
|
+
attribute_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPredefinedAttribute.AttributeConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18026
|
+
purposes: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
17863
18027
|
values: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPredefinedAttribute.ValuesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17864
18028
|
) -> None:
|
|
17865
18029
|
"""Type checking stubs"""
|
|
@@ -17889,12 +18053,32 @@ def _typecheckingstub__505c1fe18f355a3c8343fc74e29b578ea13ba483aa5951da1f12eba81
|
|
|
17889
18053
|
"""Type checking stubs"""
|
|
17890
18054
|
pass
|
|
17891
18055
|
|
|
18056
|
+
def _typecheckingstub__a35185cbcad8cf64b09add2cb9a411bb5fb3931d6842d9f3fa81961530854cc3(
|
|
18057
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPredefinedAttribute.AttributeConfigurationProperty]],
|
|
18058
|
+
) -> None:
|
|
18059
|
+
"""Type checking stubs"""
|
|
18060
|
+
pass
|
|
18061
|
+
|
|
18062
|
+
def _typecheckingstub__3fb80bfcdcc090748297325ceef4d8be4e1b929da48eb60f56de13f34de2eed4(
|
|
18063
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
18064
|
+
) -> None:
|
|
18065
|
+
"""Type checking stubs"""
|
|
18066
|
+
pass
|
|
18067
|
+
|
|
17892
18068
|
def _typecheckingstub__08003c8bd2407db8849ebc9b0c31a79805d1a0f97f0579e4ac977dfa6a2fd356(
|
|
17893
18069
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPredefinedAttribute.ValuesProperty]],
|
|
17894
18070
|
) -> None:
|
|
17895
18071
|
"""Type checking stubs"""
|
|
17896
18072
|
pass
|
|
17897
18073
|
|
|
18074
|
+
def _typecheckingstub__385cfd98db42d25fe48e00c5c705e3669910e19bcbddd5556f58d6acb0861afc(
|
|
18075
|
+
*,
|
|
18076
|
+
enable_value_validation_on_association: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
18077
|
+
is_read_only: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
18078
|
+
) -> None:
|
|
18079
|
+
"""Type checking stubs"""
|
|
18080
|
+
pass
|
|
18081
|
+
|
|
17898
18082
|
def _typecheckingstub__209d9d991e492e56e0ff65e3395c0553be43e6389f1d983bccebb7b1e86208f0(
|
|
17899
18083
|
*,
|
|
17900
18084
|
string_list: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -17906,6 +18090,8 @@ def _typecheckingstub__e67db40db23ebfe580f504576f3022c3cb9338c26c6aa02862725f1ec
|
|
|
17906
18090
|
*,
|
|
17907
18091
|
instance_arn: builtins.str,
|
|
17908
18092
|
name: builtins.str,
|
|
18093
|
+
attribute_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPredefinedAttribute.AttributeConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18094
|
+
purposes: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
17909
18095
|
values: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPredefinedAttribute.ValuesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17910
18096
|
) -> None:
|
|
17911
18097
|
"""Type checking stubs"""
|