Interface CfnContactFlowModuleProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnContactFlowModuleProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:17.611Z")
@Stability(Stable)
public interface CfnContactFlowModuleProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnContactFlowModule.
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.*;
CfnContactFlowModuleProps cfnContactFlowModuleProps = CfnContactFlowModuleProps.builder()
.content("content")
.instanceArn("instanceArn")
.name("name")
// 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 classA builder forCfnContactFlowModulePropsstatic final classAn implementation forCfnContactFlowModuleProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The content of the flow module.default StringThe description of the flow module.The Amazon Resource Name (ARN) of the Amazon Connect instance.getName()The name of the flow module.default StringgetState()The state of the flow module.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContent
The content of the flow module.- See Also:
-
getInstanceArn
The Amazon Resource Name (ARN) of the Amazon Connect instance.Returns union: either
StringorIInstanceRef- See Also:
-
getName
The name of the flow module.- See Also:
-
getDescription
The description of the flow module.- See Also:
-
getState
The state of the flow module.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
- Returns:
- a
CfnContactFlowModuleProps.BuilderofCfnContactFlowModuleProps
-