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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnContactFlowProps
static final class
An implementation forCfnContactFlowProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnContactFlowProps.Builder
builder()
The content of the flow.default String
The description of the flow.The Amazon Resource Name (ARN) of the Amazon Connect instance.getName()
The name of the flow.default String
getState()
The state of the flow.getTags()
An array of key-value pairs to apply to this resource.getType()
The type of the flow.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContent
The content of the flow.For more information, see Amazon Connect Flow language in the Amazon Connect Administrator Guide .
-
getInstanceArn
The Amazon Resource Name (ARN) of the Amazon Connect instance. -
getName
The name of the flow. -
getType
The type of the flow.For descriptions of the available types, see Choose a flow type in the Amazon Connect Administrator Guide .
-
getDescription
The description of the flow. -
getState
The state of the flow. -
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
-
builder
- Returns:
- a
CfnContactFlowProps.Builder
ofCfnContactFlowProps
-