aws-cdk-lib 2.172.0__py3-none-any.whl → 2.173.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 +57 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.172.0.jsii.tgz → aws-cdk-lib@2.173.1.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +40 -40
- aws_cdk/aws_apigateway/__init__.py +111 -64
- aws_cdk/aws_applicationautoscaling/__init__.py +141 -66
- aws_cdk/aws_appsync/__init__.py +4 -3
- aws_cdk/aws_autoscaling/__init__.py +15 -6
- aws_cdk/aws_bedrock/__init__.py +32 -44
- aws_cdk/aws_chatbot/__init__.py +72 -46
- aws_cdk/aws_cleanrooms/__init__.py +4 -6
- aws_cdk/aws_cloudfront/__init__.py +4 -2
- aws_cdk/aws_cloudtrail/__init__.py +104 -68
- 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 +221 -53
- aws_cdk/aws_config/__init__.py +13 -10
- aws_cdk/aws_connect/__init__.py +25 -23
- aws_cdk/aws_connectcampaignsv2/__init__.py +187 -176
- aws_cdk/aws_docdb/__init__.py +128 -0
- aws_cdk/aws_dynamodb/__init__.py +256 -0
- aws_cdk/aws_ec2/__init__.py +130 -48
- aws_cdk/aws_ecs/__init__.py +25 -13
- aws_cdk/aws_eks/__init__.py +86 -24
- aws_cdk/aws_elasticache/__init__.py +22 -22
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +138 -128
- aws_cdk/aws_events/__init__.py +39 -26
- 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 +28 -22
- aws_cdk/aws_iotfleetwise/__init__.py +473 -332
- aws_cdk/aws_iotsitewise/__init__.py +6 -4
- 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 +258 -156
- aws_cdk/aws_logs/__init__.py +532 -0
- aws_cdk/aws_m2/__init__.py +15 -15
- 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_qbusiness/__init__.py +2018 -66
- aws_cdk/aws_rds/__init__.py +30 -0
- aws_cdk/aws_resourcegroups/__init__.py +26 -17
- aws_cdk/aws_route53/__init__.py +1177 -10
- aws_cdk/aws_route53_targets/__init__.py +224 -100
- aws_cdk/aws_route53resolver/__init__.py +4 -2
- aws_cdk/aws_s3/__init__.py +4 -4
- aws_cdk/aws_s3express/__init__.py +30 -19
- aws_cdk/aws_sagemaker/__init__.py +783 -9
- 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 +109 -0
- 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 +2698 -232
- aws_cdk/aws_workspacesweb/__init__.py +118 -61
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/RECORD +69 -68
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/top_level.txt +0 -0
|
@@ -85,7 +85,12 @@ class CfnCampaign(
|
|
|
85
85
|
metaclass=jsii.JSIIMeta,
|
|
86
86
|
jsii_type="aws-cdk-lib.aws_connectcampaignsv2.CfnCampaign",
|
|
87
87
|
):
|
|
88
|
-
'''
|
|
88
|
+
'''Creates an outbound campaign.
|
|
89
|
+
|
|
90
|
+
.. epigraph::
|
|
91
|
+
|
|
92
|
+
- For users to be able to view or edit a campaign at a later date by using the Amazon Connect user interface, you must add the instance ID as a tag. For example, ``{ "tags": {"owner": "arn:aws:connect:{REGION}:{AWS_ACCOUNT_ID}:instance/{CONNECT_INSTANCE_ID}"}}`` .
|
|
93
|
+
- After a campaign is created, you can't add/remove source.
|
|
89
94
|
|
|
90
95
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html
|
|
91
96
|
:cloudformationResource: AWS::ConnectCampaignsV2::Campaign
|
|
@@ -279,15 +284,15 @@ class CfnCampaign(
|
|
|
279
284
|
'''
|
|
280
285
|
:param scope: Scope in which this resource is defined.
|
|
281
286
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
282
|
-
:param channel_subtype_config:
|
|
283
|
-
:param connect_instance_id: Amazon Connect
|
|
284
|
-
:param name:
|
|
285
|
-
:param communication_limits_override: Communication limits
|
|
286
|
-
:param communication_time_config:
|
|
287
|
-
:param connect_campaign_flow_arn:
|
|
288
|
-
:param schedule:
|
|
289
|
-
:param source:
|
|
290
|
-
:param tags:
|
|
287
|
+
:param channel_subtype_config: Contains channel subtype configuration for an outbound campaign.
|
|
288
|
+
:param connect_instance_id: The identifier of the Amazon Connect instance. You can find the ``instanceId`` in the ARN of the instance.
|
|
289
|
+
:param name: The name of the outbound campaign.
|
|
290
|
+
:param communication_limits_override: Communication limits configuration for an outbound campaign.
|
|
291
|
+
:param communication_time_config: Contains communication time configuration for an outbound campaign.
|
|
292
|
+
:param connect_campaign_flow_arn: The Amazon Resource Name (ARN) of the Amazon Connect campaign flow associated with the outbound campaign.
|
|
293
|
+
:param schedule: Contains the schedule configuration.
|
|
294
|
+
:param source: Contains source configuration.
|
|
295
|
+
:param tags: The tags used to organize, track, or control access for this resource. For example, ``{ "tags": {"key1":"value1", "key2":"value2"} }`` .
|
|
291
296
|
'''
|
|
292
297
|
if __debug__:
|
|
293
298
|
type_hints = typing.get_type_hints(_typecheckingstub__228f2b3a0b621ad8a32effe36abeb2d513f50077bd0ad5de7f33f1ea81da26bf)
|
|
@@ -340,7 +345,7 @@ class CfnCampaign(
|
|
|
340
345
|
@builtins.property
|
|
341
346
|
@jsii.member(jsii_name="attrArn")
|
|
342
347
|
def attr_arn(self) -> builtins.str:
|
|
343
|
-
'''Amazon
|
|
348
|
+
'''The Amazon Resource Name (ARN).
|
|
344
349
|
|
|
345
350
|
:cloudformationAttribute: Arn
|
|
346
351
|
'''
|
|
@@ -362,7 +367,7 @@ class CfnCampaign(
|
|
|
362
367
|
def channel_subtype_config(
|
|
363
368
|
self,
|
|
364
369
|
) -> typing.Union[_IResolvable_da3f097b, "CfnCampaign.ChannelSubtypeConfigProperty"]:
|
|
365
|
-
'''
|
|
370
|
+
'''Contains channel subtype configuration for an outbound campaign.'''
|
|
366
371
|
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnCampaign.ChannelSubtypeConfigProperty"], jsii.get(self, "channelSubtypeConfig"))
|
|
367
372
|
|
|
368
373
|
@channel_subtype_config.setter
|
|
@@ -378,7 +383,7 @@ class CfnCampaign(
|
|
|
378
383
|
@builtins.property
|
|
379
384
|
@jsii.member(jsii_name="connectInstanceId")
|
|
380
385
|
def connect_instance_id(self) -> builtins.str:
|
|
381
|
-
'''Amazon Connect
|
|
386
|
+
'''The identifier of the Amazon Connect instance.'''
|
|
382
387
|
return typing.cast(builtins.str, jsii.get(self, "connectInstanceId"))
|
|
383
388
|
|
|
384
389
|
@connect_instance_id.setter
|
|
@@ -391,7 +396,7 @@ class CfnCampaign(
|
|
|
391
396
|
@builtins.property
|
|
392
397
|
@jsii.member(jsii_name="name")
|
|
393
398
|
def name(self) -> builtins.str:
|
|
394
|
-
'''
|
|
399
|
+
'''The name of the outbound campaign.'''
|
|
395
400
|
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
396
401
|
|
|
397
402
|
@name.setter
|
|
@@ -406,7 +411,7 @@ class CfnCampaign(
|
|
|
406
411
|
def communication_limits_override(
|
|
407
412
|
self,
|
|
408
413
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.CommunicationLimitsConfigProperty"]]:
|
|
409
|
-
'''Communication limits
|
|
414
|
+
'''Communication limits configuration for an outbound campaign.'''
|
|
410
415
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.CommunicationLimitsConfigProperty"]], jsii.get(self, "communicationLimitsOverride"))
|
|
411
416
|
|
|
412
417
|
@communication_limits_override.setter
|
|
@@ -424,7 +429,7 @@ class CfnCampaign(
|
|
|
424
429
|
def communication_time_config(
|
|
425
430
|
self,
|
|
426
431
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.CommunicationTimeConfigProperty"]]:
|
|
427
|
-
'''
|
|
432
|
+
'''Contains communication time configuration for an outbound campaign.'''
|
|
428
433
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.CommunicationTimeConfigProperty"]], jsii.get(self, "communicationTimeConfig"))
|
|
429
434
|
|
|
430
435
|
@communication_time_config.setter
|
|
@@ -440,7 +445,7 @@ class CfnCampaign(
|
|
|
440
445
|
@builtins.property
|
|
441
446
|
@jsii.member(jsii_name="connectCampaignFlowArn")
|
|
442
447
|
def connect_campaign_flow_arn(self) -> typing.Optional[builtins.str]:
|
|
443
|
-
'''
|
|
448
|
+
'''The Amazon Resource Name (ARN) of the Amazon Connect campaign flow associated with the outbound campaign.'''
|
|
444
449
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "connectCampaignFlowArn"))
|
|
445
450
|
|
|
446
451
|
@connect_campaign_flow_arn.setter
|
|
@@ -455,7 +460,7 @@ class CfnCampaign(
|
|
|
455
460
|
def schedule(
|
|
456
461
|
self,
|
|
457
462
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.ScheduleProperty"]]:
|
|
458
|
-
'''
|
|
463
|
+
'''Contains the schedule configuration.'''
|
|
459
464
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.ScheduleProperty"]], jsii.get(self, "schedule"))
|
|
460
465
|
|
|
461
466
|
@schedule.setter
|
|
@@ -473,7 +478,7 @@ class CfnCampaign(
|
|
|
473
478
|
def source(
|
|
474
479
|
self,
|
|
475
480
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.SourceProperty"]]:
|
|
476
|
-
'''
|
|
481
|
+
'''Contains source configuration.'''
|
|
477
482
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.SourceProperty"]], jsii.get(self, "source"))
|
|
478
483
|
|
|
479
484
|
@source.setter
|
|
@@ -489,7 +494,7 @@ class CfnCampaign(
|
|
|
489
494
|
@builtins.property
|
|
490
495
|
@jsii.member(jsii_name="tags")
|
|
491
496
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
492
|
-
'''
|
|
497
|
+
'''The tags used to organize, track, or control access for this resource.'''
|
|
493
498
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
494
499
|
|
|
495
500
|
@tags.setter
|
|
@@ -514,10 +519,10 @@ class CfnCampaign(
|
|
|
514
519
|
enable_answer_machine_detection: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
515
520
|
await_answer_machine_prompt: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
516
521
|
) -> None:
|
|
517
|
-
'''
|
|
522
|
+
'''Contains answering machine detection configuration.
|
|
518
523
|
|
|
519
|
-
:param enable_answer_machine_detection:
|
|
520
|
-
:param await_answer_machine_prompt:
|
|
524
|
+
:param enable_answer_machine_detection: Enables answering machine detection.
|
|
525
|
+
:param await_answer_machine_prompt: Whether or not waiting for an answer machine prompt is enabled.
|
|
521
526
|
|
|
522
527
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-answermachinedetectionconfig.html
|
|
523
528
|
:exampleMetadata: fixture=_generated
|
|
@@ -549,7 +554,7 @@ class CfnCampaign(
|
|
|
549
554
|
def enable_answer_machine_detection(
|
|
550
555
|
self,
|
|
551
556
|
) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
552
|
-
'''
|
|
557
|
+
'''Enables answering machine detection.
|
|
553
558
|
|
|
554
559
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-answermachinedetectionconfig.html#cfn-connectcampaignsv2-campaign-answermachinedetectionconfig-enableanswermachinedetection
|
|
555
560
|
'''
|
|
@@ -561,7 +566,7 @@ class CfnCampaign(
|
|
|
561
566
|
def await_answer_machine_prompt(
|
|
562
567
|
self,
|
|
563
568
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
564
|
-
'''
|
|
569
|
+
'''Whether or not waiting for an answer machine prompt is enabled.
|
|
565
570
|
|
|
566
571
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-answermachinedetectionconfig.html#cfn-connectcampaignsv2-campaign-answermachinedetectionconfig-awaitanswermachineprompt
|
|
567
572
|
'''
|
|
@@ -592,11 +597,11 @@ class CfnCampaign(
|
|
|
592
597
|
sms: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.SmsChannelSubtypeConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
593
598
|
telephony: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.TelephonyChannelSubtypeConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
594
599
|
) -> None:
|
|
595
|
-
'''
|
|
600
|
+
'''Contains channel subtype configuration for an outbound campaign.
|
|
596
601
|
|
|
597
|
-
:param email:
|
|
598
|
-
:param sms: SMS
|
|
599
|
-
:param telephony:
|
|
602
|
+
:param email: The configuration of the email channel subtype.
|
|
603
|
+
:param sms: The configuration of the SMS channel subtype.
|
|
604
|
+
:param telephony: The configuration of the telephony channel subtype.
|
|
600
605
|
|
|
601
606
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-channelsubtypeconfig.html
|
|
602
607
|
:exampleMetadata: fixture=_generated
|
|
@@ -683,7 +688,7 @@ class CfnCampaign(
|
|
|
683
688
|
def email(
|
|
684
689
|
self,
|
|
685
690
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.EmailChannelSubtypeConfigProperty"]]:
|
|
686
|
-
'''
|
|
691
|
+
'''The configuration of the email channel subtype.
|
|
687
692
|
|
|
688
693
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-channelsubtypeconfig.html#cfn-connectcampaignsv2-campaign-channelsubtypeconfig-email
|
|
689
694
|
'''
|
|
@@ -694,7 +699,7 @@ class CfnCampaign(
|
|
|
694
699
|
def sms(
|
|
695
700
|
self,
|
|
696
701
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.SmsChannelSubtypeConfigProperty"]]:
|
|
697
|
-
'''SMS
|
|
702
|
+
'''The configuration of the SMS channel subtype.
|
|
698
703
|
|
|
699
704
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-channelsubtypeconfig.html#cfn-connectcampaignsv2-campaign-channelsubtypeconfig-sms
|
|
700
705
|
'''
|
|
@@ -705,7 +710,7 @@ class CfnCampaign(
|
|
|
705
710
|
def telephony(
|
|
706
711
|
self,
|
|
707
712
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.TelephonyChannelSubtypeConfigProperty"]]:
|
|
708
|
-
'''
|
|
713
|
+
'''The configuration of the telephony channel subtype.
|
|
709
714
|
|
|
710
715
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-channelsubtypeconfig.html#cfn-connectcampaignsv2-campaign-channelsubtypeconfig-telephony
|
|
711
716
|
'''
|
|
@@ -740,11 +745,11 @@ class CfnCampaign(
|
|
|
740
745
|
max_count_per_recipient: jsii.Number,
|
|
741
746
|
unit: builtins.str,
|
|
742
747
|
) -> None:
|
|
743
|
-
'''
|
|
748
|
+
'''Contains information about a communication limit.
|
|
744
749
|
|
|
745
|
-
:param frequency:
|
|
746
|
-
:param max_count_per_recipient:
|
|
747
|
-
:param unit: The communication limit
|
|
750
|
+
:param frequency: The frequency of communication limit evaluation.
|
|
751
|
+
:param max_count_per_recipient: The maximum outreaching count for each recipient.
|
|
752
|
+
:param unit: The unit of communication limit evaluation.
|
|
748
753
|
|
|
749
754
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimit.html
|
|
750
755
|
:exampleMetadata: fixture=_generated
|
|
@@ -774,7 +779,8 @@ class CfnCampaign(
|
|
|
774
779
|
|
|
775
780
|
@builtins.property
|
|
776
781
|
def frequency(self) -> jsii.Number:
|
|
777
|
-
'''
|
|
782
|
+
'''The frequency of communication limit evaluation.
|
|
783
|
+
|
|
778
784
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimit.html#cfn-connectcampaignsv2-campaign-communicationlimit-frequency
|
|
779
785
|
'''
|
|
780
786
|
result = self._values.get("frequency")
|
|
@@ -783,7 +789,8 @@ class CfnCampaign(
|
|
|
783
789
|
|
|
784
790
|
@builtins.property
|
|
785
791
|
def max_count_per_recipient(self) -> jsii.Number:
|
|
786
|
-
'''
|
|
792
|
+
'''The maximum outreaching count for each recipient.
|
|
793
|
+
|
|
787
794
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimit.html#cfn-connectcampaignsv2-campaign-communicationlimit-maxcountperrecipient
|
|
788
795
|
'''
|
|
789
796
|
result = self._values.get("max_count_per_recipient")
|
|
@@ -792,7 +799,7 @@ class CfnCampaign(
|
|
|
792
799
|
|
|
793
800
|
@builtins.property
|
|
794
801
|
def unit(self) -> builtins.str:
|
|
795
|
-
'''The communication limit
|
|
802
|
+
'''The unit of communication limit evaluation.
|
|
796
803
|
|
|
797
804
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimit.html#cfn-connectcampaignsv2-campaign-communicationlimit-unit
|
|
798
805
|
'''
|
|
@@ -822,9 +829,9 @@ class CfnCampaign(
|
|
|
822
829
|
*,
|
|
823
830
|
all_channels_subtypes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.CommunicationLimitsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
824
831
|
) -> None:
|
|
825
|
-
'''
|
|
832
|
+
'''Contains the communication limits configuration for an outbound campaign.
|
|
826
833
|
|
|
827
|
-
:param all_channels_subtypes:
|
|
834
|
+
:param all_channels_subtypes: The CommunicationLimits that apply to all channel subtypes defined in an outbound campaign.
|
|
828
835
|
|
|
829
836
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimitsconfig.html
|
|
830
837
|
:exampleMetadata: fixture=_generated
|
|
@@ -856,7 +863,7 @@ class CfnCampaign(
|
|
|
856
863
|
def all_channels_subtypes(
|
|
857
864
|
self,
|
|
858
865
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.CommunicationLimitsProperty"]]:
|
|
859
|
-
'''
|
|
866
|
+
'''The CommunicationLimits that apply to all channel subtypes defined in an outbound campaign.
|
|
860
867
|
|
|
861
868
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimitsconfig.html#cfn-connectcampaignsv2-campaign-communicationlimitsconfig-allchannelssubtypes
|
|
862
869
|
'''
|
|
@@ -885,9 +892,9 @@ class CfnCampaign(
|
|
|
885
892
|
*,
|
|
886
893
|
communication_limit_list: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.CommunicationLimitProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
887
894
|
) -> None:
|
|
888
|
-
'''
|
|
895
|
+
'''Contains information about communication limits.
|
|
889
896
|
|
|
890
|
-
:param communication_limit_list:
|
|
897
|
+
:param communication_limit_list: The list of CommunicationLimits.
|
|
891
898
|
|
|
892
899
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimits.html
|
|
893
900
|
:exampleMetadata: fixture=_generated
|
|
@@ -917,7 +924,7 @@ class CfnCampaign(
|
|
|
917
924
|
def communication_limit_list(
|
|
918
925
|
self,
|
|
919
926
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnCampaign.CommunicationLimitProperty"]]]]:
|
|
920
|
-
'''
|
|
927
|
+
'''The list of CommunicationLimits.
|
|
921
928
|
|
|
922
929
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimits.html#cfn-connectcampaignsv2-campaign-communicationlimits-communicationlimitlist
|
|
923
930
|
'''
|
|
@@ -954,12 +961,12 @@ class CfnCampaign(
|
|
|
954
961
|
sms: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.TimeWindowProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
955
962
|
telephony: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.TimeWindowProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
956
963
|
) -> None:
|
|
957
|
-
'''
|
|
964
|
+
'''Communication time configuration for an outbound campaign.
|
|
958
965
|
|
|
959
|
-
:param local_time_zone_config:
|
|
960
|
-
:param email:
|
|
961
|
-
:param sms:
|
|
962
|
-
:param telephony:
|
|
966
|
+
:param local_time_zone_config: The local timezone configuration.
|
|
967
|
+
:param email: The communication time configuration for the email channel subtype.
|
|
968
|
+
:param sms: The communication time configuration for the SMS channel subtype.
|
|
969
|
+
:param telephony: The communication time configuration for the telephony channel subtype.
|
|
963
970
|
|
|
964
971
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationtimeconfig.html
|
|
965
972
|
:exampleMetadata: fixture=_generated
|
|
@@ -1065,7 +1072,7 @@ class CfnCampaign(
|
|
|
1065
1072
|
def local_time_zone_config(
|
|
1066
1073
|
self,
|
|
1067
1074
|
) -> typing.Union[_IResolvable_da3f097b, "CfnCampaign.LocalTimeZoneConfigProperty"]:
|
|
1068
|
-
'''
|
|
1075
|
+
'''The local timezone configuration.
|
|
1069
1076
|
|
|
1070
1077
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationtimeconfig.html#cfn-connectcampaignsv2-campaign-communicationtimeconfig-localtimezoneconfig
|
|
1071
1078
|
'''
|
|
@@ -1077,7 +1084,7 @@ class CfnCampaign(
|
|
|
1077
1084
|
def email(
|
|
1078
1085
|
self,
|
|
1079
1086
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.TimeWindowProperty"]]:
|
|
1080
|
-
'''
|
|
1087
|
+
'''The communication time configuration for the email channel subtype.
|
|
1081
1088
|
|
|
1082
1089
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationtimeconfig.html#cfn-connectcampaignsv2-campaign-communicationtimeconfig-email
|
|
1083
1090
|
'''
|
|
@@ -1088,7 +1095,7 @@ class CfnCampaign(
|
|
|
1088
1095
|
def sms(
|
|
1089
1096
|
self,
|
|
1090
1097
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.TimeWindowProperty"]]:
|
|
1091
|
-
'''
|
|
1098
|
+
'''The communication time configuration for the SMS channel subtype.
|
|
1092
1099
|
|
|
1093
1100
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationtimeconfig.html#cfn-connectcampaignsv2-campaign-communicationtimeconfig-sms
|
|
1094
1101
|
'''
|
|
@@ -1099,7 +1106,7 @@ class CfnCampaign(
|
|
|
1099
1106
|
def telephony(
|
|
1100
1107
|
self,
|
|
1101
1108
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.TimeWindowProperty"]]:
|
|
1102
|
-
'''
|
|
1109
|
+
'''The communication time configuration for the telephony channel subtype.
|
|
1103
1110
|
|
|
1104
1111
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationtimeconfig.html#cfn-connectcampaignsv2-campaign-communicationtimeconfig-telephony
|
|
1105
1112
|
'''
|
|
@@ -1129,10 +1136,10 @@ class CfnCampaign(
|
|
|
1129
1136
|
key: typing.Optional[builtins.str] = None,
|
|
1130
1137
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.TimeRangeProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1131
1138
|
) -> None:
|
|
1132
|
-
'''
|
|
1139
|
+
'''The daily hours configuration.
|
|
1133
1140
|
|
|
1134
|
-
:param key:
|
|
1135
|
-
:param value:
|
|
1141
|
+
:param key: The key for DailyHour.
|
|
1142
|
+
:param value: The value for DailyHour.
|
|
1136
1143
|
|
|
1137
1144
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-dailyhour.html
|
|
1138
1145
|
:exampleMetadata: fixture=_generated
|
|
@@ -1163,7 +1170,7 @@ class CfnCampaign(
|
|
|
1163
1170
|
|
|
1164
1171
|
@builtins.property
|
|
1165
1172
|
def key(self) -> typing.Optional[builtins.str]:
|
|
1166
|
-
'''
|
|
1173
|
+
'''The key for DailyHour.
|
|
1167
1174
|
|
|
1168
1175
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-dailyhour.html#cfn-connectcampaignsv2-campaign-dailyhour-key
|
|
1169
1176
|
'''
|
|
@@ -1174,7 +1181,7 @@ class CfnCampaign(
|
|
|
1174
1181
|
def value(
|
|
1175
1182
|
self,
|
|
1176
1183
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnCampaign.TimeRangeProperty"]]]]:
|
|
1177
|
-
'''
|
|
1184
|
+
'''The value for DailyHour.
|
|
1178
1185
|
|
|
1179
1186
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-dailyhour.html#cfn-connectcampaignsv2-campaign-dailyhour-value
|
|
1180
1187
|
'''
|
|
@@ -1209,11 +1216,11 @@ class CfnCampaign(
|
|
|
1209
1216
|
outbound_mode: typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.EmailOutboundModeProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
1210
1217
|
capacity: typing.Optional[jsii.Number] = None,
|
|
1211
1218
|
) -> None:
|
|
1212
|
-
'''
|
|
1219
|
+
'''The configuration for the email channel subtype.
|
|
1213
1220
|
|
|
1214
|
-
:param default_outbound_config:
|
|
1215
|
-
:param outbound_mode:
|
|
1216
|
-
:param capacity:
|
|
1221
|
+
:param default_outbound_config: The default email outbound configuration of an outbound campaign.
|
|
1222
|
+
:param outbound_mode: The outbound mode for email of an outbound campaign.
|
|
1223
|
+
:param capacity: The allocation of email capacity between multiple running outbound campaigns.
|
|
1217
1224
|
|
|
1218
1225
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-emailchannelsubtypeconfig.html
|
|
1219
1226
|
:exampleMetadata: fixture=_generated
|
|
@@ -1258,7 +1265,7 @@ class CfnCampaign(
|
|
|
1258
1265
|
def default_outbound_config(
|
|
1259
1266
|
self,
|
|
1260
1267
|
) -> typing.Union[_IResolvable_da3f097b, "CfnCampaign.EmailOutboundConfigProperty"]:
|
|
1261
|
-
'''
|
|
1268
|
+
'''The default email outbound configuration of an outbound campaign.
|
|
1262
1269
|
|
|
1263
1270
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-emailchannelsubtypeconfig.html#cfn-connectcampaignsv2-campaign-emailchannelsubtypeconfig-defaultoutboundconfig
|
|
1264
1271
|
'''
|
|
@@ -1270,7 +1277,7 @@ class CfnCampaign(
|
|
|
1270
1277
|
def outbound_mode(
|
|
1271
1278
|
self,
|
|
1272
1279
|
) -> typing.Union[_IResolvable_da3f097b, "CfnCampaign.EmailOutboundModeProperty"]:
|
|
1273
|
-
'''
|
|
1280
|
+
'''The outbound mode for email of an outbound campaign.
|
|
1274
1281
|
|
|
1275
1282
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-emailchannelsubtypeconfig.html#cfn-connectcampaignsv2-campaign-emailchannelsubtypeconfig-outboundmode
|
|
1276
1283
|
'''
|
|
@@ -1280,7 +1287,7 @@ class CfnCampaign(
|
|
|
1280
1287
|
|
|
1281
1288
|
@builtins.property
|
|
1282
1289
|
def capacity(self) -> typing.Optional[jsii.Number]:
|
|
1283
|
-
'''
|
|
1290
|
+
'''The allocation of email capacity between multiple running outbound campaigns.
|
|
1284
1291
|
|
|
1285
1292
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-emailchannelsubtypeconfig.html#cfn-connectcampaignsv2-campaign-emailchannelsubtypeconfig-capacity
|
|
1286
1293
|
'''
|
|
@@ -1315,11 +1322,11 @@ class CfnCampaign(
|
|
|
1315
1322
|
wisdom_template_arn: builtins.str,
|
|
1316
1323
|
source_email_address_display_name: typing.Optional[builtins.str] = None,
|
|
1317
1324
|
) -> None:
|
|
1318
|
-
'''
|
|
1325
|
+
'''The outbound configuration for email.
|
|
1319
1326
|
|
|
1320
|
-
:param connect_source_email_address:
|
|
1321
|
-
:param wisdom_template_arn:
|
|
1322
|
-
:param source_email_address_display_name: The name
|
|
1327
|
+
:param connect_source_email_address: The Amazon Connect source email address.
|
|
1328
|
+
:param wisdom_template_arn: The Amazon Resource Name (ARN) of the Amazon Q in Connect template.
|
|
1329
|
+
:param source_email_address_display_name: The display name for the Amazon Connect source email address.
|
|
1323
1330
|
|
|
1324
1331
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-emailoutboundconfig.html
|
|
1325
1332
|
:exampleMetadata: fixture=_generated
|
|
@@ -1352,7 +1359,7 @@ class CfnCampaign(
|
|
|
1352
1359
|
|
|
1353
1360
|
@builtins.property
|
|
1354
1361
|
def connect_source_email_address(self) -> builtins.str:
|
|
1355
|
-
'''
|
|
1362
|
+
'''The Amazon Connect source email address.
|
|
1356
1363
|
|
|
1357
1364
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-emailoutboundconfig.html#cfn-connectcampaignsv2-campaign-emailoutboundconfig-connectsourceemailaddress
|
|
1358
1365
|
'''
|
|
@@ -1362,7 +1369,7 @@ class CfnCampaign(
|
|
|
1362
1369
|
|
|
1363
1370
|
@builtins.property
|
|
1364
1371
|
def wisdom_template_arn(self) -> builtins.str:
|
|
1365
|
-
'''
|
|
1372
|
+
'''The Amazon Resource Name (ARN) of the Amazon Q in Connect template.
|
|
1366
1373
|
|
|
1367
1374
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-emailoutboundconfig.html#cfn-connectcampaignsv2-campaign-emailoutboundconfig-wisdomtemplatearn
|
|
1368
1375
|
'''
|
|
@@ -1372,7 +1379,7 @@ class CfnCampaign(
|
|
|
1372
1379
|
|
|
1373
1380
|
@builtins.property
|
|
1374
1381
|
def source_email_address_display_name(self) -> typing.Optional[builtins.str]:
|
|
1375
|
-
'''The name
|
|
1382
|
+
'''The display name for the Amazon Connect source email address.
|
|
1376
1383
|
|
|
1377
1384
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-emailoutboundconfig.html#cfn-connectcampaignsv2-campaign-emailoutboundconfig-sourceemailaddressdisplayname
|
|
1378
1385
|
'''
|
|
@@ -1397,9 +1404,9 @@ class CfnCampaign(
|
|
|
1397
1404
|
)
|
|
1398
1405
|
class EmailOutboundModeProperty:
|
|
1399
1406
|
def __init__(self, *, agentless_config: typing.Any = None) -> None:
|
|
1400
|
-
'''
|
|
1407
|
+
'''Contains information about email outbound mode.
|
|
1401
1408
|
|
|
1402
|
-
:param agentless_config:
|
|
1409
|
+
:param agentless_config: The agentless outbound mode configuration for email.
|
|
1403
1410
|
|
|
1404
1411
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-emailoutboundmode.html
|
|
1405
1412
|
:exampleMetadata: fixture=_generated
|
|
@@ -1425,7 +1432,7 @@ class CfnCampaign(
|
|
|
1425
1432
|
|
|
1426
1433
|
@builtins.property
|
|
1427
1434
|
def agentless_config(self) -> typing.Any:
|
|
1428
|
-
'''
|
|
1435
|
+
'''The agentless outbound mode configuration for email.
|
|
1429
1436
|
|
|
1430
1437
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-emailoutboundmode.html#cfn-connectcampaignsv2-campaign-emailoutboundmode-agentlessconfig
|
|
1431
1438
|
'''
|
|
@@ -1458,10 +1465,10 @@ class CfnCampaign(
|
|
|
1458
1465
|
default_time_zone: typing.Optional[builtins.str] = None,
|
|
1459
1466
|
local_time_zone_detection: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
1460
1467
|
) -> None:
|
|
1461
|
-
'''
|
|
1468
|
+
'''The configuration of timezone for recipient.
|
|
1462
1469
|
|
|
1463
|
-
:param default_time_zone:
|
|
1464
|
-
:param local_time_zone_detection:
|
|
1470
|
+
:param default_time_zone: The timezone to use for all recipients.
|
|
1471
|
+
:param local_time_zone_detection: Detects methods for the recipient's timezone.
|
|
1465
1472
|
|
|
1466
1473
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-localtimezoneconfig.html
|
|
1467
1474
|
:exampleMetadata: fixture=_generated
|
|
@@ -1489,7 +1496,7 @@ class CfnCampaign(
|
|
|
1489
1496
|
|
|
1490
1497
|
@builtins.property
|
|
1491
1498
|
def default_time_zone(self) -> typing.Optional[builtins.str]:
|
|
1492
|
-
'''
|
|
1499
|
+
'''The timezone to use for all recipients.
|
|
1493
1500
|
|
|
1494
1501
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-localtimezoneconfig.html#cfn-connectcampaignsv2-campaign-localtimezoneconfig-defaulttimezone
|
|
1495
1502
|
'''
|
|
@@ -1500,7 +1507,7 @@ class CfnCampaign(
|
|
|
1500
1507
|
def local_time_zone_detection(
|
|
1501
1508
|
self,
|
|
1502
1509
|
) -> typing.Optional[typing.List[builtins.str]]:
|
|
1503
|
-
'''
|
|
1510
|
+
'''Detects methods for the recipient's timezone.
|
|
1504
1511
|
|
|
1505
1512
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-localtimezoneconfig.html#cfn-connectcampaignsv2-campaign-localtimezoneconfig-localtimezonedetection
|
|
1506
1513
|
'''
|
|
@@ -1529,9 +1536,9 @@ class CfnCampaign(
|
|
|
1529
1536
|
*,
|
|
1530
1537
|
daily_hours: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.DailyHourProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
1531
1538
|
) -> None:
|
|
1532
|
-
'''
|
|
1539
|
+
'''Contains information about open hours.
|
|
1533
1540
|
|
|
1534
|
-
:param daily_hours:
|
|
1541
|
+
:param daily_hours: The daily hours configuration.
|
|
1535
1542
|
|
|
1536
1543
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-openhours.html
|
|
1537
1544
|
:exampleMetadata: fixture=_generated
|
|
@@ -1563,7 +1570,7 @@ class CfnCampaign(
|
|
|
1563
1570
|
def daily_hours(
|
|
1564
1571
|
self,
|
|
1565
1572
|
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnCampaign.DailyHourProperty"]]]:
|
|
1566
|
-
'''
|
|
1573
|
+
'''The daily hours configuration.
|
|
1567
1574
|
|
|
1568
1575
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-openhours.html#cfn-connectcampaignsv2-campaign-openhours-dailyhours
|
|
1569
1576
|
'''
|
|
@@ -1589,9 +1596,9 @@ class CfnCampaign(
|
|
|
1589
1596
|
)
|
|
1590
1597
|
class PredictiveConfigProperty:
|
|
1591
1598
|
def __init__(self, *, bandwidth_allocation: jsii.Number) -> None:
|
|
1592
|
-
'''
|
|
1599
|
+
'''Contains predictive outbound mode configuration.
|
|
1593
1600
|
|
|
1594
|
-
:param bandwidth_allocation:
|
|
1601
|
+
:param bandwidth_allocation: Bandwidth allocation for the predictive outbound mode.
|
|
1595
1602
|
|
|
1596
1603
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-predictiveconfig.html
|
|
1597
1604
|
:exampleMetadata: fixture=_generated
|
|
@@ -1615,7 +1622,7 @@ class CfnCampaign(
|
|
|
1615
1622
|
|
|
1616
1623
|
@builtins.property
|
|
1617
1624
|
def bandwidth_allocation(self) -> jsii.Number:
|
|
1618
|
-
'''
|
|
1625
|
+
'''Bandwidth allocation for the predictive outbound mode.
|
|
1619
1626
|
|
|
1620
1627
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-predictiveconfig.html#cfn-connectcampaignsv2-campaign-predictiveconfig-bandwidthallocation
|
|
1621
1628
|
'''
|
|
@@ -1641,9 +1648,9 @@ class CfnCampaign(
|
|
|
1641
1648
|
)
|
|
1642
1649
|
class ProgressiveConfigProperty:
|
|
1643
1650
|
def __init__(self, *, bandwidth_allocation: jsii.Number) -> None:
|
|
1644
|
-
'''
|
|
1651
|
+
'''Contains the progressive outbound mode configuration.
|
|
1645
1652
|
|
|
1646
|
-
:param bandwidth_allocation:
|
|
1653
|
+
:param bandwidth_allocation: Bandwidth allocation for the progressive outbound mode.
|
|
1647
1654
|
|
|
1648
1655
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-progressiveconfig.html
|
|
1649
1656
|
:exampleMetadata: fixture=_generated
|
|
@@ -1667,7 +1674,7 @@ class CfnCampaign(
|
|
|
1667
1674
|
|
|
1668
1675
|
@builtins.property
|
|
1669
1676
|
def bandwidth_allocation(self) -> jsii.Number:
|
|
1670
|
-
'''
|
|
1677
|
+
'''Bandwidth allocation for the progressive outbound mode.
|
|
1671
1678
|
|
|
1672
1679
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-progressiveconfig.html#cfn-connectcampaignsv2-campaign-progressiveconfig-bandwidthallocation
|
|
1673
1680
|
'''
|
|
@@ -1703,11 +1710,11 @@ class CfnCampaign(
|
|
|
1703
1710
|
start_date: builtins.str,
|
|
1704
1711
|
name: typing.Optional[builtins.str] = None,
|
|
1705
1712
|
) -> None:
|
|
1706
|
-
'''
|
|
1713
|
+
'''Contains information about a restricted period.
|
|
1707
1714
|
|
|
1708
|
-
:param end_date:
|
|
1709
|
-
:param start_date:
|
|
1710
|
-
:param name: The name of
|
|
1715
|
+
:param end_date: The end date of the restricted period.
|
|
1716
|
+
:param start_date: The start date of the restricted period.
|
|
1717
|
+
:param name: The name of the restricted period.
|
|
1711
1718
|
|
|
1712
1719
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-restrictedperiod.html
|
|
1713
1720
|
:exampleMetadata: fixture=_generated
|
|
@@ -1740,7 +1747,7 @@ class CfnCampaign(
|
|
|
1740
1747
|
|
|
1741
1748
|
@builtins.property
|
|
1742
1749
|
def end_date(self) -> builtins.str:
|
|
1743
|
-
'''
|
|
1750
|
+
'''The end date of the restricted period.
|
|
1744
1751
|
|
|
1745
1752
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-restrictedperiod.html#cfn-connectcampaignsv2-campaign-restrictedperiod-enddate
|
|
1746
1753
|
'''
|
|
@@ -1750,7 +1757,7 @@ class CfnCampaign(
|
|
|
1750
1757
|
|
|
1751
1758
|
@builtins.property
|
|
1752
1759
|
def start_date(self) -> builtins.str:
|
|
1753
|
-
'''
|
|
1760
|
+
'''The start date of the restricted period.
|
|
1754
1761
|
|
|
1755
1762
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-restrictedperiod.html#cfn-connectcampaignsv2-campaign-restrictedperiod-startdate
|
|
1756
1763
|
'''
|
|
@@ -1760,7 +1767,7 @@ class CfnCampaign(
|
|
|
1760
1767
|
|
|
1761
1768
|
@builtins.property
|
|
1762
1769
|
def name(self) -> typing.Optional[builtins.str]:
|
|
1763
|
-
'''The name of
|
|
1770
|
+
'''The name of the restricted period.
|
|
1764
1771
|
|
|
1765
1772
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-restrictedperiod.html#cfn-connectcampaignsv2-campaign-restrictedperiod-name
|
|
1766
1773
|
'''
|
|
@@ -1789,9 +1796,9 @@ class CfnCampaign(
|
|
|
1789
1796
|
*,
|
|
1790
1797
|
restricted_period_list: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.RestrictedPeriodProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
1791
1798
|
) -> None:
|
|
1792
|
-
'''
|
|
1799
|
+
'''Contains information about restricted periods.
|
|
1793
1800
|
|
|
1794
|
-
:param restricted_period_list:
|
|
1801
|
+
:param restricted_period_list: The restricted period list.
|
|
1795
1802
|
|
|
1796
1803
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-restrictedperiods.html
|
|
1797
1804
|
:exampleMetadata: fixture=_generated
|
|
@@ -1823,7 +1830,7 @@ class CfnCampaign(
|
|
|
1823
1830
|
def restricted_period_list(
|
|
1824
1831
|
self,
|
|
1825
1832
|
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnCampaign.RestrictedPeriodProperty"]]]:
|
|
1826
|
-
'''
|
|
1833
|
+
'''The restricted period list.
|
|
1827
1834
|
|
|
1828
1835
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-restrictedperiods.html#cfn-connectcampaignsv2-campaign-restrictedperiods-restrictedperiodlist
|
|
1829
1836
|
'''
|
|
@@ -1859,11 +1866,11 @@ class CfnCampaign(
|
|
|
1859
1866
|
start_time: builtins.str,
|
|
1860
1867
|
refresh_frequency: typing.Optional[builtins.str] = None,
|
|
1861
1868
|
) -> None:
|
|
1862
|
-
'''
|
|
1869
|
+
'''Contains the schedule configuration.
|
|
1863
1870
|
|
|
1864
|
-
:param end_time:
|
|
1865
|
-
:param start_time:
|
|
1866
|
-
:param refresh_frequency:
|
|
1871
|
+
:param end_time: The end time of the schedule in UTC.
|
|
1872
|
+
:param start_time: The start time of the schedule in UTC.
|
|
1873
|
+
:param refresh_frequency: The refresh frequency of the campaign.
|
|
1867
1874
|
|
|
1868
1875
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-schedule.html
|
|
1869
1876
|
:exampleMetadata: fixture=_generated
|
|
@@ -1896,7 +1903,7 @@ class CfnCampaign(
|
|
|
1896
1903
|
|
|
1897
1904
|
@builtins.property
|
|
1898
1905
|
def end_time(self) -> builtins.str:
|
|
1899
|
-
'''
|
|
1906
|
+
'''The end time of the schedule in UTC.
|
|
1900
1907
|
|
|
1901
1908
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-schedule.html#cfn-connectcampaignsv2-campaign-schedule-endtime
|
|
1902
1909
|
'''
|
|
@@ -1906,7 +1913,7 @@ class CfnCampaign(
|
|
|
1906
1913
|
|
|
1907
1914
|
@builtins.property
|
|
1908
1915
|
def start_time(self) -> builtins.str:
|
|
1909
|
-
'''
|
|
1916
|
+
'''The start time of the schedule in UTC.
|
|
1910
1917
|
|
|
1911
1918
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-schedule.html#cfn-connectcampaignsv2-campaign-schedule-starttime
|
|
1912
1919
|
'''
|
|
@@ -1916,7 +1923,7 @@ class CfnCampaign(
|
|
|
1916
1923
|
|
|
1917
1924
|
@builtins.property
|
|
1918
1925
|
def refresh_frequency(self) -> typing.Optional[builtins.str]:
|
|
1919
|
-
'''
|
|
1926
|
+
'''The refresh frequency of the campaign.
|
|
1920
1927
|
|
|
1921
1928
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-schedule.html#cfn-connectcampaignsv2-campaign-schedule-refreshfrequency
|
|
1922
1929
|
'''
|
|
@@ -1951,11 +1958,11 @@ class CfnCampaign(
|
|
|
1951
1958
|
outbound_mode: typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.SmsOutboundModeProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
1952
1959
|
capacity: typing.Optional[jsii.Number] = None,
|
|
1953
1960
|
) -> None:
|
|
1954
|
-
'''SMS
|
|
1961
|
+
'''The configuration for the SMS channel subtype.
|
|
1955
1962
|
|
|
1956
|
-
:param default_outbound_config:
|
|
1957
|
-
:param outbound_mode: SMS
|
|
1958
|
-
:param capacity:
|
|
1963
|
+
:param default_outbound_config: The default SMS outbound configuration of an outbound campaign.
|
|
1964
|
+
:param outbound_mode: The outbound mode of SMS for an outbound campaign.
|
|
1965
|
+
:param capacity: The allocation of SMS capacity between multiple running outbound campaigns.
|
|
1959
1966
|
|
|
1960
1967
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-smschannelsubtypeconfig.html
|
|
1961
1968
|
:exampleMetadata: fixture=_generated
|
|
@@ -1997,7 +2004,7 @@ class CfnCampaign(
|
|
|
1997
2004
|
def default_outbound_config(
|
|
1998
2005
|
self,
|
|
1999
2006
|
) -> typing.Union[_IResolvable_da3f097b, "CfnCampaign.SmsOutboundConfigProperty"]:
|
|
2000
|
-
'''
|
|
2007
|
+
'''The default SMS outbound configuration of an outbound campaign.
|
|
2001
2008
|
|
|
2002
2009
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-smschannelsubtypeconfig.html#cfn-connectcampaignsv2-campaign-smschannelsubtypeconfig-defaultoutboundconfig
|
|
2003
2010
|
'''
|
|
@@ -2009,7 +2016,7 @@ class CfnCampaign(
|
|
|
2009
2016
|
def outbound_mode(
|
|
2010
2017
|
self,
|
|
2011
2018
|
) -> typing.Union[_IResolvable_da3f097b, "CfnCampaign.SmsOutboundModeProperty"]:
|
|
2012
|
-
'''SMS
|
|
2019
|
+
'''The outbound mode of SMS for an outbound campaign.
|
|
2013
2020
|
|
|
2014
2021
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-smschannelsubtypeconfig.html#cfn-connectcampaignsv2-campaign-smschannelsubtypeconfig-outboundmode
|
|
2015
2022
|
'''
|
|
@@ -2019,7 +2026,7 @@ class CfnCampaign(
|
|
|
2019
2026
|
|
|
2020
2027
|
@builtins.property
|
|
2021
2028
|
def capacity(self) -> typing.Optional[jsii.Number]:
|
|
2022
|
-
'''
|
|
2029
|
+
'''The allocation of SMS capacity between multiple running outbound campaigns.
|
|
2023
2030
|
|
|
2024
2031
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-smschannelsubtypeconfig.html#cfn-connectcampaignsv2-campaign-smschannelsubtypeconfig-capacity
|
|
2025
2032
|
'''
|
|
@@ -2052,10 +2059,10 @@ class CfnCampaign(
|
|
|
2052
2059
|
connect_source_phone_number_arn: builtins.str,
|
|
2053
2060
|
wisdom_template_arn: builtins.str,
|
|
2054
2061
|
) -> None:
|
|
2055
|
-
'''
|
|
2062
|
+
'''The outbound configuration for SMS.
|
|
2056
2063
|
|
|
2057
|
-
:param connect_source_phone_number_arn:
|
|
2058
|
-
:param wisdom_template_arn:
|
|
2064
|
+
:param connect_source_phone_number_arn: The Amazon Resource Name (ARN) of the Amazon Connect source SMS phone number.
|
|
2065
|
+
:param wisdom_template_arn: The Amazon Resource Name (ARN) of the Amazon Q in Connect template.
|
|
2059
2066
|
|
|
2060
2067
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-smsoutboundconfig.html
|
|
2061
2068
|
:exampleMetadata: fixture=_generated
|
|
@@ -2082,7 +2089,7 @@ class CfnCampaign(
|
|
|
2082
2089
|
|
|
2083
2090
|
@builtins.property
|
|
2084
2091
|
def connect_source_phone_number_arn(self) -> builtins.str:
|
|
2085
|
-
'''
|
|
2092
|
+
'''The Amazon Resource Name (ARN) of the Amazon Connect source SMS phone number.
|
|
2086
2093
|
|
|
2087
2094
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-smsoutboundconfig.html#cfn-connectcampaignsv2-campaign-smsoutboundconfig-connectsourcephonenumberarn
|
|
2088
2095
|
'''
|
|
@@ -2092,7 +2099,7 @@ class CfnCampaign(
|
|
|
2092
2099
|
|
|
2093
2100
|
@builtins.property
|
|
2094
2101
|
def wisdom_template_arn(self) -> builtins.str:
|
|
2095
|
-
'''
|
|
2102
|
+
'''The Amazon Resource Name (ARN) of the Amazon Q in Connect template.
|
|
2096
2103
|
|
|
2097
2104
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-smsoutboundconfig.html#cfn-connectcampaignsv2-campaign-smsoutboundconfig-wisdomtemplatearn
|
|
2098
2105
|
'''
|
|
@@ -2118,9 +2125,9 @@ class CfnCampaign(
|
|
|
2118
2125
|
)
|
|
2119
2126
|
class SmsOutboundModeProperty:
|
|
2120
2127
|
def __init__(self, *, agentless_config: typing.Any = None) -> None:
|
|
2121
|
-
'''SMS
|
|
2128
|
+
'''Contains information about the SMS outbound mode.
|
|
2122
2129
|
|
|
2123
|
-
:param agentless_config:
|
|
2130
|
+
:param agentless_config: Contains agentless outbound mode configuration.
|
|
2124
2131
|
|
|
2125
2132
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-smsoutboundmode.html
|
|
2126
2133
|
:exampleMetadata: fixture=_generated
|
|
@@ -2146,7 +2153,7 @@ class CfnCampaign(
|
|
|
2146
2153
|
|
|
2147
2154
|
@builtins.property
|
|
2148
2155
|
def agentless_config(self) -> typing.Any:
|
|
2149
|
-
'''
|
|
2156
|
+
'''Contains agentless outbound mode configuration.
|
|
2150
2157
|
|
|
2151
2158
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-smsoutboundmode.html#cfn-connectcampaignsv2-campaign-smsoutboundmode-agentlessconfig
|
|
2152
2159
|
'''
|
|
@@ -2171,9 +2178,9 @@ class CfnCampaign(
|
|
|
2171
2178
|
)
|
|
2172
2179
|
class SourceProperty:
|
|
2173
2180
|
def __init__(self, *, customer_profiles_segment_arn: builtins.str) -> None:
|
|
2174
|
-
'''
|
|
2181
|
+
'''Contains source configuration.
|
|
2175
2182
|
|
|
2176
|
-
:param customer_profiles_segment_arn:
|
|
2183
|
+
:param customer_profiles_segment_arn: The Amazon Resource Name (ARN) of the Customer Profiles segment.
|
|
2177
2184
|
|
|
2178
2185
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-source.html
|
|
2179
2186
|
:exampleMetadata: fixture=_generated
|
|
@@ -2197,7 +2204,7 @@ class CfnCampaign(
|
|
|
2197
2204
|
|
|
2198
2205
|
@builtins.property
|
|
2199
2206
|
def customer_profiles_segment_arn(self) -> builtins.str:
|
|
2200
|
-
'''
|
|
2207
|
+
'''The Amazon Resource Name (ARN) of the Customer Profiles segment.
|
|
2201
2208
|
|
|
2202
2209
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-source.html#cfn-connectcampaignsv2-campaign-source-customerprofilessegmentarn
|
|
2203
2210
|
'''
|
|
@@ -2235,12 +2242,12 @@ class CfnCampaign(
|
|
|
2235
2242
|
capacity: typing.Optional[jsii.Number] = None,
|
|
2236
2243
|
connect_queue_id: typing.Optional[builtins.str] = None,
|
|
2237
2244
|
) -> None:
|
|
2238
|
-
'''
|
|
2245
|
+
'''The configuration for the telephony channel subtype.
|
|
2239
2246
|
|
|
2240
|
-
:param default_outbound_config:
|
|
2241
|
-
:param outbound_mode:
|
|
2242
|
-
:param capacity:
|
|
2243
|
-
:param connect_queue_id: The
|
|
2247
|
+
:param default_outbound_config: The default telephony outbound configuration of an outbound campaign.
|
|
2248
|
+
:param outbound_mode: The outbound mode of telephony for an outbound campaign.
|
|
2249
|
+
:param capacity: The allocation of telephony capacity between multiple running outbound campaigns.
|
|
2250
|
+
:param connect_queue_id: The identifier of the Amazon Connect queue associated with telephony outbound requests of an outbound campaign.
|
|
2244
2251
|
|
|
2245
2252
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonychannelsubtypeconfig.html
|
|
2246
2253
|
:exampleMetadata: fixture=_generated
|
|
@@ -2300,7 +2307,7 @@ class CfnCampaign(
|
|
|
2300
2307
|
def default_outbound_config(
|
|
2301
2308
|
self,
|
|
2302
2309
|
) -> typing.Union[_IResolvable_da3f097b, "CfnCampaign.TelephonyOutboundConfigProperty"]:
|
|
2303
|
-
'''
|
|
2310
|
+
'''The default telephony outbound configuration of an outbound campaign.
|
|
2304
2311
|
|
|
2305
2312
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonychannelsubtypeconfig.html#cfn-connectcampaignsv2-campaign-telephonychannelsubtypeconfig-defaultoutboundconfig
|
|
2306
2313
|
'''
|
|
@@ -2312,7 +2319,7 @@ class CfnCampaign(
|
|
|
2312
2319
|
def outbound_mode(
|
|
2313
2320
|
self,
|
|
2314
2321
|
) -> typing.Union[_IResolvable_da3f097b, "CfnCampaign.TelephonyOutboundModeProperty"]:
|
|
2315
|
-
'''
|
|
2322
|
+
'''The outbound mode of telephony for an outbound campaign.
|
|
2316
2323
|
|
|
2317
2324
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonychannelsubtypeconfig.html#cfn-connectcampaignsv2-campaign-telephonychannelsubtypeconfig-outboundmode
|
|
2318
2325
|
'''
|
|
@@ -2322,7 +2329,7 @@ class CfnCampaign(
|
|
|
2322
2329
|
|
|
2323
2330
|
@builtins.property
|
|
2324
2331
|
def capacity(self) -> typing.Optional[jsii.Number]:
|
|
2325
|
-
'''
|
|
2332
|
+
'''The allocation of telephony capacity between multiple running outbound campaigns.
|
|
2326
2333
|
|
|
2327
2334
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonychannelsubtypeconfig.html#cfn-connectcampaignsv2-campaign-telephonychannelsubtypeconfig-capacity
|
|
2328
2335
|
'''
|
|
@@ -2331,7 +2338,7 @@ class CfnCampaign(
|
|
|
2331
2338
|
|
|
2332
2339
|
@builtins.property
|
|
2333
2340
|
def connect_queue_id(self) -> typing.Optional[builtins.str]:
|
|
2334
|
-
'''The
|
|
2341
|
+
'''The identifier of the Amazon Connect queue associated with telephony outbound requests of an outbound campaign.
|
|
2335
2342
|
|
|
2336
2343
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonychannelsubtypeconfig.html#cfn-connectcampaignsv2-campaign-telephonychannelsubtypeconfig-connectqueueid
|
|
2337
2344
|
'''
|
|
@@ -2366,11 +2373,11 @@ class CfnCampaign(
|
|
|
2366
2373
|
answer_machine_detection_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.AnswerMachineDetectionConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2367
2374
|
connect_source_phone_number: typing.Optional[builtins.str] = None,
|
|
2368
2375
|
) -> None:
|
|
2369
|
-
'''
|
|
2376
|
+
'''The outbound configuration for telephony.
|
|
2370
2377
|
|
|
2371
|
-
:param connect_contact_flow_id: The identifier of the
|
|
2372
|
-
:param answer_machine_detection_config: The
|
|
2373
|
-
:param connect_source_phone_number: The
|
|
2378
|
+
:param connect_contact_flow_id: The identifier of the published Amazon Connect contact flow.
|
|
2379
|
+
:param answer_machine_detection_config: The answering machine detection configuration.
|
|
2380
|
+
:param connect_source_phone_number: The Amazon Connect source phone number.
|
|
2374
2381
|
|
|
2375
2382
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonyoutboundconfig.html
|
|
2376
2383
|
:exampleMetadata: fixture=_generated
|
|
@@ -2409,7 +2416,7 @@ class CfnCampaign(
|
|
|
2409
2416
|
|
|
2410
2417
|
@builtins.property
|
|
2411
2418
|
def connect_contact_flow_id(self) -> builtins.str:
|
|
2412
|
-
'''The identifier of the
|
|
2419
|
+
'''The identifier of the published Amazon Connect contact flow.
|
|
2413
2420
|
|
|
2414
2421
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonyoutboundconfig.html#cfn-connectcampaignsv2-campaign-telephonyoutboundconfig-connectcontactflowid
|
|
2415
2422
|
'''
|
|
@@ -2421,7 +2428,7 @@ class CfnCampaign(
|
|
|
2421
2428
|
def answer_machine_detection_config(
|
|
2422
2429
|
self,
|
|
2423
2430
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.AnswerMachineDetectionConfigProperty"]]:
|
|
2424
|
-
'''The
|
|
2431
|
+
'''The answering machine detection configuration.
|
|
2425
2432
|
|
|
2426
2433
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonyoutboundconfig.html#cfn-connectcampaignsv2-campaign-telephonyoutboundconfig-answermachinedetectionconfig
|
|
2427
2434
|
'''
|
|
@@ -2430,7 +2437,7 @@ class CfnCampaign(
|
|
|
2430
2437
|
|
|
2431
2438
|
@builtins.property
|
|
2432
2439
|
def connect_source_phone_number(self) -> typing.Optional[builtins.str]:
|
|
2433
|
-
'''The
|
|
2440
|
+
'''The Amazon Connect source phone number.
|
|
2434
2441
|
|
|
2435
2442
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonyoutboundconfig.html#cfn-connectcampaignsv2-campaign-telephonyoutboundconfig-connectsourcephonenumber
|
|
2436
2443
|
'''
|
|
@@ -2465,11 +2472,11 @@ class CfnCampaign(
|
|
|
2465
2472
|
predictive_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.PredictiveConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2466
2473
|
progressive_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.ProgressiveConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2467
2474
|
) -> None:
|
|
2468
|
-
'''
|
|
2475
|
+
'''Contains information about telephony outbound mode.
|
|
2469
2476
|
|
|
2470
|
-
:param agentless_config:
|
|
2471
|
-
:param predictive_config:
|
|
2472
|
-
:param progressive_config:
|
|
2477
|
+
:param agentless_config: The agentless outbound mode configuration for telephony.
|
|
2478
|
+
:param predictive_config: Contains predictive outbound mode configuration.
|
|
2479
|
+
:param progressive_config: Contains progressive telephony outbound mode configuration.
|
|
2473
2480
|
|
|
2474
2481
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonyoutboundmode.html
|
|
2475
2482
|
:exampleMetadata: fixture=_generated
|
|
@@ -2507,7 +2514,7 @@ class CfnCampaign(
|
|
|
2507
2514
|
|
|
2508
2515
|
@builtins.property
|
|
2509
2516
|
def agentless_config(self) -> typing.Any:
|
|
2510
|
-
'''
|
|
2517
|
+
'''The agentless outbound mode configuration for telephony.
|
|
2511
2518
|
|
|
2512
2519
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonyoutboundmode.html#cfn-connectcampaignsv2-campaign-telephonyoutboundmode-agentlessconfig
|
|
2513
2520
|
'''
|
|
@@ -2518,7 +2525,7 @@ class CfnCampaign(
|
|
|
2518
2525
|
def predictive_config(
|
|
2519
2526
|
self,
|
|
2520
2527
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.PredictiveConfigProperty"]]:
|
|
2521
|
-
'''
|
|
2528
|
+
'''Contains predictive outbound mode configuration.
|
|
2522
2529
|
|
|
2523
2530
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonyoutboundmode.html#cfn-connectcampaignsv2-campaign-telephonyoutboundmode-predictiveconfig
|
|
2524
2531
|
'''
|
|
@@ -2529,7 +2536,7 @@ class CfnCampaign(
|
|
|
2529
2536
|
def progressive_config(
|
|
2530
2537
|
self,
|
|
2531
2538
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.ProgressiveConfigProperty"]]:
|
|
2532
|
-
'''
|
|
2539
|
+
'''Contains progressive telephony outbound mode configuration.
|
|
2533
2540
|
|
|
2534
2541
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonyoutboundmode.html#cfn-connectcampaignsv2-campaign-telephonyoutboundmode-progressiveconfig
|
|
2535
2542
|
'''
|
|
@@ -2554,10 +2561,10 @@ class CfnCampaign(
|
|
|
2554
2561
|
)
|
|
2555
2562
|
class TimeRangeProperty:
|
|
2556
2563
|
def __init__(self, *, end_time: builtins.str, start_time: builtins.str) -> None:
|
|
2557
|
-
'''
|
|
2564
|
+
'''Contains information about a time range.
|
|
2558
2565
|
|
|
2559
|
-
:param end_time:
|
|
2560
|
-
:param start_time:
|
|
2566
|
+
:param end_time: The end time of the time range.
|
|
2567
|
+
:param start_time: The start time of the time range.
|
|
2561
2568
|
|
|
2562
2569
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-timerange.html
|
|
2563
2570
|
:exampleMetadata: fixture=_generated
|
|
@@ -2584,7 +2591,7 @@ class CfnCampaign(
|
|
|
2584
2591
|
|
|
2585
2592
|
@builtins.property
|
|
2586
2593
|
def end_time(self) -> builtins.str:
|
|
2587
|
-
'''
|
|
2594
|
+
'''The end time of the time range.
|
|
2588
2595
|
|
|
2589
2596
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-timerange.html#cfn-connectcampaignsv2-campaign-timerange-endtime
|
|
2590
2597
|
'''
|
|
@@ -2594,7 +2601,7 @@ class CfnCampaign(
|
|
|
2594
2601
|
|
|
2595
2602
|
@builtins.property
|
|
2596
2603
|
def start_time(self) -> builtins.str:
|
|
2597
|
-
'''
|
|
2604
|
+
'''The start time of the time range.
|
|
2598
2605
|
|
|
2599
2606
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-timerange.html#cfn-connectcampaignsv2-campaign-timerange-starttime
|
|
2600
2607
|
'''
|
|
@@ -2628,10 +2635,10 @@ class CfnCampaign(
|
|
|
2628
2635
|
open_hours: typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.OpenHoursProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
2629
2636
|
restricted_periods: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.RestrictedPeriodsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2630
2637
|
) -> None:
|
|
2631
|
-
'''
|
|
2638
|
+
'''Contains information about a time window.
|
|
2632
2639
|
|
|
2633
|
-
:param open_hours:
|
|
2634
|
-
:param restricted_periods:
|
|
2640
|
+
:param open_hours: The open hours configuration.
|
|
2641
|
+
:param restricted_periods: The restricted periods configuration.
|
|
2635
2642
|
|
|
2636
2643
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-timewindow.html
|
|
2637
2644
|
:exampleMetadata: fixture=_generated
|
|
@@ -2679,7 +2686,7 @@ class CfnCampaign(
|
|
|
2679
2686
|
def open_hours(
|
|
2680
2687
|
self,
|
|
2681
2688
|
) -> typing.Union[_IResolvable_da3f097b, "CfnCampaign.OpenHoursProperty"]:
|
|
2682
|
-
'''
|
|
2689
|
+
'''The open hours configuration.
|
|
2683
2690
|
|
|
2684
2691
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-timewindow.html#cfn-connectcampaignsv2-campaign-timewindow-openhours
|
|
2685
2692
|
'''
|
|
@@ -2691,7 +2698,7 @@ class CfnCampaign(
|
|
|
2691
2698
|
def restricted_periods(
|
|
2692
2699
|
self,
|
|
2693
2700
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.RestrictedPeriodsProperty"]]:
|
|
2694
|
-
'''
|
|
2701
|
+
'''The restricted periods configuration.
|
|
2695
2702
|
|
|
2696
2703
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-timewindow.html#cfn-connectcampaignsv2-campaign-timewindow-restrictedperiods
|
|
2697
2704
|
'''
|
|
@@ -2741,15 +2748,15 @@ class CfnCampaignProps:
|
|
|
2741
2748
|
) -> None:
|
|
2742
2749
|
'''Properties for defining a ``CfnCampaign``.
|
|
2743
2750
|
|
|
2744
|
-
:param channel_subtype_config:
|
|
2745
|
-
:param connect_instance_id: Amazon Connect
|
|
2746
|
-
:param name:
|
|
2747
|
-
:param communication_limits_override: Communication limits
|
|
2748
|
-
:param communication_time_config:
|
|
2749
|
-
:param connect_campaign_flow_arn:
|
|
2750
|
-
:param schedule:
|
|
2751
|
-
:param source:
|
|
2752
|
-
:param tags:
|
|
2751
|
+
:param channel_subtype_config: Contains channel subtype configuration for an outbound campaign.
|
|
2752
|
+
:param connect_instance_id: The identifier of the Amazon Connect instance. You can find the ``instanceId`` in the ARN of the instance.
|
|
2753
|
+
:param name: The name of the outbound campaign.
|
|
2754
|
+
:param communication_limits_override: Communication limits configuration for an outbound campaign.
|
|
2755
|
+
:param communication_time_config: Contains communication time configuration for an outbound campaign.
|
|
2756
|
+
:param connect_campaign_flow_arn: The Amazon Resource Name (ARN) of the Amazon Connect campaign flow associated with the outbound campaign.
|
|
2757
|
+
:param schedule: Contains the schedule configuration.
|
|
2758
|
+
:param source: Contains source configuration.
|
|
2759
|
+
:param tags: The tags used to organize, track, or control access for this resource. For example, ``{ "tags": {"key1":"value1", "key2":"value2"} }`` .
|
|
2753
2760
|
|
|
2754
2761
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html
|
|
2755
2762
|
:exampleMetadata: fixture=_generated
|
|
@@ -2956,7 +2963,7 @@ class CfnCampaignProps:
|
|
|
2956
2963
|
def channel_subtype_config(
|
|
2957
2964
|
self,
|
|
2958
2965
|
) -> typing.Union[_IResolvable_da3f097b, CfnCampaign.ChannelSubtypeConfigProperty]:
|
|
2959
|
-
'''
|
|
2966
|
+
'''Contains channel subtype configuration for an outbound campaign.
|
|
2960
2967
|
|
|
2961
2968
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html#cfn-connectcampaignsv2-campaign-channelsubtypeconfig
|
|
2962
2969
|
'''
|
|
@@ -2966,7 +2973,9 @@ class CfnCampaignProps:
|
|
|
2966
2973
|
|
|
2967
2974
|
@builtins.property
|
|
2968
2975
|
def connect_instance_id(self) -> builtins.str:
|
|
2969
|
-
'''Amazon Connect
|
|
2976
|
+
'''The identifier of the Amazon Connect instance.
|
|
2977
|
+
|
|
2978
|
+
You can find the ``instanceId`` in the ARN of the instance.
|
|
2970
2979
|
|
|
2971
2980
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html#cfn-connectcampaignsv2-campaign-connectinstanceid
|
|
2972
2981
|
'''
|
|
@@ -2976,7 +2985,7 @@ class CfnCampaignProps:
|
|
|
2976
2985
|
|
|
2977
2986
|
@builtins.property
|
|
2978
2987
|
def name(self) -> builtins.str:
|
|
2979
|
-
'''
|
|
2988
|
+
'''The name of the outbound campaign.
|
|
2980
2989
|
|
|
2981
2990
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html#cfn-connectcampaignsv2-campaign-name
|
|
2982
2991
|
'''
|
|
@@ -2988,7 +2997,7 @@ class CfnCampaignProps:
|
|
|
2988
2997
|
def communication_limits_override(
|
|
2989
2998
|
self,
|
|
2990
2999
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCampaign.CommunicationLimitsConfigProperty]]:
|
|
2991
|
-
'''Communication limits
|
|
3000
|
+
'''Communication limits configuration for an outbound campaign.
|
|
2992
3001
|
|
|
2993
3002
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html#cfn-connectcampaignsv2-campaign-communicationlimitsoverride
|
|
2994
3003
|
'''
|
|
@@ -2999,7 +3008,7 @@ class CfnCampaignProps:
|
|
|
2999
3008
|
def communication_time_config(
|
|
3000
3009
|
self,
|
|
3001
3010
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCampaign.CommunicationTimeConfigProperty]]:
|
|
3002
|
-
'''
|
|
3011
|
+
'''Contains communication time configuration for an outbound campaign.
|
|
3003
3012
|
|
|
3004
3013
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html#cfn-connectcampaignsv2-campaign-communicationtimeconfig
|
|
3005
3014
|
'''
|
|
@@ -3008,7 +3017,7 @@ class CfnCampaignProps:
|
|
|
3008
3017
|
|
|
3009
3018
|
@builtins.property
|
|
3010
3019
|
def connect_campaign_flow_arn(self) -> typing.Optional[builtins.str]:
|
|
3011
|
-
'''
|
|
3020
|
+
'''The Amazon Resource Name (ARN) of the Amazon Connect campaign flow associated with the outbound campaign.
|
|
3012
3021
|
|
|
3013
3022
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html#cfn-connectcampaignsv2-campaign-connectcampaignflowarn
|
|
3014
3023
|
'''
|
|
@@ -3019,7 +3028,7 @@ class CfnCampaignProps:
|
|
|
3019
3028
|
def schedule(
|
|
3020
3029
|
self,
|
|
3021
3030
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCampaign.ScheduleProperty]]:
|
|
3022
|
-
'''
|
|
3031
|
+
'''Contains the schedule configuration.
|
|
3023
3032
|
|
|
3024
3033
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html#cfn-connectcampaignsv2-campaign-schedule
|
|
3025
3034
|
'''
|
|
@@ -3030,7 +3039,7 @@ class CfnCampaignProps:
|
|
|
3030
3039
|
def source(
|
|
3031
3040
|
self,
|
|
3032
3041
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCampaign.SourceProperty]]:
|
|
3033
|
-
'''
|
|
3042
|
+
'''Contains source configuration.
|
|
3034
3043
|
|
|
3035
3044
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html#cfn-connectcampaignsv2-campaign-source
|
|
3036
3045
|
'''
|
|
@@ -3039,7 +3048,9 @@ class CfnCampaignProps:
|
|
|
3039
3048
|
|
|
3040
3049
|
@builtins.property
|
|
3041
3050
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
3042
|
-
'''
|
|
3051
|
+
'''The tags used to organize, track, or control access for this resource.
|
|
3052
|
+
|
|
3053
|
+
For example, ``{ "tags": {"key1":"value1", "key2":"value2"} }`` .
|
|
3043
3054
|
|
|
3044
3055
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html#cfn-connectcampaignsv2-campaign-tags
|
|
3045
3056
|
'''
|