Interface CfnInstance.AttributesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInstance.AttributesProperty.Jsii$Proxy
- Enclosing class:
CfnInstance
@Stability(Stable)
public static interface CfnInstance.AttributesProperty
extends software.amazon.jsii.JsiiSerializable
*This is a preview release for Amazon Connect .
It is subject to change.*
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.connect.*; AttributesProperty attributesProperty = AttributesProperty.builder() .inboundCalls(false) .outboundCalls(false) // the properties below are optional .autoResolveBestVoices(false) .contactflowLogs(false) .contactLens(false) .earlyMedia(false) .useCustomTtsVoices(false) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnInstance.AttributesProperty
static final class
An implementation forCfnInstance.AttributesProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Boolean flag which enables AUTO_RESOLVE_BEST_VOICES on an instance.default Object
Boolean flag which enables CONTACTFLOW_LOGS on an instance.default Object
Boolean flag which enables CONTACT_LENS on an instance.default Object
Boolean flag which enables EARLY_MEDIA on an instance.Mandatory element which enables inbound calls on new instance.Mandatory element which enables outbound calls on new instance.default Object
Boolean flag which enables USE_CUSTOM_TTS_VOICES on an instance.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInboundCalls
Mandatory element which enables inbound calls on new instance.- See Also:
-
getOutboundCalls
Mandatory element which enables outbound calls on new instance.- See Also:
-
getAutoResolveBestVoices
Boolean flag which enables AUTO_RESOLVE_BEST_VOICES on an instance.- See Also:
-
getContactflowLogs
Boolean flag which enables CONTACTFLOW_LOGS on an instance.- See Also:
-
getContactLens
Boolean flag which enables CONTACT_LENS on an instance.- See Also:
-
getEarlyMedia
Boolean flag which enables EARLY_MEDIA on an instance.- See Also:
-
getUseCustomTtsVoices
Boolean flag which enables USE_CUSTOM_TTS_VOICES on an instance.- See Also:
-
builder
-