Interface CfnCampaign.PreviewConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCampaign.PreviewConfigProperty.Jsii$Proxy
Enclosing class:
CfnCampaign

@Stability(Stable) public static interface CfnCampaign.PreviewConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.connectcampaignsv2.*;
 PreviewConfigProperty previewConfigProperty = PreviewConfigProperty.builder()
         .bandwidthAllocation(123)
         .timeoutConfig(TimeoutConfigProperty.builder()
                 .durationInSeconds(123)
                 .build())
         // the properties below are optional
         .agentActions(List.of("agentActions"))
         .build();
 

See Also: