@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.760Z") @Stability(value=Stable) public interface CfnContactFlowProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnContactFlowProps.Builder
A builder for
CfnContactFlowProps |
static class |
CfnContactFlowProps.Jsii$Proxy
An implementation for
CfnContactFlowProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnContactFlowProps.Builder |
builder() |
String |
getContent()
The content of the contact flow.
|
default String |
getDescription()
The description of the contact flow.
|
String |
getInstanceArn()
The Amazon Resource Name (ARN) of the Amazon Connect instance.
|
String |
getName()
The name of the contact flow.
|
default String |
getState()
The state of the contact flow.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
String |
getType()
The type of the contact flow.
|
@Stability(value=Stable) @NotNull String getContent()
@Stability(value=Stable) @NotNull String getInstanceArn()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull String getType()
For descriptions of the available types, see Choose a Contact Flow Type in the Amazon Connect Administrator Guide .
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default String getState()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnContactFlowProps.Builder builder()
CfnContactFlowProps.Builder of CfnContactFlowPropsCopyright © 2022. All rights reserved.