@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.773Z") @Stability(value=Stable) public interface CfnQuickConnectProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnQuickConnectProps.Builder
A builder for
CfnQuickConnectProps |
static class |
CfnQuickConnectProps.Jsii$Proxy
An implementation for
CfnQuickConnectProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnQuickConnectProps.Builder |
builder() |
default String |
getDescription()
The description of the quick connect.
|
String |
getInstanceArn()
The Amazon Resource Name (ARN) of the instance.
|
String |
getName()
The name of the quick connect.
|
Object |
getQuickConnectConfig()
Contains information about the quick connect.
|
default List<CfnTag> |
getTags()
The tags used to organize, track, or control access for this resource.
|
@Stability(value=Stable) @NotNull String getInstanceArn()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull Object getQuickConnectConfig()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnQuickConnectProps.Builder builder()
CfnQuickConnectProps.Builder of CfnQuickConnectPropsCopyright © 2022. All rights reserved.