interface PreviewConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ConnectCampaignsV2.CfnCampaign.PreviewConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnectcampaignsv2#CfnCampaign_PreviewConfigProperty |
Java | software.amazon.awscdk.services.connectcampaignsv2.CfnCampaign.PreviewConfigProperty |
Python | aws_cdk.aws_connectcampaignsv2.CfnCampaign.PreviewConfigProperty |
TypeScript | aws-cdk-lib » aws_connectcampaignsv2 » CfnCampaign » 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-lib';
const previewConfigProperty: connectcampaignsv2.CfnCampaign.PreviewConfigProperty = {
bandwidthAllocation: 123,
timeoutConfig: {
durationInSeconds: 123,
},
// the properties below are optional
agentActions: ['agentActions'],
};
Properties
| Name | Type | Description |
|---|---|---|
| bandwidth | number | Bandwidth allocation for the preview outbound mode. |
| timeout | IResolvable | Timeout | Countdown timer configuration for preview outbound mode. |
| agent | string[] | Agent actions for the preview outbound mode. |
bandwidthAllocation
Type:
number
Bandwidth allocation for the preview outbound mode.
timeoutConfig
Type:
IResolvable | Timeout
Countdown timer configuration for preview outbound mode.
agentActions?
Type:
string[]
(optional)
Agent actions for the preview outbound mode.

.NET
Go
Java
Python
TypeScript