Interface CfnPromptProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPromptProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:07.747Z")
@Stability(Stable)
public interface CfnPromptProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnPrompt.
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.*;
CfnPromptProps cfnPromptProps = CfnPromptProps.builder()
.instanceArn("instanceArn")
.name("name")
// the properties below are optional
.description("description")
.s3Uri("s3Uri")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPromptPropsstatic final classAn implementation forCfnPromptProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPromptProps.Builderbuilder()default StringThe description of the prompt.The identifier of the Amazon Connect instance.getName()The name of the prompt.default StringgetS3Uri()The URI for the S3 bucket where the prompt is stored.getTags()The tags used to organize, track, or control access for this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInstanceArn
The identifier of the Amazon Connect instance.Returns union: either
StringorIInstanceRef- See Also:
-
getName
The name of the prompt.- See Also:
-
getDescription
The description of the prompt.- See Also:
-
getS3Uri
The URI for the S3 bucket where the prompt is stored.This property is required when you create a prompt.
- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.For example, { "tags": {"key1":"value1", "key2":"value2"} }.
- See Also:
-
builder
- Returns:
- a
CfnPromptProps.BuilderofCfnPromptProps
-