interface PreviewConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ConnectCampaignsV2.CfnCampaignPropsMixin.PreviewConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnectcampaignsv2#CfnCampaignPropsMixin_PreviewConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connectcampaignsv2.CfnCampaignPropsMixin.PreviewConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_connectcampaignsv2.CfnCampaignPropsMixin.PreviewConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connectcampaignsv2 » CfnCampaignPropsMixin » PreviewConfigProperty |
Contains preview outbound mode configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connectcampaignsv2 as connectcampaignsv2 } from '@aws-cdk/cfn-property-mixins';
const previewConfigProperty: connectcampaignsv2.CfnCampaignPropsMixin.PreviewConfigProperty = {
agentActions: ['agentActions'],
bandwidthAllocation: 123,
timeoutConfig: {
durationInSeconds: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string[] | Agent actions for the preview outbound mode. |
| bandwidth | number | Bandwidth allocation for the preview outbound mode. |
| timeout | IResolvable | Timeout | Countdown timer configuration for preview outbound mode. |
agentActions?
Type:
string[]
(optional)
Agent actions for the preview outbound mode.
bandwidthAllocation?
Type:
number
(optional)
Bandwidth allocation for the preview outbound mode.
timeoutConfig?
Type:
IResolvable | Timeout
(optional)
Countdown timer configuration for preview outbound mode.

.NET
Go
Java
Python
TypeScript