aws-cdk-lib 2.171.1__py3-none-any.whl → 2.173.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 +528 -161
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.171.1.jsii.tgz → aws-cdk-lib@2.173.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +40 -40
- aws_cdk/aws_apigateway/__init__.py +1357 -120
- aws_cdk/aws_applicationautoscaling/__init__.py +141 -66
- aws_cdk/aws_appsync/__init__.py +163 -139
- aws_cdk/aws_autoscaling/__init__.py +96 -30
- aws_cdk/aws_bedrock/__init__.py +80 -44
- aws_cdk/aws_chatbot/__init__.py +803 -2
- aws_cdk/aws_cleanrooms/__init__.py +4 -6
- aws_cdk/aws_cloudformation/__init__.py +240 -159
- aws_cdk/aws_cloudfront/__init__.py +15 -7
- aws_cdk/aws_cloudtrail/__init__.py +802 -13
- aws_cdk/aws_cloudwatch/__init__.py +51 -14
- aws_cdk/aws_codebuild/__init__.py +39 -0
- aws_cdk/aws_codepipeline/__init__.py +4 -4
- aws_cdk/aws_cognito/__init__.py +1032 -43
- aws_cdk/aws_config/__init__.py +13 -10
- aws_cdk/aws_connect/__init__.py +454 -23
- aws_cdk/aws_connectcampaignsv2/__init__.py +187 -176
- aws_cdk/aws_customerprofiles/__init__.py +3148 -0
- aws_cdk/aws_docdb/__init__.py +128 -0
- aws_cdk/aws_dynamodb/__init__.py +256 -0
- aws_cdk/aws_ec2/__init__.py +976 -27
- aws_cdk/aws_ecs/__init__.py +37 -20
- aws_cdk/aws_eks/__init__.py +771 -0
- aws_cdk/aws_elasticache/__init__.py +22 -22
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +441 -177
- aws_cdk/aws_events/__init__.py +550 -30
- aws_cdk/aws_fsx/__init__.py +134 -10
- aws_cdk/aws_imagebuilder/__init__.py +8 -8
- aws_cdk/aws_invoicing/__init__.py +651 -0
- aws_cdk/aws_iot/__init__.py +70 -26
- aws_cdk/aws_iotfleetwise/__init__.py +1033 -382
- aws_cdk/aws_iotsitewise/__init__.py +158 -0
- aws_cdk/aws_ivs/__init__.py +43 -31
- aws_cdk/aws_kendra/__init__.py +4 -0
- aws_cdk/aws_lakeformation/__init__.py +2 -1
- aws_cdk/aws_lambda/__init__.py +272 -164
- aws_cdk/aws_lambda_event_sources/__init__.py +2 -1
- aws_cdk/aws_lambda_nodejs/__init__.py +11 -11
- aws_cdk/aws_logs/__init__.py +532 -0
- aws_cdk/aws_m2/__init__.py +289 -0
- aws_cdk/aws_mediaconnect/__init__.py +24 -14
- aws_cdk/aws_medialive/__init__.py +2359 -5
- aws_cdk/aws_mediapackage/__init__.py +3 -9
- aws_cdk/aws_mediapackagev2/__init__.py +19 -17
- aws_cdk/aws_memorydb/__init__.py +664 -4
- aws_cdk/aws_mwaa/__init__.py +6 -6
- aws_cdk/aws_opensearchserverless/__init__.py +249 -1
- aws_cdk/aws_pipes/__init__.py +14 -30
- aws_cdk/aws_qbusiness/__init__.py +2021 -67
- aws_cdk/aws_quicksight/__init__.py +8270 -10
- aws_cdk/aws_rbin/__init__.py +53 -34
- aws_cdk/aws_rds/__init__.py +170 -8
- aws_cdk/aws_resourcegroups/__init__.py +362 -4
- aws_cdk/aws_route53/__init__.py +1177 -10
- aws_cdk/aws_route53_targets/__init__.py +297 -91
- aws_cdk/aws_route53resolver/__init__.py +19 -8
- aws_cdk/aws_s3/__init__.py +4 -4
- aws_cdk/aws_s3express/__init__.py +421 -9
- aws_cdk/aws_sagemaker/__init__.py +905 -119
- aws_cdk/aws_secretsmanager/__init__.py +20 -6
- aws_cdk/aws_securityhub/__init__.py +64 -32
- aws_cdk/aws_servicediscovery/__init__.py +43 -0
- aws_cdk/aws_ses/__init__.py +188 -41
- aws_cdk/aws_stepfunctions_tasks/__init__.py +190 -35
- aws_cdk/aws_synthetics/__init__.py +7 -5
- aws_cdk/aws_vpclattice/__init__.py +1479 -122
- aws_cdk/aws_wisdom/__init__.py +8509 -1502
- aws_cdk/aws_workspacesweb/__init__.py +1081 -0
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.173.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.173.0.dist-info}/RECORD +78 -77
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.173.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.173.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.173.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.173.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_connect/__init__.py
CHANGED
|
@@ -1433,7 +1433,9 @@ class CfnEmailAddress(
|
|
|
1433
1433
|
metaclass=jsii.JSIIMeta,
|
|
1434
1434
|
jsii_type="aws-cdk-lib.aws_connect.CfnEmailAddress",
|
|
1435
1435
|
):
|
|
1436
|
-
'''
|
|
1436
|
+
'''Create new email address in the specified Amazon Connect instance.
|
|
1437
|
+
|
|
1438
|
+
For more information about email addresses, see `Create email addresses <https://docs.aws.amazon.com/connect/latest/adminguide/create-email-address1.html>`_ in the Amazon Connect Administrator Guide.
|
|
1437
1439
|
|
|
1438
1440
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html
|
|
1439
1441
|
:cloudformationResource: AWS::Connect::EmailAddress
|
|
@@ -1473,10 +1475,10 @@ class CfnEmailAddress(
|
|
|
1473
1475
|
'''
|
|
1474
1476
|
:param scope: Scope in which this resource is defined.
|
|
1475
1477
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
1476
|
-
:param email_address:
|
|
1477
|
-
:param instance_arn: The
|
|
1478
|
-
:param description:
|
|
1479
|
-
:param display_name: The display name
|
|
1478
|
+
:param email_address: The email address with the instance, in [^\\s@]+@[^\\s@]+.[^\\s@]+ format.
|
|
1479
|
+
:param instance_arn: The Amazon Resource Name (ARN) of the instance.
|
|
1480
|
+
:param description: The description of the email address.
|
|
1481
|
+
:param display_name: The display name of email address.
|
|
1480
1482
|
:param tags: One or more tags.
|
|
1481
1483
|
'''
|
|
1482
1484
|
if __debug__:
|
|
@@ -1526,7 +1528,7 @@ class CfnEmailAddress(
|
|
|
1526
1528
|
@builtins.property
|
|
1527
1529
|
@jsii.member(jsii_name="attrEmailAddressArn")
|
|
1528
1530
|
def attr_email_address_arn(self) -> builtins.str:
|
|
1529
|
-
'''The
|
|
1531
|
+
'''The Amazon Resource Name (ARN) of the email address.
|
|
1530
1532
|
|
|
1531
1533
|
:cloudformationAttribute: EmailAddressArn
|
|
1532
1534
|
'''
|
|
@@ -1546,7 +1548,7 @@ class CfnEmailAddress(
|
|
|
1546
1548
|
@builtins.property
|
|
1547
1549
|
@jsii.member(jsii_name="emailAddress")
|
|
1548
1550
|
def email_address(self) -> builtins.str:
|
|
1549
|
-
'''
|
|
1551
|
+
'''The email address with the instance, in [^\\s@]+@[^\\s@]+.[^\\s@]+ format.'''
|
|
1550
1552
|
return typing.cast(builtins.str, jsii.get(self, "emailAddress"))
|
|
1551
1553
|
|
|
1552
1554
|
@email_address.setter
|
|
@@ -1559,7 +1561,7 @@ class CfnEmailAddress(
|
|
|
1559
1561
|
@builtins.property
|
|
1560
1562
|
@jsii.member(jsii_name="instanceArn")
|
|
1561
1563
|
def instance_arn(self) -> builtins.str:
|
|
1562
|
-
'''The
|
|
1564
|
+
'''The Amazon Resource Name (ARN) of the instance.'''
|
|
1563
1565
|
return typing.cast(builtins.str, jsii.get(self, "instanceArn"))
|
|
1564
1566
|
|
|
1565
1567
|
@instance_arn.setter
|
|
@@ -1572,7 +1574,7 @@ class CfnEmailAddress(
|
|
|
1572
1574
|
@builtins.property
|
|
1573
1575
|
@jsii.member(jsii_name="description")
|
|
1574
1576
|
def description(self) -> typing.Optional[builtins.str]:
|
|
1575
|
-
'''
|
|
1577
|
+
'''The description of the email address.'''
|
|
1576
1578
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
1577
1579
|
|
|
1578
1580
|
@description.setter
|
|
@@ -1585,7 +1587,7 @@ class CfnEmailAddress(
|
|
|
1585
1587
|
@builtins.property
|
|
1586
1588
|
@jsii.member(jsii_name="displayName")
|
|
1587
1589
|
def display_name(self) -> typing.Optional[builtins.str]:
|
|
1588
|
-
'''The display name
|
|
1590
|
+
'''The display name of email address.'''
|
|
1589
1591
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "displayName"))
|
|
1590
1592
|
|
|
1591
1593
|
@display_name.setter
|
|
@@ -1632,10 +1634,10 @@ class CfnEmailAddressProps:
|
|
|
1632
1634
|
) -> None:
|
|
1633
1635
|
'''Properties for defining a ``CfnEmailAddress``.
|
|
1634
1636
|
|
|
1635
|
-
:param email_address:
|
|
1636
|
-
:param instance_arn: The
|
|
1637
|
-
:param description:
|
|
1638
|
-
:param display_name: The display name
|
|
1637
|
+
:param email_address: The email address with the instance, in [^\\s@]+@[^\\s@]+.[^\\s@]+ format.
|
|
1638
|
+
:param instance_arn: The Amazon Resource Name (ARN) of the instance.
|
|
1639
|
+
:param description: The description of the email address.
|
|
1640
|
+
:param display_name: The display name of email address.
|
|
1639
1641
|
:param tags: One or more tags.
|
|
1640
1642
|
|
|
1641
1643
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html
|
|
@@ -1680,7 +1682,7 @@ class CfnEmailAddressProps:
|
|
|
1680
1682
|
|
|
1681
1683
|
@builtins.property
|
|
1682
1684
|
def email_address(self) -> builtins.str:
|
|
1683
|
-
'''
|
|
1685
|
+
'''The email address with the instance, in [^\\s@]+@[^\\s@]+.[^\\s@]+ format.
|
|
1684
1686
|
|
|
1685
1687
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html#cfn-connect-emailaddress-emailaddress
|
|
1686
1688
|
'''
|
|
@@ -1690,7 +1692,7 @@ class CfnEmailAddressProps:
|
|
|
1690
1692
|
|
|
1691
1693
|
@builtins.property
|
|
1692
1694
|
def instance_arn(self) -> builtins.str:
|
|
1693
|
-
'''The
|
|
1695
|
+
'''The Amazon Resource Name (ARN) of the instance.
|
|
1694
1696
|
|
|
1695
1697
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html#cfn-connect-emailaddress-instancearn
|
|
1696
1698
|
'''
|
|
@@ -1700,7 +1702,7 @@ class CfnEmailAddressProps:
|
|
|
1700
1702
|
|
|
1701
1703
|
@builtins.property
|
|
1702
1704
|
def description(self) -> typing.Optional[builtins.str]:
|
|
1703
|
-
'''
|
|
1705
|
+
'''The description of the email address.
|
|
1704
1706
|
|
|
1705
1707
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html#cfn-connect-emailaddress-description
|
|
1706
1708
|
'''
|
|
@@ -1709,7 +1711,7 @@ class CfnEmailAddressProps:
|
|
|
1709
1711
|
|
|
1710
1712
|
@builtins.property
|
|
1711
1713
|
def display_name(self) -> typing.Optional[builtins.str]:
|
|
1712
|
-
'''The display name
|
|
1714
|
+
'''The display name of email address.
|
|
1713
1715
|
|
|
1714
1716
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html#cfn-connect-emailaddress-displayname
|
|
1715
1717
|
'''
|
|
@@ -4046,6 +4048,26 @@ class CfnHoursOfOperation(
|
|
|
4046
4048
|
|
|
4047
4049
|
# the properties below are optional
|
|
4048
4050
|
description="description",
|
|
4051
|
+
hours_of_operation_overrides=[connect.CfnHoursOfOperation.HoursOfOperationOverrideProperty(
|
|
4052
|
+
effective_from="effectiveFrom",
|
|
4053
|
+
effective_till="effectiveTill",
|
|
4054
|
+
override_config=[connect.CfnHoursOfOperation.HoursOfOperationOverrideConfigProperty(
|
|
4055
|
+
day="day",
|
|
4056
|
+
end_time=connect.CfnHoursOfOperation.OverrideTimeSliceProperty(
|
|
4057
|
+
hours=123,
|
|
4058
|
+
minutes=123
|
|
4059
|
+
),
|
|
4060
|
+
start_time=connect.CfnHoursOfOperation.OverrideTimeSliceProperty(
|
|
4061
|
+
hours=123,
|
|
4062
|
+
minutes=123
|
|
4063
|
+
)
|
|
4064
|
+
)],
|
|
4065
|
+
override_name="overrideName",
|
|
4066
|
+
|
|
4067
|
+
# the properties below are optional
|
|
4068
|
+
hours_of_operation_override_id="hoursOfOperationOverrideId",
|
|
4069
|
+
override_description="overrideDescription"
|
|
4070
|
+
)],
|
|
4049
4071
|
tags=[CfnTag(
|
|
4050
4072
|
key="key",
|
|
4051
4073
|
value="value"
|
|
@@ -4063,6 +4085,7 @@ class CfnHoursOfOperation(
|
|
|
4063
4085
|
name: builtins.str,
|
|
4064
4086
|
time_zone: builtins.str,
|
|
4065
4087
|
description: typing.Optional[builtins.str] = None,
|
|
4088
|
+
hours_of_operation_overrides: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnHoursOfOperation.HoursOfOperationOverrideProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
4066
4089
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4067
4090
|
) -> None:
|
|
4068
4091
|
'''
|
|
@@ -4073,6 +4096,7 @@ class CfnHoursOfOperation(
|
|
|
4073
4096
|
:param name: The name for the hours of operation.
|
|
4074
4097
|
:param time_zone: The time zone for the hours of operation.
|
|
4075
4098
|
:param description: The description for the hours of operation.
|
|
4099
|
+
:param hours_of_operation_overrides: One or more hours of operation overrides assigned to an hour of operation.
|
|
4076
4100
|
:param tags: The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
|
4077
4101
|
'''
|
|
4078
4102
|
if __debug__:
|
|
@@ -4085,6 +4109,7 @@ class CfnHoursOfOperation(
|
|
|
4085
4109
|
name=name,
|
|
4086
4110
|
time_zone=time_zone,
|
|
4087
4111
|
description=description,
|
|
4112
|
+
hours_of_operation_overrides=hours_of_operation_overrides,
|
|
4088
4113
|
tags=tags,
|
|
4089
4114
|
)
|
|
4090
4115
|
|
|
@@ -4210,6 +4235,24 @@ class CfnHoursOfOperation(
|
|
|
4210
4235
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4211
4236
|
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
4212
4237
|
|
|
4238
|
+
@builtins.property
|
|
4239
|
+
@jsii.member(jsii_name="hoursOfOperationOverrides")
|
|
4240
|
+
def hours_of_operation_overrides(
|
|
4241
|
+
self,
|
|
4242
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnHoursOfOperation.HoursOfOperationOverrideProperty"]]]]:
|
|
4243
|
+
'''One or more hours of operation overrides assigned to an hour of operation.'''
|
|
4244
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnHoursOfOperation.HoursOfOperationOverrideProperty"]]]], jsii.get(self, "hoursOfOperationOverrides"))
|
|
4245
|
+
|
|
4246
|
+
@hours_of_operation_overrides.setter
|
|
4247
|
+
def hours_of_operation_overrides(
|
|
4248
|
+
self,
|
|
4249
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnHoursOfOperation.HoursOfOperationOverrideProperty"]]]],
|
|
4250
|
+
) -> None:
|
|
4251
|
+
if __debug__:
|
|
4252
|
+
type_hints = typing.get_type_hints(_typecheckingstub__aac2ad464f2908529fe7a982324e9d2212d9f0ba0ee88e3970e04f1d51655caa)
|
|
4253
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4254
|
+
jsii.set(self, "hoursOfOperationOverrides", value) # pyright: ignore[reportArgumentType]
|
|
4255
|
+
|
|
4213
4256
|
@builtins.property
|
|
4214
4257
|
@jsii.member(jsii_name="tagsRaw")
|
|
4215
4258
|
def tags_raw(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
@@ -4319,6 +4362,254 @@ class CfnHoursOfOperation(
|
|
|
4319
4362
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
4320
4363
|
)
|
|
4321
4364
|
|
|
4365
|
+
@jsii.data_type(
|
|
4366
|
+
jsii_type="aws-cdk-lib.aws_connect.CfnHoursOfOperation.HoursOfOperationOverrideConfigProperty",
|
|
4367
|
+
jsii_struct_bases=[],
|
|
4368
|
+
name_mapping={"day": "day", "end_time": "endTime", "start_time": "startTime"},
|
|
4369
|
+
)
|
|
4370
|
+
class HoursOfOperationOverrideConfigProperty:
|
|
4371
|
+
def __init__(
|
|
4372
|
+
self,
|
|
4373
|
+
*,
|
|
4374
|
+
day: builtins.str,
|
|
4375
|
+
end_time: typing.Union[_IResolvable_da3f097b, typing.Union["CfnHoursOfOperation.OverrideTimeSliceProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
4376
|
+
start_time: typing.Union[_IResolvable_da3f097b, typing.Union["CfnHoursOfOperation.OverrideTimeSliceProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
4377
|
+
) -> None:
|
|
4378
|
+
'''Contains information about the hours of operation override.
|
|
4379
|
+
|
|
4380
|
+
:param day: The day that the hours of operation override applies to.
|
|
4381
|
+
:param end_time: The start time or end time for an an hours of operation override.
|
|
4382
|
+
:param start_time: The start time or end time for an an hours of operation override.
|
|
4383
|
+
|
|
4384
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationoverrideconfig.html
|
|
4385
|
+
:exampleMetadata: fixture=_generated
|
|
4386
|
+
|
|
4387
|
+
Example::
|
|
4388
|
+
|
|
4389
|
+
# The code below shows an example of how to instantiate this type.
|
|
4390
|
+
# The values are placeholders you should change.
|
|
4391
|
+
from aws_cdk import aws_connect as connect
|
|
4392
|
+
|
|
4393
|
+
hours_of_operation_override_config_property = connect.CfnHoursOfOperation.HoursOfOperationOverrideConfigProperty(
|
|
4394
|
+
day="day",
|
|
4395
|
+
end_time=connect.CfnHoursOfOperation.OverrideTimeSliceProperty(
|
|
4396
|
+
hours=123,
|
|
4397
|
+
minutes=123
|
|
4398
|
+
),
|
|
4399
|
+
start_time=connect.CfnHoursOfOperation.OverrideTimeSliceProperty(
|
|
4400
|
+
hours=123,
|
|
4401
|
+
minutes=123
|
|
4402
|
+
)
|
|
4403
|
+
)
|
|
4404
|
+
'''
|
|
4405
|
+
if __debug__:
|
|
4406
|
+
type_hints = typing.get_type_hints(_typecheckingstub__ebf5e16873df8f4d949b44d93d6b3faa42035e316f2aa7b06dfb2367b229c6f8)
|
|
4407
|
+
check_type(argname="argument day", value=day, expected_type=type_hints["day"])
|
|
4408
|
+
check_type(argname="argument end_time", value=end_time, expected_type=type_hints["end_time"])
|
|
4409
|
+
check_type(argname="argument start_time", value=start_time, expected_type=type_hints["start_time"])
|
|
4410
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4411
|
+
"day": day,
|
|
4412
|
+
"end_time": end_time,
|
|
4413
|
+
"start_time": start_time,
|
|
4414
|
+
}
|
|
4415
|
+
|
|
4416
|
+
@builtins.property
|
|
4417
|
+
def day(self) -> builtins.str:
|
|
4418
|
+
'''The day that the hours of operation override applies to.
|
|
4419
|
+
|
|
4420
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationoverrideconfig.html#cfn-connect-hoursofoperation-hoursofoperationoverrideconfig-day
|
|
4421
|
+
'''
|
|
4422
|
+
result = self._values.get("day")
|
|
4423
|
+
assert result is not None, "Required property 'day' is missing"
|
|
4424
|
+
return typing.cast(builtins.str, result)
|
|
4425
|
+
|
|
4426
|
+
@builtins.property
|
|
4427
|
+
def end_time(
|
|
4428
|
+
self,
|
|
4429
|
+
) -> typing.Union[_IResolvable_da3f097b, "CfnHoursOfOperation.OverrideTimeSliceProperty"]:
|
|
4430
|
+
'''The start time or end time for an an hours of operation override.
|
|
4431
|
+
|
|
4432
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationoverrideconfig.html#cfn-connect-hoursofoperation-hoursofoperationoverrideconfig-endtime
|
|
4433
|
+
'''
|
|
4434
|
+
result = self._values.get("end_time")
|
|
4435
|
+
assert result is not None, "Required property 'end_time' is missing"
|
|
4436
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnHoursOfOperation.OverrideTimeSliceProperty"], result)
|
|
4437
|
+
|
|
4438
|
+
@builtins.property
|
|
4439
|
+
def start_time(
|
|
4440
|
+
self,
|
|
4441
|
+
) -> typing.Union[_IResolvable_da3f097b, "CfnHoursOfOperation.OverrideTimeSliceProperty"]:
|
|
4442
|
+
'''The start time or end time for an an hours of operation override.
|
|
4443
|
+
|
|
4444
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationoverrideconfig.html#cfn-connect-hoursofoperation-hoursofoperationoverrideconfig-starttime
|
|
4445
|
+
'''
|
|
4446
|
+
result = self._values.get("start_time")
|
|
4447
|
+
assert result is not None, "Required property 'start_time' is missing"
|
|
4448
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnHoursOfOperation.OverrideTimeSliceProperty"], result)
|
|
4449
|
+
|
|
4450
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4451
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4452
|
+
|
|
4453
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
4454
|
+
return not (rhs == self)
|
|
4455
|
+
|
|
4456
|
+
def __repr__(self) -> str:
|
|
4457
|
+
return "HoursOfOperationOverrideConfigProperty(%s)" % ", ".join(
|
|
4458
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
4459
|
+
)
|
|
4460
|
+
|
|
4461
|
+
@jsii.data_type(
|
|
4462
|
+
jsii_type="aws-cdk-lib.aws_connect.CfnHoursOfOperation.HoursOfOperationOverrideProperty",
|
|
4463
|
+
jsii_struct_bases=[],
|
|
4464
|
+
name_mapping={
|
|
4465
|
+
"effective_from": "effectiveFrom",
|
|
4466
|
+
"effective_till": "effectiveTill",
|
|
4467
|
+
"override_config": "overrideConfig",
|
|
4468
|
+
"override_name": "overrideName",
|
|
4469
|
+
"hours_of_operation_override_id": "hoursOfOperationOverrideId",
|
|
4470
|
+
"override_description": "overrideDescription",
|
|
4471
|
+
},
|
|
4472
|
+
)
|
|
4473
|
+
class HoursOfOperationOverrideProperty:
|
|
4474
|
+
def __init__(
|
|
4475
|
+
self,
|
|
4476
|
+
*,
|
|
4477
|
+
effective_from: builtins.str,
|
|
4478
|
+
effective_till: builtins.str,
|
|
4479
|
+
override_config: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnHoursOfOperation.HoursOfOperationOverrideConfigProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
4480
|
+
override_name: builtins.str,
|
|
4481
|
+
hours_of_operation_override_id: typing.Optional[builtins.str] = None,
|
|
4482
|
+
override_description: typing.Optional[builtins.str] = None,
|
|
4483
|
+
) -> None:
|
|
4484
|
+
'''Overrides attached to the hours of operation.
|
|
4485
|
+
|
|
4486
|
+
:param effective_from: The date from which the hours of operation override would be effective.
|
|
4487
|
+
:param effective_till: The date till which the hours of operation override would be effective.
|
|
4488
|
+
:param override_config: Configuration information for the hours of operation override: day, start time, and end time.
|
|
4489
|
+
:param override_name: The name of the hours of operation override.
|
|
4490
|
+
:param hours_of_operation_override_id: The Resource Identifier for the hours of operation override.
|
|
4491
|
+
:param override_description: The description of the hours of operation override.
|
|
4492
|
+
|
|
4493
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationoverride.html
|
|
4494
|
+
:exampleMetadata: fixture=_generated
|
|
4495
|
+
|
|
4496
|
+
Example::
|
|
4497
|
+
|
|
4498
|
+
# The code below shows an example of how to instantiate this type.
|
|
4499
|
+
# The values are placeholders you should change.
|
|
4500
|
+
from aws_cdk import aws_connect as connect
|
|
4501
|
+
|
|
4502
|
+
hours_of_operation_override_property = connect.CfnHoursOfOperation.HoursOfOperationOverrideProperty(
|
|
4503
|
+
effective_from="effectiveFrom",
|
|
4504
|
+
effective_till="effectiveTill",
|
|
4505
|
+
override_config=[connect.CfnHoursOfOperation.HoursOfOperationOverrideConfigProperty(
|
|
4506
|
+
day="day",
|
|
4507
|
+
end_time=connect.CfnHoursOfOperation.OverrideTimeSliceProperty(
|
|
4508
|
+
hours=123,
|
|
4509
|
+
minutes=123
|
|
4510
|
+
),
|
|
4511
|
+
start_time=connect.CfnHoursOfOperation.OverrideTimeSliceProperty(
|
|
4512
|
+
hours=123,
|
|
4513
|
+
minutes=123
|
|
4514
|
+
)
|
|
4515
|
+
)],
|
|
4516
|
+
override_name="overrideName",
|
|
4517
|
+
|
|
4518
|
+
# the properties below are optional
|
|
4519
|
+
hours_of_operation_override_id="hoursOfOperationOverrideId",
|
|
4520
|
+
override_description="overrideDescription"
|
|
4521
|
+
)
|
|
4522
|
+
'''
|
|
4523
|
+
if __debug__:
|
|
4524
|
+
type_hints = typing.get_type_hints(_typecheckingstub__94d2d235922a59e0f97399934738d2d670e60e30b42450dbe734359a8314a0e6)
|
|
4525
|
+
check_type(argname="argument effective_from", value=effective_from, expected_type=type_hints["effective_from"])
|
|
4526
|
+
check_type(argname="argument effective_till", value=effective_till, expected_type=type_hints["effective_till"])
|
|
4527
|
+
check_type(argname="argument override_config", value=override_config, expected_type=type_hints["override_config"])
|
|
4528
|
+
check_type(argname="argument override_name", value=override_name, expected_type=type_hints["override_name"])
|
|
4529
|
+
check_type(argname="argument hours_of_operation_override_id", value=hours_of_operation_override_id, expected_type=type_hints["hours_of_operation_override_id"])
|
|
4530
|
+
check_type(argname="argument override_description", value=override_description, expected_type=type_hints["override_description"])
|
|
4531
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4532
|
+
"effective_from": effective_from,
|
|
4533
|
+
"effective_till": effective_till,
|
|
4534
|
+
"override_config": override_config,
|
|
4535
|
+
"override_name": override_name,
|
|
4536
|
+
}
|
|
4537
|
+
if hours_of_operation_override_id is not None:
|
|
4538
|
+
self._values["hours_of_operation_override_id"] = hours_of_operation_override_id
|
|
4539
|
+
if override_description is not None:
|
|
4540
|
+
self._values["override_description"] = override_description
|
|
4541
|
+
|
|
4542
|
+
@builtins.property
|
|
4543
|
+
def effective_from(self) -> builtins.str:
|
|
4544
|
+
'''The date from which the hours of operation override would be effective.
|
|
4545
|
+
|
|
4546
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationoverride.html#cfn-connect-hoursofoperation-hoursofoperationoverride-effectivefrom
|
|
4547
|
+
'''
|
|
4548
|
+
result = self._values.get("effective_from")
|
|
4549
|
+
assert result is not None, "Required property 'effective_from' is missing"
|
|
4550
|
+
return typing.cast(builtins.str, result)
|
|
4551
|
+
|
|
4552
|
+
@builtins.property
|
|
4553
|
+
def effective_till(self) -> builtins.str:
|
|
4554
|
+
'''The date till which the hours of operation override would be effective.
|
|
4555
|
+
|
|
4556
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationoverride.html#cfn-connect-hoursofoperation-hoursofoperationoverride-effectivetill
|
|
4557
|
+
'''
|
|
4558
|
+
result = self._values.get("effective_till")
|
|
4559
|
+
assert result is not None, "Required property 'effective_till' is missing"
|
|
4560
|
+
return typing.cast(builtins.str, result)
|
|
4561
|
+
|
|
4562
|
+
@builtins.property
|
|
4563
|
+
def override_config(
|
|
4564
|
+
self,
|
|
4565
|
+
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnHoursOfOperation.HoursOfOperationOverrideConfigProperty"]]]:
|
|
4566
|
+
'''Configuration information for the hours of operation override: day, start time, and end time.
|
|
4567
|
+
|
|
4568
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationoverride.html#cfn-connect-hoursofoperation-hoursofoperationoverride-overrideconfig
|
|
4569
|
+
'''
|
|
4570
|
+
result = self._values.get("override_config")
|
|
4571
|
+
assert result is not None, "Required property 'override_config' is missing"
|
|
4572
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnHoursOfOperation.HoursOfOperationOverrideConfigProperty"]]], result)
|
|
4573
|
+
|
|
4574
|
+
@builtins.property
|
|
4575
|
+
def override_name(self) -> builtins.str:
|
|
4576
|
+
'''The name of the hours of operation override.
|
|
4577
|
+
|
|
4578
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationoverride.html#cfn-connect-hoursofoperation-hoursofoperationoverride-overridename
|
|
4579
|
+
'''
|
|
4580
|
+
result = self._values.get("override_name")
|
|
4581
|
+
assert result is not None, "Required property 'override_name' is missing"
|
|
4582
|
+
return typing.cast(builtins.str, result)
|
|
4583
|
+
|
|
4584
|
+
@builtins.property
|
|
4585
|
+
def hours_of_operation_override_id(self) -> typing.Optional[builtins.str]:
|
|
4586
|
+
'''The Resource Identifier for the hours of operation override.
|
|
4587
|
+
|
|
4588
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationoverride.html#cfn-connect-hoursofoperation-hoursofoperationoverride-hoursofoperationoverrideid
|
|
4589
|
+
'''
|
|
4590
|
+
result = self._values.get("hours_of_operation_override_id")
|
|
4591
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4592
|
+
|
|
4593
|
+
@builtins.property
|
|
4594
|
+
def override_description(self) -> typing.Optional[builtins.str]:
|
|
4595
|
+
'''The description of the hours of operation override.
|
|
4596
|
+
|
|
4597
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationoverride.html#cfn-connect-hoursofoperation-hoursofoperationoverride-overridedescription
|
|
4598
|
+
'''
|
|
4599
|
+
result = self._values.get("override_description")
|
|
4600
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4601
|
+
|
|
4602
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4603
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4604
|
+
|
|
4605
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
4606
|
+
return not (rhs == self)
|
|
4607
|
+
|
|
4608
|
+
def __repr__(self) -> str:
|
|
4609
|
+
return "HoursOfOperationOverrideProperty(%s)" % ", ".join(
|
|
4610
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
4611
|
+
)
|
|
4612
|
+
|
|
4322
4613
|
@jsii.data_type(
|
|
4323
4614
|
jsii_type="aws-cdk-lib.aws_connect.CfnHoursOfOperation.HoursOfOperationTimeSliceProperty",
|
|
4324
4615
|
jsii_struct_bases=[],
|
|
@@ -4385,6 +4676,72 @@ class CfnHoursOfOperation(
|
|
|
4385
4676
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
4386
4677
|
)
|
|
4387
4678
|
|
|
4679
|
+
@jsii.data_type(
|
|
4680
|
+
jsii_type="aws-cdk-lib.aws_connect.CfnHoursOfOperation.OverrideTimeSliceProperty",
|
|
4681
|
+
jsii_struct_bases=[],
|
|
4682
|
+
name_mapping={"hours": "hours", "minutes": "minutes"},
|
|
4683
|
+
)
|
|
4684
|
+
class OverrideTimeSliceProperty:
|
|
4685
|
+
def __init__(self, *, hours: jsii.Number, minutes: jsii.Number) -> None:
|
|
4686
|
+
'''The start time or end time for an an hours of operation override.
|
|
4687
|
+
|
|
4688
|
+
:param hours: The hours.
|
|
4689
|
+
:param minutes: The minutes.
|
|
4690
|
+
|
|
4691
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-overridetimeslice.html
|
|
4692
|
+
:exampleMetadata: fixture=_generated
|
|
4693
|
+
|
|
4694
|
+
Example::
|
|
4695
|
+
|
|
4696
|
+
# The code below shows an example of how to instantiate this type.
|
|
4697
|
+
# The values are placeholders you should change.
|
|
4698
|
+
from aws_cdk import aws_connect as connect
|
|
4699
|
+
|
|
4700
|
+
override_time_slice_property = connect.CfnHoursOfOperation.OverrideTimeSliceProperty(
|
|
4701
|
+
hours=123,
|
|
4702
|
+
minutes=123
|
|
4703
|
+
)
|
|
4704
|
+
'''
|
|
4705
|
+
if __debug__:
|
|
4706
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bf0fe9b40d5f92cd82deaad81370dd578dddfd7a1db227ec3b04d8a1894b5941)
|
|
4707
|
+
check_type(argname="argument hours", value=hours, expected_type=type_hints["hours"])
|
|
4708
|
+
check_type(argname="argument minutes", value=minutes, expected_type=type_hints["minutes"])
|
|
4709
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4710
|
+
"hours": hours,
|
|
4711
|
+
"minutes": minutes,
|
|
4712
|
+
}
|
|
4713
|
+
|
|
4714
|
+
@builtins.property
|
|
4715
|
+
def hours(self) -> jsii.Number:
|
|
4716
|
+
'''The hours.
|
|
4717
|
+
|
|
4718
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-overridetimeslice.html#cfn-connect-hoursofoperation-overridetimeslice-hours
|
|
4719
|
+
'''
|
|
4720
|
+
result = self._values.get("hours")
|
|
4721
|
+
assert result is not None, "Required property 'hours' is missing"
|
|
4722
|
+
return typing.cast(jsii.Number, result)
|
|
4723
|
+
|
|
4724
|
+
@builtins.property
|
|
4725
|
+
def minutes(self) -> jsii.Number:
|
|
4726
|
+
'''The minutes.
|
|
4727
|
+
|
|
4728
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-overridetimeslice.html#cfn-connect-hoursofoperation-overridetimeslice-minutes
|
|
4729
|
+
'''
|
|
4730
|
+
result = self._values.get("minutes")
|
|
4731
|
+
assert result is not None, "Required property 'minutes' is missing"
|
|
4732
|
+
return typing.cast(jsii.Number, result)
|
|
4733
|
+
|
|
4734
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4735
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4736
|
+
|
|
4737
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
4738
|
+
return not (rhs == self)
|
|
4739
|
+
|
|
4740
|
+
def __repr__(self) -> str:
|
|
4741
|
+
return "OverrideTimeSliceProperty(%s)" % ", ".join(
|
|
4742
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
4743
|
+
)
|
|
4744
|
+
|
|
4388
4745
|
|
|
4389
4746
|
@jsii.data_type(
|
|
4390
4747
|
jsii_type="aws-cdk-lib.aws_connect.CfnHoursOfOperationProps",
|
|
@@ -4395,6 +4752,7 @@ class CfnHoursOfOperation(
|
|
|
4395
4752
|
"name": "name",
|
|
4396
4753
|
"time_zone": "timeZone",
|
|
4397
4754
|
"description": "description",
|
|
4755
|
+
"hours_of_operation_overrides": "hoursOfOperationOverrides",
|
|
4398
4756
|
"tags": "tags",
|
|
4399
4757
|
},
|
|
4400
4758
|
)
|
|
@@ -4407,6 +4765,7 @@ class CfnHoursOfOperationProps:
|
|
|
4407
4765
|
name: builtins.str,
|
|
4408
4766
|
time_zone: builtins.str,
|
|
4409
4767
|
description: typing.Optional[builtins.str] = None,
|
|
4768
|
+
hours_of_operation_overrides: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnHoursOfOperation.HoursOfOperationOverrideProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
4410
4769
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4411
4770
|
) -> None:
|
|
4412
4771
|
'''Properties for defining a ``CfnHoursOfOperation``.
|
|
@@ -4416,6 +4775,7 @@ class CfnHoursOfOperationProps:
|
|
|
4416
4775
|
:param name: The name for the hours of operation.
|
|
4417
4776
|
:param time_zone: The time zone for the hours of operation.
|
|
4418
4777
|
:param description: The description for the hours of operation.
|
|
4778
|
+
:param hours_of_operation_overrides: One or more hours of operation overrides assigned to an hour of operation.
|
|
4419
4779
|
:param tags: The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
|
4420
4780
|
|
|
4421
4781
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-hoursofoperation.html
|
|
@@ -4445,6 +4805,26 @@ class CfnHoursOfOperationProps:
|
|
|
4445
4805
|
|
|
4446
4806
|
# the properties below are optional
|
|
4447
4807
|
description="description",
|
|
4808
|
+
hours_of_operation_overrides=[connect.CfnHoursOfOperation.HoursOfOperationOverrideProperty(
|
|
4809
|
+
effective_from="effectiveFrom",
|
|
4810
|
+
effective_till="effectiveTill",
|
|
4811
|
+
override_config=[connect.CfnHoursOfOperation.HoursOfOperationOverrideConfigProperty(
|
|
4812
|
+
day="day",
|
|
4813
|
+
end_time=connect.CfnHoursOfOperation.OverrideTimeSliceProperty(
|
|
4814
|
+
hours=123,
|
|
4815
|
+
minutes=123
|
|
4816
|
+
),
|
|
4817
|
+
start_time=connect.CfnHoursOfOperation.OverrideTimeSliceProperty(
|
|
4818
|
+
hours=123,
|
|
4819
|
+
minutes=123
|
|
4820
|
+
)
|
|
4821
|
+
)],
|
|
4822
|
+
override_name="overrideName",
|
|
4823
|
+
|
|
4824
|
+
# the properties below are optional
|
|
4825
|
+
hours_of_operation_override_id="hoursOfOperationOverrideId",
|
|
4826
|
+
override_description="overrideDescription"
|
|
4827
|
+
)],
|
|
4448
4828
|
tags=[CfnTag(
|
|
4449
4829
|
key="key",
|
|
4450
4830
|
value="value"
|
|
@@ -4458,6 +4838,7 @@ class CfnHoursOfOperationProps:
|
|
|
4458
4838
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
4459
4839
|
check_type(argname="argument time_zone", value=time_zone, expected_type=type_hints["time_zone"])
|
|
4460
4840
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
4841
|
+
check_type(argname="argument hours_of_operation_overrides", value=hours_of_operation_overrides, expected_type=type_hints["hours_of_operation_overrides"])
|
|
4461
4842
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
4462
4843
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4463
4844
|
"config": config,
|
|
@@ -4467,6 +4848,8 @@ class CfnHoursOfOperationProps:
|
|
|
4467
4848
|
}
|
|
4468
4849
|
if description is not None:
|
|
4469
4850
|
self._values["description"] = description
|
|
4851
|
+
if hours_of_operation_overrides is not None:
|
|
4852
|
+
self._values["hours_of_operation_overrides"] = hours_of_operation_overrides
|
|
4470
4853
|
if tags is not None:
|
|
4471
4854
|
self._values["tags"] = tags
|
|
4472
4855
|
|
|
@@ -4521,6 +4904,17 @@ class CfnHoursOfOperationProps:
|
|
|
4521
4904
|
result = self._values.get("description")
|
|
4522
4905
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
4523
4906
|
|
|
4907
|
+
@builtins.property
|
|
4908
|
+
def hours_of_operation_overrides(
|
|
4909
|
+
self,
|
|
4910
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnHoursOfOperation.HoursOfOperationOverrideProperty]]]]:
|
|
4911
|
+
'''One or more hours of operation overrides assigned to an hour of operation.
|
|
4912
|
+
|
|
4913
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-hoursofoperation.html#cfn-connect-hoursofoperation-hoursofoperationoverrides
|
|
4914
|
+
'''
|
|
4915
|
+
result = self._values.get("hours_of_operation_overrides")
|
|
4916
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnHoursOfOperation.HoursOfOperationOverrideProperty]]]], result)
|
|
4917
|
+
|
|
4524
4918
|
@builtins.property
|
|
4525
4919
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
4526
4920
|
'''The tags used to organize, track, or control access for this resource.
|
|
@@ -6196,7 +6590,7 @@ class CfnPhoneNumber(
|
|
|
6196
6590
|
:param country_code: The ISO country code.
|
|
6197
6591
|
:param description: The description of the phone number.
|
|
6198
6592
|
:param prefix: The prefix of the phone number. If provided, it must contain ``+`` as part of the country code. *Pattern* : ``^\\\\+[0-9]{1,15}``
|
|
6199
|
-
:param source_phone_number_arn: The claimed phone number ARN that was previously imported from the external service, such as
|
|
6593
|
+
:param source_phone_number_arn: The claimed phone number ARN that was previously imported from the external service, such as AWS End User Messaging. If it is from AWS End User Messaging, it looks like the ARN of the phone number that was imported from AWS End User Messaging.
|
|
6200
6594
|
:param tags: The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
|
|
6201
6595
|
:param type: The type of phone number.
|
|
6202
6596
|
'''
|
|
@@ -6333,7 +6727,7 @@ class CfnPhoneNumber(
|
|
|
6333
6727
|
@builtins.property
|
|
6334
6728
|
@jsii.member(jsii_name="sourcePhoneNumberArn")
|
|
6335
6729
|
def source_phone_number_arn(self) -> typing.Optional[builtins.str]:
|
|
6336
|
-
'''The claimed phone number ARN that was previously imported from the external service, such as
|
|
6730
|
+
'''The claimed phone number ARN that was previously imported from the external service, such as AWS End User Messaging.'''
|
|
6337
6731
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "sourcePhoneNumberArn"))
|
|
6338
6732
|
|
|
6339
6733
|
@source_phone_number_arn.setter
|
|
@@ -6401,7 +6795,7 @@ class CfnPhoneNumberProps:
|
|
|
6401
6795
|
:param country_code: The ISO country code.
|
|
6402
6796
|
:param description: The description of the phone number.
|
|
6403
6797
|
:param prefix: The prefix of the phone number. If provided, it must contain ``+`` as part of the country code. *Pattern* : ``^\\\\+[0-9]{1,15}``
|
|
6404
|
-
:param source_phone_number_arn: The claimed phone number ARN that was previously imported from the external service, such as
|
|
6798
|
+
:param source_phone_number_arn: The claimed phone number ARN that was previously imported from the external service, such as AWS End User Messaging. If it is from AWS End User Messaging, it looks like the ARN of the phone number that was imported from AWS End User Messaging.
|
|
6405
6799
|
:param tags: The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
|
|
6406
6800
|
:param type: The type of phone number.
|
|
6407
6801
|
|
|
@@ -6495,9 +6889,9 @@ class CfnPhoneNumberProps:
|
|
|
6495
6889
|
|
|
6496
6890
|
@builtins.property
|
|
6497
6891
|
def source_phone_number_arn(self) -> typing.Optional[builtins.str]:
|
|
6498
|
-
'''The claimed phone number ARN that was previously imported from the external service, such as
|
|
6892
|
+
'''The claimed phone number ARN that was previously imported from the external service, such as AWS End User Messaging.
|
|
6499
6893
|
|
|
6500
|
-
If it is from
|
|
6894
|
+
If it is from AWS End User Messaging, it looks like the ARN of the phone number that was imported from AWS End User Messaging.
|
|
6501
6895
|
|
|
6502
6896
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-phonenumber.html#cfn-connect-phonenumber-sourcephonenumberarn
|
|
6503
6897
|
'''
|
|
@@ -16387,6 +16781,7 @@ def _typecheckingstub__da9a7b2f06b8b2d053fcfa26018be9202b48193f9ffb7fc1d9518391c
|
|
|
16387
16781
|
name: builtins.str,
|
|
16388
16782
|
time_zone: builtins.str,
|
|
16389
16783
|
description: typing.Optional[builtins.str] = None,
|
|
16784
|
+
hours_of_operation_overrides: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnHoursOfOperation.HoursOfOperationOverrideProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
16390
16785
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
16391
16786
|
) -> None:
|
|
16392
16787
|
"""Type checking stubs"""
|
|
@@ -16434,6 +16829,12 @@ def _typecheckingstub__224611189f5992474af63688324a9a850ba31b7aad01b0eaae5a8fd63
|
|
|
16434
16829
|
"""Type checking stubs"""
|
|
16435
16830
|
pass
|
|
16436
16831
|
|
|
16832
|
+
def _typecheckingstub__aac2ad464f2908529fe7a982324e9d2212d9f0ba0ee88e3970e04f1d51655caa(
|
|
16833
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnHoursOfOperation.HoursOfOperationOverrideProperty]]]],
|
|
16834
|
+
) -> None:
|
|
16835
|
+
"""Type checking stubs"""
|
|
16836
|
+
pass
|
|
16837
|
+
|
|
16437
16838
|
def _typecheckingstub__e3006704998781ab2276bf2b26481ef171277930dc1c09d1dcf2e54b8cd07b7c(
|
|
16438
16839
|
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
16439
16840
|
) -> None:
|
|
@@ -16449,6 +16850,27 @@ def _typecheckingstub__5ef26f457a53e548698c50361c4e334e5f633638af5ae2b9230dccc5f
|
|
|
16449
16850
|
"""Type checking stubs"""
|
|
16450
16851
|
pass
|
|
16451
16852
|
|
|
16853
|
+
def _typecheckingstub__ebf5e16873df8f4d949b44d93d6b3faa42035e316f2aa7b06dfb2367b229c6f8(
|
|
16854
|
+
*,
|
|
16855
|
+
day: builtins.str,
|
|
16856
|
+
end_time: typing.Union[_IResolvable_da3f097b, typing.Union[CfnHoursOfOperation.OverrideTimeSliceProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
16857
|
+
start_time: typing.Union[_IResolvable_da3f097b, typing.Union[CfnHoursOfOperation.OverrideTimeSliceProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
16858
|
+
) -> None:
|
|
16859
|
+
"""Type checking stubs"""
|
|
16860
|
+
pass
|
|
16861
|
+
|
|
16862
|
+
def _typecheckingstub__94d2d235922a59e0f97399934738d2d670e60e30b42450dbe734359a8314a0e6(
|
|
16863
|
+
*,
|
|
16864
|
+
effective_from: builtins.str,
|
|
16865
|
+
effective_till: builtins.str,
|
|
16866
|
+
override_config: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnHoursOfOperation.HoursOfOperationOverrideConfigProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
16867
|
+
override_name: builtins.str,
|
|
16868
|
+
hours_of_operation_override_id: typing.Optional[builtins.str] = None,
|
|
16869
|
+
override_description: typing.Optional[builtins.str] = None,
|
|
16870
|
+
) -> None:
|
|
16871
|
+
"""Type checking stubs"""
|
|
16872
|
+
pass
|
|
16873
|
+
|
|
16452
16874
|
def _typecheckingstub__ca5c5b128d189787db53fa22c88668d84b3efd31f5b54320dcda0838372db008(
|
|
16453
16875
|
*,
|
|
16454
16876
|
hours: jsii.Number,
|
|
@@ -16457,6 +16879,14 @@ def _typecheckingstub__ca5c5b128d189787db53fa22c88668d84b3efd31f5b54320dcda08383
|
|
|
16457
16879
|
"""Type checking stubs"""
|
|
16458
16880
|
pass
|
|
16459
16881
|
|
|
16882
|
+
def _typecheckingstub__bf0fe9b40d5f92cd82deaad81370dd578dddfd7a1db227ec3b04d8a1894b5941(
|
|
16883
|
+
*,
|
|
16884
|
+
hours: jsii.Number,
|
|
16885
|
+
minutes: jsii.Number,
|
|
16886
|
+
) -> None:
|
|
16887
|
+
"""Type checking stubs"""
|
|
16888
|
+
pass
|
|
16889
|
+
|
|
16460
16890
|
def _typecheckingstub__66cef12b59765322de54d22fe6de568f262a635899fc46cbe6a5f5a97b848467(
|
|
16461
16891
|
*,
|
|
16462
16892
|
config: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnHoursOfOperation.HoursOfOperationConfigProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
@@ -16464,6 +16894,7 @@ def _typecheckingstub__66cef12b59765322de54d22fe6de568f262a635899fc46cbe6a5f5a97
|
|
|
16464
16894
|
name: builtins.str,
|
|
16465
16895
|
time_zone: builtins.str,
|
|
16466
16896
|
description: typing.Optional[builtins.str] = None,
|
|
16897
|
+
hours_of_operation_overrides: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnHoursOfOperation.HoursOfOperationOverrideProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
16467
16898
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
16468
16899
|
) -> None:
|
|
16469
16900
|
"""Type checking stubs"""
|