Interface CfnContactFlowProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnContactFlowProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-02-06T22:15:51.995Z")
@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();
- See Also:
-
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 .
- See Also:
-
getInstanceArn
The Amazon Resource Name (ARN) of the Amazon Connect instance.- See Also:
-
getName
The name of the flow.- See Also:
-
getType
The type of the flow.For descriptions of the available types, see Choose a flow type in the Amazon Connect Administrator Guide .
- See Also:
-
getDescription
The description of the flow.- See Also:
-
getState
The state of the flow.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
- Returns:
- a
CfnContactFlowProps.Builder
ofCfnContactFlowProps
-