Interface CfnContactFlowProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:55.938Z") @Stability(Stable) public interface CfnContactFlowProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnContactFlow.

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.*;
 CfnContactFlowProps cfnContactFlowProps = CfnContactFlowProps.builder()
         .content("content")
         .instanceArn("instanceArn")
         .name("name")
         .type("type")
         // the properties below are optional
         .description("description")
         .state("state")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getContent

      @Stability(Stable) @NotNull String getContent()
      The content of the flow.

      For more information, see Amazon Connect Flow language in the Amazon Connect Administrator Guide .

    • getInstanceArn

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

      @Stability(Stable) @NotNull String getName()
      The name of the flow.
    • getType

      @Stability(Stable) @NotNull String getType()
      The type of the flow.

      For descriptions of the available types, see Choose a flow type in the Amazon Connect Administrator Guide .

    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The description of the flow.
    • getState

      @Stability(Stable) @Nullable default String getState()
      The state of the flow.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      An array of key-value pairs to apply to this resource.

      For more information, see Tag .

    • builder

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