CfnCampaignMixinProps

class aws_cdk.mixins_preview.aws_connectcampaigns.mixins.CfnCampaignMixinProps(*, connect_instance_arn=None, dialer_config=None, name=None, outbound_call_config=None, tags=None)

Bases: object

Properties for CfnCampaignPropsMixin.

Parameters:
  • connect_instance_arn (Optional[str]) – The Amazon Resource Name (ARN) of the Amazon Connect instance.

  • dialer_config (Union[IResolvable, DialerConfigProperty, Dict[str, Any], None]) – Contains information about the dialer configuration.

  • name (Optional[str]) – The name of the campaign.

  • outbound_call_config (Union[IResolvable, OutboundCallConfigProperty, Dict[str, Any], None]) – Contains information about the outbound call configuration.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags used to organize, track, or control access for this resource. For example, { “tags”: {“key1”:”value1”, “key2”:”value2”} }.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaigns-campaign.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_connectcampaigns import mixins as connectcampaigns_mixins

cfn_campaign_mixin_props = connectcampaigns_mixins.CfnCampaignMixinProps(
    connect_instance_arn="connectInstanceArn",
    dialer_config=connectcampaigns_mixins.CfnCampaignPropsMixin.DialerConfigProperty(
        agentless_dialer_config=connectcampaigns_mixins.CfnCampaignPropsMixin.AgentlessDialerConfigProperty(
            dialing_capacity=123
        ),
        predictive_dialer_config=connectcampaigns_mixins.CfnCampaignPropsMixin.PredictiveDialerConfigProperty(
            bandwidth_allocation=123,
            dialing_capacity=123
        ),
        progressive_dialer_config=connectcampaigns_mixins.CfnCampaignPropsMixin.ProgressiveDialerConfigProperty(
            bandwidth_allocation=123,
            dialing_capacity=123
        )
    ),
    name="name",
    outbound_call_config=connectcampaigns_mixins.CfnCampaignPropsMixin.OutboundCallConfigProperty(
        answer_machine_detection_config=connectcampaigns_mixins.CfnCampaignPropsMixin.AnswerMachineDetectionConfigProperty(
            await_answer_machine_prompt=False,
            enable_answer_machine_detection=False
        ),
        connect_contact_flow_arn="connectContactFlowArn",
        connect_queue_arn="connectQueueArn",
        connect_source_phone_number="connectSourcePhoneNumber"
    ),
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

connect_instance_arn

The Amazon Resource Name (ARN) of the Amazon Connect instance.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaigns-campaign.html#cfn-connectcampaigns-campaign-connectinstancearn

dialer_config

Contains information about the dialer configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaigns-campaign.html#cfn-connectcampaigns-campaign-dialerconfig

name

The name of the campaign.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaigns-campaign.html#cfn-connectcampaigns-campaign-name

outbound_call_config

Contains information about the outbound call configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaigns-campaign.html#cfn-connectcampaigns-campaign-outboundcallconfig

tags

The tags used to organize, track, or control access for this resource.

For example, { “tags”: {“key1”:”value1”, “key2”:”value2”} }.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaigns-campaign.html#cfn-connectcampaigns-campaign-tags