Interface CfnQuickConnectProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnQuickConnectProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:35.669Z")
@Stability(Stable)
public interface CfnQuickConnectProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnQuickConnect.
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.*;
CfnQuickConnectProps cfnQuickConnectProps = CfnQuickConnectProps.builder()
.instanceArn("instanceArn")
.name("name")
.quickConnectConfig(QuickConnectConfigProperty.builder()
.quickConnectType("quickConnectType")
// the properties below are optional
.phoneConfig(PhoneNumberQuickConnectConfigProperty.builder()
.phoneNumber("phoneNumber")
.build())
.queueConfig(QueueQuickConnectConfigProperty.builder()
.contactFlowArn("contactFlowArn")
.queueArn("queueArn")
.build())
.userConfig(UserQuickConnectConfigProperty.builder()
.contactFlowArn("contactFlowArn")
.userArn("userArn")
.build())
.build())
// the properties below are optional
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnQuickConnectPropsstatic final classAn implementation forCfnQuickConnectProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnQuickConnectProps.Builderbuilder()default StringThe description of the quick connect.The Amazon Resource Name (ARN) of the instance.getName()The name of the quick connect.Contains information about the quick connect.getTags()The tags used to organize, track, or control access for this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInstanceArn
The Amazon Resource Name (ARN) of the instance.- See Also:
-
getName
The name of the quick connect.- See Also:
-
getQuickConnectConfig
Contains information about the quick connect.Returns union: either
IResolvableorCfnQuickConnect.QuickConnectConfigProperty- See Also:
-
getDescription
The description of the quick connect.- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
- See Also:
-
builder
- Returns:
- a
CfnQuickConnectProps.BuilderofCfnQuickConnectProps
-