Interface CreateContactFlowRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,ConnectRequest.Builder
,CopyableBuilder<CreateContactFlowRequest.Builder,CreateContactFlowRequest>
,SdkBuilder<CreateContactFlowRequest.Builder,CreateContactFlowRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- CreateContactFlowRequest
public static interface CreateContactFlowRequest.Builder extends ConnectRequest.Builder, SdkPojo, CopyableBuilder<CreateContactFlowRequest.Builder,CreateContactFlowRequest>
-
-
Method Summary
-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.connect.model.ConnectRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
instanceId
CreateContactFlowRequest.Builder instanceId(String instanceId)
The identifier of the Amazon Connect instance.
- Parameters:
instanceId
- The identifier of the Amazon Connect instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
CreateContactFlowRequest.Builder name(String name)
The name of the flow.
- Parameters:
name
- The name of the flow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
CreateContactFlowRequest.Builder type(String type)
The type of the flow. For descriptions of the available types, see Choose a flow type in the Amazon Connect Administrator Guide.
- Parameters:
type
- The type of the flow. For descriptions of the available types, see Choose a flow type in the Amazon Connect Administrator Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ContactFlowType
,ContactFlowType
-
type
CreateContactFlowRequest.Builder type(ContactFlowType type)
The type of the flow. For descriptions of the available types, see Choose a flow type in the Amazon Connect Administrator Guide.
- Parameters:
type
- The type of the flow. For descriptions of the available types, see Choose a flow type in the Amazon Connect Administrator Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ContactFlowType
,ContactFlowType
-
description
CreateContactFlowRequest.Builder description(String description)
The description of the flow.
- Parameters:
description
- The description of the flow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
content
CreateContactFlowRequest.Builder content(String content)
The JSON string that represents the content of the flow. For an example, see Example flow in Amazon Connect Flow language.
Length Constraints: Minimum length of 1. Maximum length of 256000.
- Parameters:
content
- The JSON string that represents the content of the flow. For an example, see Example flow in Amazon Connect Flow language.Length Constraints: Minimum length of 1. Maximum length of 256000.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
CreateContactFlowRequest.Builder status(String status)
Indicates the flow status as either
SAVED
orPUBLISHED
. ThePUBLISHED
status will initiate validation on the content. theSAVED
status does not initiate validation of the content.SAVED
|PUBLISHED
.- Parameters:
status
- Indicates the flow status as eitherSAVED
orPUBLISHED
. ThePUBLISHED
status will initiate validation on the content. theSAVED
status does not initiate validation of the content.SAVED
|PUBLISHED
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ContactFlowStatus
,ContactFlowStatus
-
status
CreateContactFlowRequest.Builder status(ContactFlowStatus status)
Indicates the flow status as either
SAVED
orPUBLISHED
. ThePUBLISHED
status will initiate validation on the content. theSAVED
status does not initiate validation of the content.SAVED
|PUBLISHED
.- Parameters:
status
- Indicates the flow status as eitherSAVED
orPUBLISHED
. ThePUBLISHED
status will initiate validation on the content. theSAVED
status does not initiate validation of the content.SAVED
|PUBLISHED
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ContactFlowStatus
,ContactFlowStatus
-
tags
CreateContactFlowRequest.Builder tags(Map<String,String> tags)
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
- Parameters:
tags
- The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreateContactFlowRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
CreateContactFlowRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-