Interface CfnContactFlowModuleMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnContactFlowModuleMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.533Z")
@Stability(Stable)
public interface CfnContactFlowModuleMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnContactFlowModulePropsMixin.
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.*;
CfnContactFlowModuleMixinProps cfnContactFlowModuleMixinProps = CfnContactFlowModuleMixinProps.builder()
.content("content")
.description("description")
.externalInvocationConfiguration(ExternalInvocationConfigurationProperty.builder()
.enabled(false)
.build())
.instanceArn("instanceArn")
.name("name")
.settings("settings")
.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 forCfnContactFlowModuleMixinPropsstatic final classAn implementation forCfnContactFlowModuleMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe content of the flow module.default StringThe description of the flow module.default ObjectThe external invocation configuration for the flow module.default ObjectThe Amazon Resource Name (ARN) of the Amazon Connect instance.default StringgetName()The name of the flow module.default StringThe configuration settings for 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:
-
getDescription
The description of the flow module.- See Also:
-
getExternalInvocationConfiguration
The external invocation configuration for the flow module.Returns union: either
IResolvableorCfnContactFlowModulePropsMixin.ExternalInvocationConfigurationProperty- 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:
-
getSettings
The configuration settings for 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
-