Interface CfnContactFlowMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnContactFlowMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.531Z")
@Stability(Stable)
public interface CfnContactFlowMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnContactFlowPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.connect.*;
CfnContactFlowMixinProps cfnContactFlowMixinProps = CfnContactFlowMixinProps.builder()
.content("content")
.description("description")
.instanceArn("instanceArn")
.name("name")
.state("state")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnContactFlowMixinPropsstatic final classAn implementation forCfnContactFlowMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe content of the flow.default StringThe description of the flow.default ObjectThe Amazon Resource Name (ARN) of the Amazon Connect instance.default StringgetName()The name of the flow.default StringgetState()The state of the flow.getTags()An array of key-value pairs to apply to this resource.default StringgetType()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:
-
getDescription
The description of the flow.- 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.- 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:
-
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:
-
builder
- Returns:
- a
CfnContactFlowMixinProps.BuilderofCfnContactFlowMixinProps
-