Interface CfnQuickConnectProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnQuickConnectProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:55.993Z") @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();
 
  • Method Details

    • getInstanceArn

      @Stability(Stable) @NotNull String getInstanceArn()
      The Amazon Resource Name (ARN) of the instance.
    • getName

      @Stability(Stable) @NotNull String getName()
      The name of the quick connect.
    • getQuickConnectConfig

      @Stability(Stable) @NotNull Object getQuickConnectConfig()
      Contains information about the quick connect.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The description of the quick connect.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      The tags used to organize, track, or control access for this resource.

      For example, { "tags": {"key1":"value1", "key2":"value2"} }.

    • builder

      @Stability(Stable) static CfnQuickConnectProps.Builder builder()
      Returns:
      a CfnQuickConnectProps.Builder of CfnQuickConnectProps