aws-cdk-lib 2.202.0__py3-none-any.whl → 2.203.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +46 -47
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.202.0.jsii.tgz → aws-cdk-lib@2.203.1.jsii.tgz} +0 -0
- aws_cdk/aws_accessanalyzer/__init__.py +310 -4
- aws_cdk/aws_aiops/__init__.py +964 -0
- aws_cdk/aws_amplify/__init__.py +127 -0
- aws_cdk/aws_arczonalshift/__init__.py +8 -8
- aws_cdk/aws_b2bi/__init__.py +782 -3
- aws_cdk/aws_backup/__init__.py +22 -0
- aws_cdk/aws_batch/__init__.py +53 -1
- aws_cdk/aws_bedrock/__init__.py +123 -9
- aws_cdk/aws_cleanrooms/__init__.py +157 -154
- aws_cdk/aws_cloudformation/__init__.py +28 -28
- aws_cdk/aws_cloudfront/__init__.py +61 -18
- aws_cdk/aws_cloudfront/experimental/__init__.py +37 -3
- aws_cdk/aws_cloudwatch/__init__.py +228 -2
- aws_cdk/aws_connect/__init__.py +120 -8
- aws_cdk/aws_connectcampaignsv2/__init__.py +25 -4
- aws_cdk/aws_customerprofiles/__init__.py +140 -20
- aws_cdk/aws_datazone/__init__.py +23 -4
- aws_cdk/aws_deadline/__init__.py +4 -4
- aws_cdk/aws_dsql/__init__.py +148 -0
- aws_cdk/aws_ec2/__init__.py +159 -7
- aws_cdk/aws_ecr/__init__.py +3 -3
- aws_cdk/aws_ecs/__init__.py +48 -13
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +4 -2
- aws_cdk/aws_emrserverless/__init__.py +118 -0
- aws_cdk/aws_fsx/__init__.py +891 -0
- aws_cdk/aws_iam/__init__.py +8 -8
- aws_cdk/aws_inspectorv2/__init__.py +442 -3
- aws_cdk/aws_kendra/__init__.py +10 -5
- aws_cdk/aws_kms/__init__.py +14 -8
- aws_cdk/aws_lambda/__init__.py +191 -24
- aws_cdk/aws_lambda_nodejs/__init__.py +37 -3
- aws_cdk/aws_lex/__init__.py +703 -0
- aws_cdk/aws_logs/__init__.py +144 -0
- aws_cdk/aws_mediatailor/__init__.py +399 -0
- aws_cdk/aws_mpa/__init__.py +1475 -0
- aws_cdk/aws_networkfirewall/__init__.py +4 -2
- aws_cdk/aws_networkmanager/__init__.py +51 -3
- aws_cdk/aws_opsworkscm/__init__.py +44 -2
- aws_cdk/aws_rds/__init__.py +171 -41
- aws_cdk/aws_redshiftserverless/__init__.py +632 -0
- aws_cdk/aws_route53resolver/__init__.py +58 -10
- aws_cdk/aws_s3/__init__.py +3 -1
- aws_cdk/aws_s3tables/__init__.py +230 -0
- aws_cdk/aws_sagemaker/__init__.py +6 -2
- aws_cdk/aws_securityhub/__init__.py +2887 -56
- aws_cdk/aws_synthetics/__init__.py +21 -0
- aws_cdk/aws_vpclattice/__init__.py +6 -4
- aws_cdk/aws_wafv2/__init__.py +156 -51
- aws_cdk/aws_workspacesinstances/__init__.py +3243 -0
- aws_cdk/cloud_assembly_schema/__init__.py +200 -4
- aws_cdk/cx_api/__init__.py +15 -14
- aws_cdk/pipelines/__init__.py +31 -3
- aws_cdk/triggers/__init__.py +41 -4
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/METADATA +3 -3
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/RECORD +62 -59
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/top_level.txt +0 -0
aws_cdk/aws_connect/__init__.py
CHANGED
|
@@ -2043,6 +2043,9 @@ class CfnEvaluationForm(
|
|
|
2043
2043
|
title="title",
|
|
2044
2044
|
|
|
2045
2045
|
# the properties below are optional
|
|
2046
|
+
auto_evaluation_configuration=connect.CfnEvaluationForm.AutoEvaluationConfigurationProperty(
|
|
2047
|
+
enabled=False
|
|
2048
|
+
),
|
|
2046
2049
|
description="description",
|
|
2047
2050
|
scoring_strategy=connect.CfnEvaluationForm.ScoringStrategyProperty(
|
|
2048
2051
|
mode="mode",
|
|
@@ -2064,6 +2067,7 @@ class CfnEvaluationForm(
|
|
|
2064
2067
|
items: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnEvaluationForm.EvaluationFormBaseItemProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
2065
2068
|
status: builtins.str,
|
|
2066
2069
|
title: builtins.str,
|
|
2070
|
+
auto_evaluation_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnEvaluationForm.AutoEvaluationConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2067
2071
|
description: typing.Optional[builtins.str] = None,
|
|
2068
2072
|
scoring_strategy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnEvaluationForm.ScoringStrategyProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2069
2073
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -2075,6 +2079,7 @@ class CfnEvaluationForm(
|
|
|
2075
2079
|
:param items: Items that are part of the evaluation form. The total number of sections and questions must not exceed 100 each. Questions must be contained in a section. *Minimum size* : 1 *Maximum size* : 100
|
|
2076
2080
|
:param status: The status of the evaluation form. *Allowed values* : ``DRAFT`` | ``ACTIVE`` Default: - "DRAFT"
|
|
2077
2081
|
:param title: A title of the evaluation form.
|
|
2082
|
+
:param auto_evaluation_configuration:
|
|
2078
2083
|
:param description: The description of the evaluation form. *Length Constraints* : Minimum length of 0. Maximum length of 1024.
|
|
2079
2084
|
:param scoring_strategy: A scoring strategy of the evaluation form.
|
|
2080
2085
|
:param tags: The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
|
|
@@ -2088,6 +2093,7 @@ class CfnEvaluationForm(
|
|
|
2088
2093
|
items=items,
|
|
2089
2094
|
status=status,
|
|
2090
2095
|
title=title,
|
|
2096
|
+
auto_evaluation_configuration=auto_evaluation_configuration,
|
|
2091
2097
|
description=description,
|
|
2092
2098
|
scoring_strategy=scoring_strategy,
|
|
2093
2099
|
tags=tags,
|
|
@@ -2202,6 +2208,23 @@ class CfnEvaluationForm(
|
|
|
2202
2208
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2203
2209
|
jsii.set(self, "title", value) # pyright: ignore[reportArgumentType]
|
|
2204
2210
|
|
|
2211
|
+
@builtins.property
|
|
2212
|
+
@jsii.member(jsii_name="autoEvaluationConfiguration")
|
|
2213
|
+
def auto_evaluation_configuration(
|
|
2214
|
+
self,
|
|
2215
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnEvaluationForm.AutoEvaluationConfigurationProperty"]]:
|
|
2216
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnEvaluationForm.AutoEvaluationConfigurationProperty"]], jsii.get(self, "autoEvaluationConfiguration"))
|
|
2217
|
+
|
|
2218
|
+
@auto_evaluation_configuration.setter
|
|
2219
|
+
def auto_evaluation_configuration(
|
|
2220
|
+
self,
|
|
2221
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnEvaluationForm.AutoEvaluationConfigurationProperty"]],
|
|
2222
|
+
) -> None:
|
|
2223
|
+
if __debug__:
|
|
2224
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a08e1e02a066d51cb7c88cedc412ba13d32397cae46e7f033fd3cb7a16cb12a2)
|
|
2225
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2226
|
+
jsii.set(self, "autoEvaluationConfiguration", value) # pyright: ignore[reportArgumentType]
|
|
2227
|
+
|
|
2205
2228
|
@builtins.property
|
|
2206
2229
|
@jsii.member(jsii_name="description")
|
|
2207
2230
|
def description(self) -> typing.Optional[builtins.str]:
|
|
@@ -2246,6 +2269,62 @@ class CfnEvaluationForm(
|
|
|
2246
2269
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2247
2270
|
jsii.set(self, "tagsRaw", value) # pyright: ignore[reportArgumentType]
|
|
2248
2271
|
|
|
2272
|
+
@jsii.data_type(
|
|
2273
|
+
jsii_type="aws-cdk-lib.aws_connect.CfnEvaluationForm.AutoEvaluationConfigurationProperty",
|
|
2274
|
+
jsii_struct_bases=[],
|
|
2275
|
+
name_mapping={"enabled": "enabled"},
|
|
2276
|
+
)
|
|
2277
|
+
class AutoEvaluationConfigurationProperty:
|
|
2278
|
+
def __init__(
|
|
2279
|
+
self,
|
|
2280
|
+
*,
|
|
2281
|
+
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2282
|
+
) -> None:
|
|
2283
|
+
'''
|
|
2284
|
+
:param enabled: Auto Evaluation enablement status.
|
|
2285
|
+
|
|
2286
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-autoevaluationconfiguration.html
|
|
2287
|
+
:exampleMetadata: fixture=_generated
|
|
2288
|
+
|
|
2289
|
+
Example::
|
|
2290
|
+
|
|
2291
|
+
# The code below shows an example of how to instantiate this type.
|
|
2292
|
+
# The values are placeholders you should change.
|
|
2293
|
+
from aws_cdk import aws_connect as connect
|
|
2294
|
+
|
|
2295
|
+
auto_evaluation_configuration_property = connect.CfnEvaluationForm.AutoEvaluationConfigurationProperty(
|
|
2296
|
+
enabled=False
|
|
2297
|
+
)
|
|
2298
|
+
'''
|
|
2299
|
+
if __debug__:
|
|
2300
|
+
type_hints = typing.get_type_hints(_typecheckingstub__30b463f4300b968f0cb3373d8f901132b083c7d8934434bd6d53aa58b54107ea)
|
|
2301
|
+
check_type(argname="argument enabled", value=enabled, expected_type=type_hints["enabled"])
|
|
2302
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
2303
|
+
if enabled is not None:
|
|
2304
|
+
self._values["enabled"] = enabled
|
|
2305
|
+
|
|
2306
|
+
@builtins.property
|
|
2307
|
+
def enabled(
|
|
2308
|
+
self,
|
|
2309
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
2310
|
+
'''Auto Evaluation enablement status.
|
|
2311
|
+
|
|
2312
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-autoevaluationconfiguration.html#cfn-connect-evaluationform-autoevaluationconfiguration-enabled
|
|
2313
|
+
'''
|
|
2314
|
+
result = self._values.get("enabled")
|
|
2315
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
2316
|
+
|
|
2317
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2318
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2319
|
+
|
|
2320
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2321
|
+
return not (rhs == self)
|
|
2322
|
+
|
|
2323
|
+
def __repr__(self) -> str:
|
|
2324
|
+
return "AutoEvaluationConfigurationProperty(%s)" % ", ".join(
|
|
2325
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2326
|
+
)
|
|
2327
|
+
|
|
2249
2328
|
@jsii.data_type(
|
|
2250
2329
|
jsii_type="aws-cdk-lib.aws_connect.CfnEvaluationForm.EvaluationFormBaseItemProperty",
|
|
2251
2330
|
jsii_struct_bases=[],
|
|
@@ -2524,7 +2603,7 @@ class CfnEvaluationForm(
|
|
|
2524
2603
|
def __init__(
|
|
2525
2604
|
self,
|
|
2526
2605
|
*,
|
|
2527
|
-
property_value: typing.Union[_IResolvable_da3f097b, typing.Union["CfnEvaluationForm.NumericQuestionPropertyValueAutomationProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
2606
|
+
property_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnEvaluationForm.NumericQuestionPropertyValueAutomationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2528
2607
|
) -> None:
|
|
2529
2608
|
'''Information about the automation configuration in numeric questions.
|
|
2530
2609
|
|
|
@@ -2548,21 +2627,20 @@ class CfnEvaluationForm(
|
|
|
2548
2627
|
if __debug__:
|
|
2549
2628
|
type_hints = typing.get_type_hints(_typecheckingstub__b81afcd26ca2b7f7f360e53cfff837a4d204082391c2522686bc1415137d9bb0)
|
|
2550
2629
|
check_type(argname="argument property_value", value=property_value, expected_type=type_hints["property_value"])
|
|
2551
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2552
|
-
|
|
2553
|
-
|
|
2630
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
2631
|
+
if property_value is not None:
|
|
2632
|
+
self._values["property_value"] = property_value
|
|
2554
2633
|
|
|
2555
2634
|
@builtins.property
|
|
2556
2635
|
def property_value(
|
|
2557
2636
|
self,
|
|
2558
|
-
) -> typing.Union[_IResolvable_da3f097b, "CfnEvaluationForm.NumericQuestionPropertyValueAutomationProperty"]:
|
|
2637
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnEvaluationForm.NumericQuestionPropertyValueAutomationProperty"]]:
|
|
2559
2638
|
'''The property value of the automation.
|
|
2560
2639
|
|
|
2561
2640
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionautomation.html#cfn-connect-evaluationform-evaluationformnumericquestionautomation-propertyvalue
|
|
2562
2641
|
'''
|
|
2563
2642
|
result = self._values.get("property_value")
|
|
2564
|
-
|
|
2565
|
-
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnEvaluationForm.NumericQuestionPropertyValueAutomationProperty"], result)
|
|
2643
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnEvaluationForm.NumericQuestionPropertyValueAutomationProperty"]], result)
|
|
2566
2644
|
|
|
2567
2645
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2568
2646
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -3978,6 +4056,7 @@ class CfnEvaluationForm(
|
|
|
3978
4056
|
"items": "items",
|
|
3979
4057
|
"status": "status",
|
|
3980
4058
|
"title": "title",
|
|
4059
|
+
"auto_evaluation_configuration": "autoEvaluationConfiguration",
|
|
3981
4060
|
"description": "description",
|
|
3982
4061
|
"scoring_strategy": "scoringStrategy",
|
|
3983
4062
|
"tags": "tags",
|
|
@@ -3991,6 +4070,7 @@ class CfnEvaluationFormProps:
|
|
|
3991
4070
|
items: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEvaluationForm.EvaluationFormBaseItemProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
3992
4071
|
status: builtins.str,
|
|
3993
4072
|
title: builtins.str,
|
|
4073
|
+
auto_evaluation_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEvaluationForm.AutoEvaluationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3994
4074
|
description: typing.Optional[builtins.str] = None,
|
|
3995
4075
|
scoring_strategy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEvaluationForm.ScoringStrategyProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3996
4076
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -4001,6 +4081,7 @@ class CfnEvaluationFormProps:
|
|
|
4001
4081
|
:param items: Items that are part of the evaluation form. The total number of sections and questions must not exceed 100 each. Questions must be contained in a section. *Minimum size* : 1 *Maximum size* : 100
|
|
4002
4082
|
:param status: The status of the evaluation form. *Allowed values* : ``DRAFT`` | ``ACTIVE`` Default: - "DRAFT"
|
|
4003
4083
|
:param title: A title of the evaluation form.
|
|
4084
|
+
:param auto_evaluation_configuration:
|
|
4004
4085
|
:param description: The description of the evaluation form. *Length Constraints* : Minimum length of 0. Maximum length of 1024.
|
|
4005
4086
|
:param scoring_strategy: A scoring strategy of the evaluation form.
|
|
4006
4087
|
:param tags: The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
|
|
@@ -4091,6 +4172,9 @@ class CfnEvaluationFormProps:
|
|
|
4091
4172
|
title="title",
|
|
4092
4173
|
|
|
4093
4174
|
# the properties below are optional
|
|
4175
|
+
auto_evaluation_configuration=connect.CfnEvaluationForm.AutoEvaluationConfigurationProperty(
|
|
4176
|
+
enabled=False
|
|
4177
|
+
),
|
|
4094
4178
|
description="description",
|
|
4095
4179
|
scoring_strategy=connect.CfnEvaluationForm.ScoringStrategyProperty(
|
|
4096
4180
|
mode="mode",
|
|
@@ -4108,6 +4192,7 @@ class CfnEvaluationFormProps:
|
|
|
4108
4192
|
check_type(argname="argument items", value=items, expected_type=type_hints["items"])
|
|
4109
4193
|
check_type(argname="argument status", value=status, expected_type=type_hints["status"])
|
|
4110
4194
|
check_type(argname="argument title", value=title, expected_type=type_hints["title"])
|
|
4195
|
+
check_type(argname="argument auto_evaluation_configuration", value=auto_evaluation_configuration, expected_type=type_hints["auto_evaluation_configuration"])
|
|
4111
4196
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
4112
4197
|
check_type(argname="argument scoring_strategy", value=scoring_strategy, expected_type=type_hints["scoring_strategy"])
|
|
4113
4198
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
@@ -4117,6 +4202,8 @@ class CfnEvaluationFormProps:
|
|
|
4117
4202
|
"status": status,
|
|
4118
4203
|
"title": title,
|
|
4119
4204
|
}
|
|
4205
|
+
if auto_evaluation_configuration is not None:
|
|
4206
|
+
self._values["auto_evaluation_configuration"] = auto_evaluation_configuration
|
|
4120
4207
|
if description is not None:
|
|
4121
4208
|
self._values["description"] = description
|
|
4122
4209
|
if scoring_strategy is not None:
|
|
@@ -4176,6 +4263,16 @@ class CfnEvaluationFormProps:
|
|
|
4176
4263
|
assert result is not None, "Required property 'title' is missing"
|
|
4177
4264
|
return typing.cast(builtins.str, result)
|
|
4178
4265
|
|
|
4266
|
+
@builtins.property
|
|
4267
|
+
def auto_evaluation_configuration(
|
|
4268
|
+
self,
|
|
4269
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnEvaluationForm.AutoEvaluationConfigurationProperty]]:
|
|
4270
|
+
'''
|
|
4271
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-evaluationform.html#cfn-connect-evaluationform-autoevaluationconfiguration
|
|
4272
|
+
'''
|
|
4273
|
+
result = self._values.get("auto_evaluation_configuration")
|
|
4274
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnEvaluationForm.AutoEvaluationConfigurationProperty]], result)
|
|
4275
|
+
|
|
4179
4276
|
@builtins.property
|
|
4180
4277
|
def description(self) -> typing.Optional[builtins.str]:
|
|
4181
4278
|
'''The description of the evaluation form.
|
|
@@ -16947,6 +17044,7 @@ def _typecheckingstub__67672e07b9b284918b4f61d0c04df64749fd2f5f1f5a07e093b1e338f
|
|
|
16947
17044
|
items: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEvaluationForm.EvaluationFormBaseItemProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
16948
17045
|
status: builtins.str,
|
|
16949
17046
|
title: builtins.str,
|
|
17047
|
+
auto_evaluation_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEvaluationForm.AutoEvaluationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
16950
17048
|
description: typing.Optional[builtins.str] = None,
|
|
16951
17049
|
scoring_strategy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEvaluationForm.ScoringStrategyProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
16952
17050
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -16990,6 +17088,12 @@ def _typecheckingstub__5fe499614d5f5501fca8c029af605f671cdbfd45404bbcf2cb1dca048
|
|
|
16990
17088
|
"""Type checking stubs"""
|
|
16991
17089
|
pass
|
|
16992
17090
|
|
|
17091
|
+
def _typecheckingstub__a08e1e02a066d51cb7c88cedc412ba13d32397cae46e7f033fd3cb7a16cb12a2(
|
|
17092
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnEvaluationForm.AutoEvaluationConfigurationProperty]],
|
|
17093
|
+
) -> None:
|
|
17094
|
+
"""Type checking stubs"""
|
|
17095
|
+
pass
|
|
17096
|
+
|
|
16993
17097
|
def _typecheckingstub__9b9daef123f8c8ba72731239424846e3251f3e39a09700e6514170d316f71293(
|
|
16994
17098
|
value: typing.Optional[builtins.str],
|
|
16995
17099
|
) -> None:
|
|
@@ -17008,6 +17112,13 @@ def _typecheckingstub__ec087e4492b70f062d224ca25c2f0d81dc78704ad8d957b26ed60e8e6
|
|
|
17008
17112
|
"""Type checking stubs"""
|
|
17009
17113
|
pass
|
|
17010
17114
|
|
|
17115
|
+
def _typecheckingstub__30b463f4300b968f0cb3373d8f901132b083c7d8934434bd6d53aa58b54107ea(
|
|
17116
|
+
*,
|
|
17117
|
+
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
17118
|
+
) -> None:
|
|
17119
|
+
"""Type checking stubs"""
|
|
17120
|
+
pass
|
|
17121
|
+
|
|
17011
17122
|
def _typecheckingstub__5f23a880d7bbcb8fab0eba70189a52c3eb1d392f5651dc0f0a2fe54cf4df27d7(
|
|
17012
17123
|
*,
|
|
17013
17124
|
section: typing.Union[_IResolvable_da3f097b, typing.Union[CfnEvaluationForm.EvaluationFormSectionProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
@@ -17025,7 +17136,7 @@ def _typecheckingstub__1ed93558b58ad3642a506969313dd38d56ce0f003f808635135ccaf5c
|
|
|
17025
17136
|
|
|
17026
17137
|
def _typecheckingstub__b81afcd26ca2b7f7f360e53cfff837a4d204082391c2522686bc1415137d9bb0(
|
|
17027
17138
|
*,
|
|
17028
|
-
property_value: typing.Union[_IResolvable_da3f097b, typing.Union[CfnEvaluationForm.NumericQuestionPropertyValueAutomationProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
17139
|
+
property_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEvaluationForm.NumericQuestionPropertyValueAutomationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17029
17140
|
) -> None:
|
|
17030
17141
|
"""Type checking stubs"""
|
|
17031
17142
|
pass
|
|
@@ -17146,6 +17257,7 @@ def _typecheckingstub__b678e993288629444b4e1bc33b4631f7578a458c70203ec6ae7263a8a
|
|
|
17146
17257
|
items: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEvaluationForm.EvaluationFormBaseItemProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
17147
17258
|
status: builtins.str,
|
|
17148
17259
|
title: builtins.str,
|
|
17260
|
+
auto_evaluation_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEvaluationForm.AutoEvaluationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17149
17261
|
description: typing.Optional[builtins.str] = None,
|
|
17150
17262
|
scoring_strategy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEvaluationForm.ScoringStrategyProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17151
17263
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -172,7 +172,8 @@ class CfnCampaign(
|
|
|
172
172
|
max_count_per_recipient=123,
|
|
173
173
|
unit="unit"
|
|
174
174
|
)]
|
|
175
|
-
)
|
|
175
|
+
),
|
|
176
|
+
instance_limits_handling="instanceLimitsHandling"
|
|
176
177
|
),
|
|
177
178
|
communication_time_config=connectcampaignsv2.CfnCampaign.CommunicationTimeConfigProperty(
|
|
178
179
|
local_time_zone_config=connectcampaignsv2.CfnCampaign.LocalTimeZoneConfigProperty(
|
|
@@ -824,17 +825,22 @@ class CfnCampaign(
|
|
|
824
825
|
@jsii.data_type(
|
|
825
826
|
jsii_type="aws-cdk-lib.aws_connectcampaignsv2.CfnCampaign.CommunicationLimitsConfigProperty",
|
|
826
827
|
jsii_struct_bases=[],
|
|
827
|
-
name_mapping={
|
|
828
|
+
name_mapping={
|
|
829
|
+
"all_channels_subtypes": "allChannelsSubtypes",
|
|
830
|
+
"instance_limits_handling": "instanceLimitsHandling",
|
|
831
|
+
},
|
|
828
832
|
)
|
|
829
833
|
class CommunicationLimitsConfigProperty:
|
|
830
834
|
def __init__(
|
|
831
835
|
self,
|
|
832
836
|
*,
|
|
833
837
|
all_channels_subtypes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.CommunicationLimitsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
838
|
+
instance_limits_handling: typing.Optional[builtins.str] = None,
|
|
834
839
|
) -> None:
|
|
835
840
|
'''Contains the communication limits configuration for an outbound campaign.
|
|
836
841
|
|
|
837
842
|
:param all_channels_subtypes: The CommunicationLimits that apply to all channel subtypes defined in an outbound campaign.
|
|
843
|
+
:param instance_limits_handling: Opt-in or Opt-out from instance-level limits.
|
|
838
844
|
|
|
839
845
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimitsconfig.html
|
|
840
846
|
:exampleMetadata: fixture=_generated
|
|
@@ -852,15 +858,19 @@ class CfnCampaign(
|
|
|
852
858
|
max_count_per_recipient=123,
|
|
853
859
|
unit="unit"
|
|
854
860
|
)]
|
|
855
|
-
)
|
|
861
|
+
),
|
|
862
|
+
instance_limits_handling="instanceLimitsHandling"
|
|
856
863
|
)
|
|
857
864
|
'''
|
|
858
865
|
if __debug__:
|
|
859
866
|
type_hints = typing.get_type_hints(_typecheckingstub__5a5ca8627addc85a64908de980e86012a2ad9d04257fa86e81c4873e7a7d93be)
|
|
860
867
|
check_type(argname="argument all_channels_subtypes", value=all_channels_subtypes, expected_type=type_hints["all_channels_subtypes"])
|
|
868
|
+
check_type(argname="argument instance_limits_handling", value=instance_limits_handling, expected_type=type_hints["instance_limits_handling"])
|
|
861
869
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
862
870
|
if all_channels_subtypes is not None:
|
|
863
871
|
self._values["all_channels_subtypes"] = all_channels_subtypes
|
|
872
|
+
if instance_limits_handling is not None:
|
|
873
|
+
self._values["instance_limits_handling"] = instance_limits_handling
|
|
864
874
|
|
|
865
875
|
@builtins.property
|
|
866
876
|
def all_channels_subtypes(
|
|
@@ -873,6 +883,15 @@ class CfnCampaign(
|
|
|
873
883
|
result = self._values.get("all_channels_subtypes")
|
|
874
884
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.CommunicationLimitsProperty"]], result)
|
|
875
885
|
|
|
886
|
+
@builtins.property
|
|
887
|
+
def instance_limits_handling(self) -> typing.Optional[builtins.str]:
|
|
888
|
+
'''Opt-in or Opt-out from instance-level limits.
|
|
889
|
+
|
|
890
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimitsconfig.html#cfn-connectcampaignsv2-campaign-communicationlimitsconfig-instancelimitshandling
|
|
891
|
+
'''
|
|
892
|
+
result = self._values.get("instance_limits_handling")
|
|
893
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
894
|
+
|
|
876
895
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
877
896
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
878
897
|
|
|
@@ -2920,7 +2939,8 @@ class CfnCampaignProps:
|
|
|
2920
2939
|
max_count_per_recipient=123,
|
|
2921
2940
|
unit="unit"
|
|
2922
2941
|
)]
|
|
2923
|
-
)
|
|
2942
|
+
),
|
|
2943
|
+
instance_limits_handling="instanceLimitsHandling"
|
|
2924
2944
|
),
|
|
2925
2945
|
communication_time_config=connectcampaignsv2.CfnCampaign.CommunicationTimeConfigProperty(
|
|
2926
2946
|
local_time_zone_config=connectcampaignsv2.CfnCampaign.LocalTimeZoneConfigProperty(
|
|
@@ -3274,6 +3294,7 @@ def _typecheckingstub__7a4b2b207bce63b0696bef9d14a808bcf3bd9ae2746f645e72a803481
|
|
|
3274
3294
|
def _typecheckingstub__5a5ca8627addc85a64908de980e86012a2ad9d04257fa86e81c4873e7a7d93be(
|
|
3275
3295
|
*,
|
|
3276
3296
|
all_channels_subtypes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCampaign.CommunicationLimitsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3297
|
+
instance_limits_handling: typing.Optional[builtins.str] = None,
|
|
3277
3298
|
) -> None:
|
|
3278
3299
|
"""Type checking stubs"""
|
|
3279
3300
|
pass
|