aws-cdk-lib 2.215.0__py3-none-any.whl → 2.217.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 +90 -58
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.215.0.jsii.tgz → aws-cdk-lib@2.217.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +1 -1
- aws_cdk/aws_amplify/__init__.py +8 -8
- aws_cdk/aws_apigateway/__init__.py +26 -6
- aws_cdk/aws_apigatewayv2/__init__.py +32 -21
- aws_cdk/aws_appmesh/__init__.py +12 -12
- aws_cdk/aws_appstream/__init__.py +14 -4
- aws_cdk/aws_appsync/__init__.py +3 -3
- aws_cdk/aws_aps/__init__.py +459 -0
- aws_cdk/aws_batch/__init__.py +6 -2
- aws_cdk/aws_bedrock/__init__.py +162 -0
- aws_cdk/aws_bedrockagentcore/__init__.py +3178 -0
- aws_cdk/aws_certificatemanager/__init__.py +9 -10
- aws_cdk/aws_cleanrooms/__init__.py +163 -0
- aws_cdk/aws_cloudformation/__init__.py +14 -14
- aws_cdk/aws_cloudfront/__init__.py +91 -10
- aws_cdk/aws_cloudfront_origins/__init__.py +422 -47
- aws_cdk/aws_cognito/__init__.py +2 -2
- aws_cdk/aws_connect/__init__.py +138 -10
- aws_cdk/aws_cur/__init__.py +57 -3
- aws_cdk/aws_datasync/__init__.py +351 -0
- aws_cdk/aws_datazone/__init__.py +675 -2
- aws_cdk/aws_dynamodb/__init__.py +123 -0
- aws_cdk/aws_ec2/__init__.py +55 -10
- aws_cdk/aws_ecr/__init__.py +4 -0
- aws_cdk/aws_ecs/__init__.py +55 -12
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +275 -0
- aws_cdk/aws_elasticsearch/__init__.py +2 -2
- aws_cdk/aws_events/__init__.py +187 -0
- aws_cdk/aws_evs/__init__.py +58 -4
- aws_cdk/aws_gamelift/__init__.py +72 -56
- aws_cdk/aws_iam/__init__.py +1 -1
- aws_cdk/aws_iotcoredeviceadvisor/__init__.py +35 -38
- aws_cdk/aws_iotsitewise/__init__.py +75 -111
- aws_cdk/aws_kinesisanalytics/__init__.py +315 -125
- aws_cdk/aws_kms/__init__.py +10 -2
- aws_cdk/aws_lambda/__init__.py +62 -8
- aws_cdk/aws_medialive/__init__.py +127 -0
- aws_cdk/aws_mediapackage/__init__.py +2 -2
- aws_cdk/aws_networkfirewall/__init__.py +10 -10
- aws_cdk/aws_networkmanager/__init__.py +63 -0
- aws_cdk/aws_odb/__init__.py +2082 -195
- aws_cdk/aws_omics/__init__.py +1414 -171
- aws_cdk/aws_opensearchserverless/__init__.py +164 -21
- aws_cdk/aws_opensearchservice/__init__.py +5 -4
- aws_cdk/aws_pcs/__init__.py +9 -9
- aws_cdk/aws_quicksight/__init__.py +295 -3
- aws_cdk/aws_rds/__init__.py +338 -58
- aws_cdk/aws_route53/__init__.py +5926 -4376
- aws_cdk/aws_sagemaker/__init__.py +251 -1
- aws_cdk/aws_servicecatalog/__init__.py +162 -154
- aws_cdk/aws_smsvoice/__init__.py +5218 -0
- aws_cdk/aws_stepfunctions_tasks/__init__.py +669 -81
- aws_cdk/aws_transfer/__init__.py +13 -12
- aws_cdk/aws_verifiedpermissions/__init__.py +1 -1
- aws_cdk/aws_workspacesinstances/__init__.py +641 -2
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/RECORD +64 -62
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_cognito/__init__.py
CHANGED
|
@@ -22354,7 +22354,7 @@ class CfnUserPoolDomain(
|
|
|
22354
22354
|
) -> None:
|
|
22355
22355
|
'''The configuration for a hosted UI custom domain.
|
|
22356
22356
|
|
|
22357
|
-
:param certificate_arn: The Amazon Resource Name (ARN) of an
|
|
22357
|
+
:param certificate_arn: The Amazon Resource Name (ARN) of an Certificate Manager SSL certificate. You use this certificate for the subdomain of your custom domain.
|
|
22358
22358
|
|
|
22359
22359
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooldomain-customdomainconfigtype.html
|
|
22360
22360
|
:exampleMetadata: fixture=_generated
|
|
@@ -22378,7 +22378,7 @@ class CfnUserPoolDomain(
|
|
|
22378
22378
|
|
|
22379
22379
|
@builtins.property
|
|
22380
22380
|
def certificate_arn(self) -> typing.Optional[builtins.str]:
|
|
22381
|
-
'''The Amazon Resource Name (ARN) of an
|
|
22381
|
+
'''The Amazon Resource Name (ARN) of an Certificate Manager SSL certificate.
|
|
22382
22382
|
|
|
22383
22383
|
You use this certificate for the subdomain of your custom domain.
|
|
22384
22384
|
|
aws_cdk/aws_connect/__init__.py
CHANGED
|
@@ -2037,8 +2037,8 @@ class CfnPredefinedAttributeProps:
|
|
|
2037
2037
|
|
|
2038
2038
|
:param instance_arn: The Amazon Resource Name (ARN) of the instance.
|
|
2039
2039
|
:param name: The name of the predefined attribute.
|
|
2040
|
-
:param attribute_configuration: Custom metadata associated to
|
|
2041
|
-
:param purposes:
|
|
2040
|
+
:param attribute_configuration: Custom metadata that is associated to predefined attributes to control behavior in upstream services, such as controlling how a predefined attribute should be displayed in the Amazon Connect admin website.
|
|
2041
|
+
:param purposes: Values that enable you to categorize your predefined attributes. You can use them in custom UI elements across the Amazon Connect admin website.
|
|
2042
2042
|
:param values: The values of a predefined attribute.
|
|
2043
2043
|
|
|
2044
2044
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-predefinedattribute.html
|
|
@@ -2107,7 +2107,7 @@ class CfnPredefinedAttributeProps:
|
|
|
2107
2107
|
def attribute_configuration(
|
|
2108
2108
|
self,
|
|
2109
2109
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPredefinedAttribute.AttributeConfigurationProperty"]]:
|
|
2110
|
-
'''Custom metadata associated to
|
|
2110
|
+
'''Custom metadata that is associated to predefined attributes to control behavior in upstream services, such as controlling how a predefined attribute should be displayed in the Amazon Connect admin website.
|
|
2111
2111
|
|
|
2112
2112
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-predefinedattribute.html#cfn-connect-predefinedattribute-attributeconfiguration
|
|
2113
2113
|
'''
|
|
@@ -2116,7 +2116,9 @@ class CfnPredefinedAttributeProps:
|
|
|
2116
2116
|
|
|
2117
2117
|
@builtins.property
|
|
2118
2118
|
def purposes(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
2119
|
-
'''
|
|
2119
|
+
'''Values that enable you to categorize your predefined attributes.
|
|
2120
|
+
|
|
2121
|
+
You can use them in custom UI elements across the Amazon Connect admin website.
|
|
2120
2122
|
|
|
2121
2123
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-predefinedattribute.html#cfn-connect-predefinedattribute-purposes
|
|
2122
2124
|
'''
|
|
@@ -2655,6 +2657,7 @@ class CfnQuickConnectProps:
|
|
|
2655
2657
|
"media_concurrencies": "mediaConcurrencies",
|
|
2656
2658
|
"name": "name",
|
|
2657
2659
|
"agent_availability_timer": "agentAvailabilityTimer",
|
|
2660
|
+
"manual_assignment_queue_configs": "manualAssignmentQueueConfigs",
|
|
2658
2661
|
"queue_configs": "queueConfigs",
|
|
2659
2662
|
"tags": "tags",
|
|
2660
2663
|
},
|
|
@@ -2669,6 +2672,7 @@ class CfnRoutingProfileProps:
|
|
|
2669
2672
|
media_concurrencies: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnRoutingProfile.MediaConcurrencyProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
2670
2673
|
name: builtins.str,
|
|
2671
2674
|
agent_availability_timer: typing.Optional[builtins.str] = None,
|
|
2675
|
+
manual_assignment_queue_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2672
2676
|
queue_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnRoutingProfile.RoutingProfileQueueConfigProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2673
2677
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2674
2678
|
) -> None:
|
|
@@ -2680,6 +2684,7 @@ class CfnRoutingProfileProps:
|
|
|
2680
2684
|
:param media_concurrencies: The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.
|
|
2681
2685
|
:param name: The name of the routing profile.
|
|
2682
2686
|
:param agent_availability_timer: Whether agents with this routing profile will have their routing order calculated based on *time since their last inbound contact* or *longest idle time* .
|
|
2687
|
+
:param manual_assignment_queue_configs: The manual assignment queues to associate with this routing profile.
|
|
2683
2688
|
:param queue_configs: The inbound queues associated with the routing profile. If no queue is added, the agent can make only outbound calls.
|
|
2684
2689
|
:param tags: The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
|
2685
2690
|
|
|
@@ -2709,6 +2714,12 @@ class CfnRoutingProfileProps:
|
|
|
2709
2714
|
|
|
2710
2715
|
# the properties below are optional
|
|
2711
2716
|
agent_availability_timer="agentAvailabilityTimer",
|
|
2717
|
+
manual_assignment_queue_configs=[connect.CfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty(
|
|
2718
|
+
queue_reference=connect.CfnRoutingProfile.RoutingProfileQueueReferenceProperty(
|
|
2719
|
+
channel="channel",
|
|
2720
|
+
queue_arn="queueArn"
|
|
2721
|
+
)
|
|
2722
|
+
)],
|
|
2712
2723
|
queue_configs=[connect.CfnRoutingProfile.RoutingProfileQueueConfigProperty(
|
|
2713
2724
|
delay=123,
|
|
2714
2725
|
priority=123,
|
|
@@ -2731,6 +2742,7 @@ class CfnRoutingProfileProps:
|
|
|
2731
2742
|
check_type(argname="argument media_concurrencies", value=media_concurrencies, expected_type=type_hints["media_concurrencies"])
|
|
2732
2743
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
2733
2744
|
check_type(argname="argument agent_availability_timer", value=agent_availability_timer, expected_type=type_hints["agent_availability_timer"])
|
|
2745
|
+
check_type(argname="argument manual_assignment_queue_configs", value=manual_assignment_queue_configs, expected_type=type_hints["manual_assignment_queue_configs"])
|
|
2734
2746
|
check_type(argname="argument queue_configs", value=queue_configs, expected_type=type_hints["queue_configs"])
|
|
2735
2747
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
2736
2748
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
@@ -2742,6 +2754,8 @@ class CfnRoutingProfileProps:
|
|
|
2742
2754
|
}
|
|
2743
2755
|
if agent_availability_timer is not None:
|
|
2744
2756
|
self._values["agent_availability_timer"] = agent_availability_timer
|
|
2757
|
+
if manual_assignment_queue_configs is not None:
|
|
2758
|
+
self._values["manual_assignment_queue_configs"] = manual_assignment_queue_configs
|
|
2745
2759
|
if queue_configs is not None:
|
|
2746
2760
|
self._values["queue_configs"] = queue_configs
|
|
2747
2761
|
if tags is not None:
|
|
@@ -2808,6 +2822,17 @@ class CfnRoutingProfileProps:
|
|
|
2808
2822
|
result = self._values.get("agent_availability_timer")
|
|
2809
2823
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2810
2824
|
|
|
2825
|
+
@builtins.property
|
|
2826
|
+
def manual_assignment_queue_configs(
|
|
2827
|
+
self,
|
|
2828
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty"]]]]:
|
|
2829
|
+
'''The manual assignment queues to associate with this routing profile.
|
|
2830
|
+
|
|
2831
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-routingprofile.html#cfn-connect-routingprofile-manualassignmentqueueconfigs
|
|
2832
|
+
'''
|
|
2833
|
+
result = self._values.get("manual_assignment_queue_configs")
|
|
2834
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty"]]]], result)
|
|
2835
|
+
|
|
2811
2836
|
@builtins.property
|
|
2812
2837
|
def queue_configs(
|
|
2813
2838
|
self,
|
|
@@ -10623,7 +10648,7 @@ class CfnHoursOfOperation(
|
|
|
10623
10648
|
'''Information about the hours of operations override.
|
|
10624
10649
|
|
|
10625
10650
|
:param effective_from: The date from which the hours of operation override would be effective.
|
|
10626
|
-
:param effective_till: The date
|
|
10651
|
+
:param effective_till: The date until the hours of operation override is effective.
|
|
10627
10652
|
:param override_config: Configuration information for the hours of operation override: day, start time, and end time.
|
|
10628
10653
|
:param override_name: The name of the hours of operation override.
|
|
10629
10654
|
:param hours_of_operation_override_id: The identifier for the hours of operation override.
|
|
@@ -10690,7 +10715,7 @@ class CfnHoursOfOperation(
|
|
|
10690
10715
|
|
|
10691
10716
|
@builtins.property
|
|
10692
10717
|
def effective_till(self) -> builtins.str:
|
|
10693
|
-
'''The date
|
|
10718
|
+
'''The date until the hours of operation override is effective.
|
|
10694
10719
|
|
|
10695
10720
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationoverride.html#cfn-connect-hoursofoperation-hoursofoperationoverride-effectivetill
|
|
10696
10721
|
'''
|
|
@@ -12447,8 +12472,8 @@ class CfnPredefinedAttribute(
|
|
|
12447
12472
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
12448
12473
|
:param instance_arn: The Amazon Resource Name (ARN) of the instance.
|
|
12449
12474
|
:param name: The name of the predefined attribute.
|
|
12450
|
-
:param attribute_configuration: Custom metadata associated to
|
|
12451
|
-
:param purposes:
|
|
12475
|
+
:param attribute_configuration: Custom metadata that is associated to predefined attributes to control behavior in upstream services, such as controlling how a predefined attribute should be displayed in the Amazon Connect admin website.
|
|
12476
|
+
:param purposes: Values that enable you to categorize your predefined attributes. You can use them in custom UI elements across the Amazon Connect admin website.
|
|
12452
12477
|
:param values: The values of a predefined attribute.
|
|
12453
12478
|
'''
|
|
12454
12479
|
if __debug__:
|
|
@@ -12555,7 +12580,7 @@ class CfnPredefinedAttribute(
|
|
|
12555
12580
|
def attribute_configuration(
|
|
12556
12581
|
self,
|
|
12557
12582
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPredefinedAttribute.AttributeConfigurationProperty"]]:
|
|
12558
|
-
'''Custom metadata associated to
|
|
12583
|
+
'''Custom metadata that is associated to predefined attributes to control behavior in upstream services, such as controlling how a predefined attribute should be displayed in the Amazon Connect admin website.'''
|
|
12559
12584
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPredefinedAttribute.AttributeConfigurationProperty"]], jsii.get(self, "attributeConfiguration"))
|
|
12560
12585
|
|
|
12561
12586
|
@attribute_configuration.setter
|
|
@@ -12571,7 +12596,7 @@ class CfnPredefinedAttribute(
|
|
|
12571
12596
|
@builtins.property
|
|
12572
12597
|
@jsii.member(jsii_name="purposes")
|
|
12573
12598
|
def purposes(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
12574
|
-
'''
|
|
12599
|
+
'''Values that enable you to categorize your predefined attributes.'''
|
|
12575
12600
|
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "purposes"))
|
|
12576
12601
|
|
|
12577
12602
|
@purposes.setter
|
|
@@ -13951,6 +13976,12 @@ class CfnRoutingProfile(
|
|
|
13951
13976
|
|
|
13952
13977
|
# the properties below are optional
|
|
13953
13978
|
agent_availability_timer="agentAvailabilityTimer",
|
|
13979
|
+
manual_assignment_queue_configs=[connect.CfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty(
|
|
13980
|
+
queue_reference=connect.CfnRoutingProfile.RoutingProfileQueueReferenceProperty(
|
|
13981
|
+
channel="channel",
|
|
13982
|
+
queue_arn="queueArn"
|
|
13983
|
+
)
|
|
13984
|
+
)],
|
|
13954
13985
|
queue_configs=[connect.CfnRoutingProfile.RoutingProfileQueueConfigProperty(
|
|
13955
13986
|
delay=123,
|
|
13956
13987
|
priority=123,
|
|
@@ -13977,6 +14008,7 @@ class CfnRoutingProfile(
|
|
|
13977
14008
|
media_concurrencies: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnRoutingProfile.MediaConcurrencyProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
13978
14009
|
name: builtins.str,
|
|
13979
14010
|
agent_availability_timer: typing.Optional[builtins.str] = None,
|
|
14011
|
+
manual_assignment_queue_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
13980
14012
|
queue_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnRoutingProfile.RoutingProfileQueueConfigProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
13981
14013
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
13982
14014
|
) -> None:
|
|
@@ -13989,6 +14021,7 @@ class CfnRoutingProfile(
|
|
|
13989
14021
|
:param media_concurrencies: The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.
|
|
13990
14022
|
:param name: The name of the routing profile.
|
|
13991
14023
|
:param agent_availability_timer: Whether agents with this routing profile will have their routing order calculated based on *time since their last inbound contact* or *longest idle time* .
|
|
14024
|
+
:param manual_assignment_queue_configs: The manual assignment queues to associate with this routing profile.
|
|
13992
14025
|
:param queue_configs: The inbound queues associated with the routing profile. If no queue is added, the agent can make only outbound calls.
|
|
13993
14026
|
:param tags: The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
|
13994
14027
|
'''
|
|
@@ -14003,6 +14036,7 @@ class CfnRoutingProfile(
|
|
|
14003
14036
|
media_concurrencies=media_concurrencies,
|
|
14004
14037
|
name=name,
|
|
14005
14038
|
agent_availability_timer=agent_availability_timer,
|
|
14039
|
+
manual_assignment_queue_configs=manual_assignment_queue_configs,
|
|
14006
14040
|
queue_configs=queue_configs,
|
|
14007
14041
|
tags=tags,
|
|
14008
14042
|
)
|
|
@@ -14148,6 +14182,24 @@ class CfnRoutingProfile(
|
|
|
14148
14182
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
14149
14183
|
jsii.set(self, "agentAvailabilityTimer", value) # pyright: ignore[reportArgumentType]
|
|
14150
14184
|
|
|
14185
|
+
@builtins.property
|
|
14186
|
+
@jsii.member(jsii_name="manualAssignmentQueueConfigs")
|
|
14187
|
+
def manual_assignment_queue_configs(
|
|
14188
|
+
self,
|
|
14189
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty"]]]]:
|
|
14190
|
+
'''The manual assignment queues to associate with this routing profile.'''
|
|
14191
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty"]]]], jsii.get(self, "manualAssignmentQueueConfigs"))
|
|
14192
|
+
|
|
14193
|
+
@manual_assignment_queue_configs.setter
|
|
14194
|
+
def manual_assignment_queue_configs(
|
|
14195
|
+
self,
|
|
14196
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty"]]]],
|
|
14197
|
+
) -> None:
|
|
14198
|
+
if __debug__:
|
|
14199
|
+
type_hints = typing.get_type_hints(_typecheckingstub__09c417924d45d3886a694f2e5caaf47e0684df9643866e06b6a7aab6a2a50849)
|
|
14200
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
14201
|
+
jsii.set(self, "manualAssignmentQueueConfigs", value) # pyright: ignore[reportArgumentType]
|
|
14202
|
+
|
|
14151
14203
|
@builtins.property
|
|
14152
14204
|
@jsii.member(jsii_name="queueConfigs")
|
|
14153
14205
|
def queue_configs(
|
|
@@ -14335,6 +14387,67 @@ class CfnRoutingProfile(
|
|
|
14335
14387
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
14336
14388
|
)
|
|
14337
14389
|
|
|
14390
|
+
@jsii.data_type(
|
|
14391
|
+
jsii_type="aws-cdk-lib.aws_connect.CfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty",
|
|
14392
|
+
jsii_struct_bases=[],
|
|
14393
|
+
name_mapping={"queue_reference": "queueReference"},
|
|
14394
|
+
)
|
|
14395
|
+
class RoutingProfileManualAssignmentQueueConfigProperty:
|
|
14396
|
+
def __init__(
|
|
14397
|
+
self,
|
|
14398
|
+
*,
|
|
14399
|
+
queue_reference: typing.Union[_IResolvable_da3f097b, typing.Union["CfnRoutingProfile.RoutingProfileQueueReferenceProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
14400
|
+
) -> None:
|
|
14401
|
+
'''Contains information about the manual assignment queue and channel.
|
|
14402
|
+
|
|
14403
|
+
:param queue_reference: Contains the channel and queue identifier for a routing profile.
|
|
14404
|
+
|
|
14405
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-routingprofile-routingprofilemanualassignmentqueueconfig.html
|
|
14406
|
+
:exampleMetadata: fixture=_generated
|
|
14407
|
+
|
|
14408
|
+
Example::
|
|
14409
|
+
|
|
14410
|
+
# The code below shows an example of how to instantiate this type.
|
|
14411
|
+
# The values are placeholders you should change.
|
|
14412
|
+
from aws_cdk import aws_connect as connect
|
|
14413
|
+
|
|
14414
|
+
routing_profile_manual_assignment_queue_config_property = connect.CfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty(
|
|
14415
|
+
queue_reference=connect.CfnRoutingProfile.RoutingProfileQueueReferenceProperty(
|
|
14416
|
+
channel="channel",
|
|
14417
|
+
queue_arn="queueArn"
|
|
14418
|
+
)
|
|
14419
|
+
)
|
|
14420
|
+
'''
|
|
14421
|
+
if __debug__:
|
|
14422
|
+
type_hints = typing.get_type_hints(_typecheckingstub__26afadec6b0e131a6a22ba0a9b6b159af4190ae7fd0c58a9a59d144fb9253157)
|
|
14423
|
+
check_type(argname="argument queue_reference", value=queue_reference, expected_type=type_hints["queue_reference"])
|
|
14424
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
14425
|
+
"queue_reference": queue_reference,
|
|
14426
|
+
}
|
|
14427
|
+
|
|
14428
|
+
@builtins.property
|
|
14429
|
+
def queue_reference(
|
|
14430
|
+
self,
|
|
14431
|
+
) -> typing.Union[_IResolvable_da3f097b, "CfnRoutingProfile.RoutingProfileQueueReferenceProperty"]:
|
|
14432
|
+
'''Contains the channel and queue identifier for a routing profile.
|
|
14433
|
+
|
|
14434
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-routingprofile-routingprofilemanualassignmentqueueconfig.html#cfn-connect-routingprofile-routingprofilemanualassignmentqueueconfig-queuereference
|
|
14435
|
+
'''
|
|
14436
|
+
result = self._values.get("queue_reference")
|
|
14437
|
+
assert result is not None, "Required property 'queue_reference' is missing"
|
|
14438
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnRoutingProfile.RoutingProfileQueueReferenceProperty"], result)
|
|
14439
|
+
|
|
14440
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
14441
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
14442
|
+
|
|
14443
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
14444
|
+
return not (rhs == self)
|
|
14445
|
+
|
|
14446
|
+
def __repr__(self) -> str:
|
|
14447
|
+
return "RoutingProfileManualAssignmentQueueConfigProperty(%s)" % ", ".join(
|
|
14448
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
14449
|
+
)
|
|
14450
|
+
|
|
14338
14451
|
@jsii.data_type(
|
|
14339
14452
|
jsii_type="aws-cdk-lib.aws_connect.CfnRoutingProfile.RoutingProfileQueueConfigProperty",
|
|
14340
14453
|
jsii_struct_bases=[],
|
|
@@ -19889,6 +20002,7 @@ def _typecheckingstub__c352ac5c14b7a76c3094c7e1595be9aaa093440801508c4780610a6d2
|
|
|
19889
20002
|
media_concurrencies: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnRoutingProfile.MediaConcurrencyProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
19890
20003
|
name: builtins.str,
|
|
19891
20004
|
agent_availability_timer: typing.Optional[builtins.str] = None,
|
|
20005
|
+
manual_assignment_queue_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
19892
20006
|
queue_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnRoutingProfile.RoutingProfileQueueConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
19893
20007
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
19894
20008
|
) -> None:
|
|
@@ -21477,6 +21591,7 @@ def _typecheckingstub__ca1360ef7fc87b491018629ca5fc6a3c13fcbdd97e4a14461038caf03
|
|
|
21477
21591
|
media_concurrencies: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnRoutingProfile.MediaConcurrencyProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
21478
21592
|
name: builtins.str,
|
|
21479
21593
|
agent_availability_timer: typing.Optional[builtins.str] = None,
|
|
21594
|
+
manual_assignment_queue_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
21480
21595
|
queue_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnRoutingProfile.RoutingProfileQueueConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
21481
21596
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
21482
21597
|
) -> None:
|
|
@@ -21531,6 +21646,12 @@ def _typecheckingstub__d19931b4ff72cc897b92c5bddb17158eb5a7dd2de0061c85498c43c4b
|
|
|
21531
21646
|
"""Type checking stubs"""
|
|
21532
21647
|
pass
|
|
21533
21648
|
|
|
21649
|
+
def _typecheckingstub__09c417924d45d3886a694f2e5caaf47e0684df9643866e06b6a7aab6a2a50849(
|
|
21650
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty]]]],
|
|
21651
|
+
) -> None:
|
|
21652
|
+
"""Type checking stubs"""
|
|
21653
|
+
pass
|
|
21654
|
+
|
|
21534
21655
|
def _typecheckingstub__59e5612a464f7993fc5802b7496378e9f43c22ddbfdd66a4769b7dd34e2ad014(
|
|
21535
21656
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnRoutingProfile.RoutingProfileQueueConfigProperty]]]],
|
|
21536
21657
|
) -> None:
|
|
@@ -21559,6 +21680,13 @@ def _typecheckingstub__c169890f0c9845b73f64645c0d362ee0a7e26614d464148fd2a80b600
|
|
|
21559
21680
|
"""Type checking stubs"""
|
|
21560
21681
|
pass
|
|
21561
21682
|
|
|
21683
|
+
def _typecheckingstub__26afadec6b0e131a6a22ba0a9b6b159af4190ae7fd0c58a9a59d144fb9253157(
|
|
21684
|
+
*,
|
|
21685
|
+
queue_reference: typing.Union[_IResolvable_da3f097b, typing.Union[CfnRoutingProfile.RoutingProfileQueueReferenceProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
21686
|
+
) -> None:
|
|
21687
|
+
"""Type checking stubs"""
|
|
21688
|
+
pass
|
|
21689
|
+
|
|
21562
21690
|
def _typecheckingstub__032843b9e197335b76e0e3de0555493b80a1e7b395828aefda71c8150ea0a063(
|
|
21563
21691
|
*,
|
|
21564
21692
|
delay: jsii.Number,
|
aws_cdk/aws_cur/__init__.py
CHANGED
|
@@ -60,8 +60,11 @@ from .._jsii import *
|
|
|
60
60
|
import constructs as _constructs_77d1e7e8
|
|
61
61
|
from .. import (
|
|
62
62
|
CfnResource as _CfnResource_9df397a6,
|
|
63
|
+
CfnTag as _CfnTag_f6864754,
|
|
63
64
|
IInspectable as _IInspectable_c2943556,
|
|
64
65
|
IResolvable as _IResolvable_da3f097b,
|
|
66
|
+
ITaggableV2 as _ITaggableV2_4e6798f8,
|
|
67
|
+
TagManager as _TagManager_0a598cb3,
|
|
65
68
|
TreeInspector as _TreeInspector_488e0dd5,
|
|
66
69
|
)
|
|
67
70
|
|
|
@@ -82,6 +85,7 @@ from .. import (
|
|
|
82
85
|
"additional_artifacts": "additionalArtifacts",
|
|
83
86
|
"additional_schema_elements": "additionalSchemaElements",
|
|
84
87
|
"billing_view_arn": "billingViewArn",
|
|
88
|
+
"tags": "tags",
|
|
85
89
|
},
|
|
86
90
|
)
|
|
87
91
|
class CfnReportDefinitionProps:
|
|
@@ -100,6 +104,7 @@ class CfnReportDefinitionProps:
|
|
|
100
104
|
additional_artifacts: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
101
105
|
additional_schema_elements: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
102
106
|
billing_view_arn: typing.Optional[builtins.str] = None,
|
|
107
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
103
108
|
) -> None:
|
|
104
109
|
'''Properties for defining a ``CfnReportDefinition``.
|
|
105
110
|
|
|
@@ -115,6 +120,7 @@ class CfnReportDefinitionProps:
|
|
|
115
120
|
:param additional_artifacts: A list of manifests that you want AWS to create for this report.
|
|
116
121
|
:param additional_schema_elements: A list of strings that indicate additional content that AWS includes in the report, such as individual resource IDs.
|
|
117
122
|
:param billing_view_arn: The Amazon Resource Name (ARN) of the billing view. You can get this value by using the billing view service public APIs.
|
|
123
|
+
:param tags:
|
|
118
124
|
|
|
119
125
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cur-reportdefinition.html
|
|
120
126
|
:exampleMetadata: fixture=_generated
|
|
@@ -139,7 +145,11 @@ class CfnReportDefinitionProps:
|
|
|
139
145
|
# the properties below are optional
|
|
140
146
|
additional_artifacts=["additionalArtifacts"],
|
|
141
147
|
additional_schema_elements=["additionalSchemaElements"],
|
|
142
|
-
billing_view_arn="billingViewArn"
|
|
148
|
+
billing_view_arn="billingViewArn",
|
|
149
|
+
tags=[CfnTag(
|
|
150
|
+
key="key",
|
|
151
|
+
value="value"
|
|
152
|
+
)]
|
|
143
153
|
)
|
|
144
154
|
'''
|
|
145
155
|
if __debug__:
|
|
@@ -156,6 +166,7 @@ class CfnReportDefinitionProps:
|
|
|
156
166
|
check_type(argname="argument additional_artifacts", value=additional_artifacts, expected_type=type_hints["additional_artifacts"])
|
|
157
167
|
check_type(argname="argument additional_schema_elements", value=additional_schema_elements, expected_type=type_hints["additional_schema_elements"])
|
|
158
168
|
check_type(argname="argument billing_view_arn", value=billing_view_arn, expected_type=type_hints["billing_view_arn"])
|
|
169
|
+
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
159
170
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
160
171
|
"compression": compression,
|
|
161
172
|
"format": format,
|
|
@@ -173,6 +184,8 @@ class CfnReportDefinitionProps:
|
|
|
173
184
|
self._values["additional_schema_elements"] = additional_schema_elements
|
|
174
185
|
if billing_view_arn is not None:
|
|
175
186
|
self._values["billing_view_arn"] = billing_view_arn
|
|
187
|
+
if tags is not None:
|
|
188
|
+
self._values["tags"] = tags
|
|
176
189
|
|
|
177
190
|
@builtins.property
|
|
178
191
|
def compression(self) -> builtins.str:
|
|
@@ -301,6 +314,14 @@ class CfnReportDefinitionProps:
|
|
|
301
314
|
result = self._values.get("billing_view_arn")
|
|
302
315
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
303
316
|
|
|
317
|
+
@builtins.property
|
|
318
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
319
|
+
'''
|
|
320
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cur-reportdefinition.html#cfn-cur-reportdefinition-tags
|
|
321
|
+
'''
|
|
322
|
+
result = self._values.get("tags")
|
|
323
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
|
|
324
|
+
|
|
304
325
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
305
326
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
306
327
|
|
|
@@ -402,7 +423,7 @@ class ReportDefinitionReference:
|
|
|
402
423
|
)
|
|
403
424
|
|
|
404
425
|
|
|
405
|
-
@jsii.implements(_IInspectable_c2943556, IReportDefinitionRef)
|
|
426
|
+
@jsii.implements(_IInspectable_c2943556, IReportDefinitionRef, _ITaggableV2_4e6798f8)
|
|
406
427
|
class CfnReportDefinition(
|
|
407
428
|
_CfnResource_9df397a6,
|
|
408
429
|
metaclass=jsii.JSIIMeta,
|
|
@@ -436,7 +457,11 @@ class CfnReportDefinition(
|
|
|
436
457
|
# the properties below are optional
|
|
437
458
|
additional_artifacts=["additionalArtifacts"],
|
|
438
459
|
additional_schema_elements=["additionalSchemaElements"],
|
|
439
|
-
billing_view_arn="billingViewArn"
|
|
460
|
+
billing_view_arn="billingViewArn",
|
|
461
|
+
tags=[CfnTag(
|
|
462
|
+
key="key",
|
|
463
|
+
value="value"
|
|
464
|
+
)]
|
|
440
465
|
)
|
|
441
466
|
'''
|
|
442
467
|
|
|
@@ -457,6 +482,7 @@ class CfnReportDefinition(
|
|
|
457
482
|
additional_artifacts: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
458
483
|
additional_schema_elements: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
459
484
|
billing_view_arn: typing.Optional[builtins.str] = None,
|
|
485
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
460
486
|
) -> None:
|
|
461
487
|
'''
|
|
462
488
|
:param scope: Scope in which this resource is defined.
|
|
@@ -473,6 +499,7 @@ class CfnReportDefinition(
|
|
|
473
499
|
:param additional_artifacts: A list of manifests that you want AWS to create for this report.
|
|
474
500
|
:param additional_schema_elements: A list of strings that indicate additional content that AWS includes in the report, such as individual resource IDs.
|
|
475
501
|
:param billing_view_arn: The Amazon Resource Name (ARN) of the billing view. You can get this value by using the billing view service public APIs.
|
|
502
|
+
:param tags:
|
|
476
503
|
'''
|
|
477
504
|
if __debug__:
|
|
478
505
|
type_hints = typing.get_type_hints(_typecheckingstub__fa6a90098f39859b607fa8b8453bf94b62703cdf41682ff1f90c565abdedbb57)
|
|
@@ -491,6 +518,7 @@ class CfnReportDefinition(
|
|
|
491
518
|
additional_artifacts=additional_artifacts,
|
|
492
519
|
additional_schema_elements=additional_schema_elements,
|
|
493
520
|
billing_view_arn=billing_view_arn,
|
|
521
|
+
tags=tags,
|
|
494
522
|
)
|
|
495
523
|
|
|
496
524
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
@@ -525,6 +553,12 @@ class CfnReportDefinition(
|
|
|
525
553
|
'''The CloudFormation resource type name for this resource class.'''
|
|
526
554
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
527
555
|
|
|
556
|
+
@builtins.property
|
|
557
|
+
@jsii.member(jsii_name="cdkTagManager")
|
|
558
|
+
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
559
|
+
'''Tag Manager which manages the tags for this resource.'''
|
|
560
|
+
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
|
|
561
|
+
|
|
528
562
|
@builtins.property
|
|
529
563
|
@jsii.member(jsii_name="cfnProperties")
|
|
530
564
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -703,6 +737,18 @@ class CfnReportDefinition(
|
|
|
703
737
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
704
738
|
jsii.set(self, "billingViewArn", value) # pyright: ignore[reportArgumentType]
|
|
705
739
|
|
|
740
|
+
@builtins.property
|
|
741
|
+
@jsii.member(jsii_name="tags")
|
|
742
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
743
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
744
|
+
|
|
745
|
+
@tags.setter
|
|
746
|
+
def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
|
|
747
|
+
if __debug__:
|
|
748
|
+
type_hints = typing.get_type_hints(_typecheckingstub__2c3a6bd4b3d8e5bf2caff9ee149924611c25e8417d8ee48a520417fd900c1f71)
|
|
749
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
750
|
+
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
751
|
+
|
|
706
752
|
|
|
707
753
|
__all__ = [
|
|
708
754
|
"CfnReportDefinition",
|
|
@@ -727,6 +773,7 @@ def _typecheckingstub__8cc3d7babce4dfa37a62fc4d0d9b1b67c9fdccfaa09ca549a32d3aab0
|
|
|
727
773
|
additional_artifacts: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
728
774
|
additional_schema_elements: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
729
775
|
billing_view_arn: typing.Optional[builtins.str] = None,
|
|
776
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
730
777
|
) -> None:
|
|
731
778
|
"""Type checking stubs"""
|
|
732
779
|
pass
|
|
@@ -754,6 +801,7 @@ def _typecheckingstub__fa6a90098f39859b607fa8b8453bf94b62703cdf41682ff1f90c565ab
|
|
|
754
801
|
additional_artifacts: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
755
802
|
additional_schema_elements: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
756
803
|
billing_view_arn: typing.Optional[builtins.str] = None,
|
|
804
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
757
805
|
) -> None:
|
|
758
806
|
"""Type checking stubs"""
|
|
759
807
|
pass
|
|
@@ -841,3 +889,9 @@ def _typecheckingstub__ebad8351aece0a3ddcb05b9d4f522316d4c0fa1aeef4e8017b839b424
|
|
|
841
889
|
) -> None:
|
|
842
890
|
"""Type checking stubs"""
|
|
843
891
|
pass
|
|
892
|
+
|
|
893
|
+
def _typecheckingstub__2c3a6bd4b3d8e5bf2caff9ee149924611c25e8417d8ee48a520417fd900c1f71(
|
|
894
|
+
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
895
|
+
) -> None:
|
|
896
|
+
"""Type checking stubs"""
|
|
897
|
+
pass
|