Interface CfnPromptMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPromptMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.617Z")
@Stability(Stable)
public interface CfnPromptMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnPromptPropsMixin.
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.*;
CfnPromptMixinProps cfnPromptMixinProps = CfnPromptMixinProps.builder()
.description("description")
.instanceArn("instanceArn")
.name("name")
.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 forCfnPromptMixinPropsstatic final classAn implementation forCfnPromptMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPromptMixinProps.Builderbuilder()default StringThe description of the prompt.default ObjectThe identifier of the Amazon Connect instance.default StringgetName()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
-
getDescription
The description of the prompt.- See Also:
-
getInstanceArn
The identifier of the Amazon Connect instance.Returns union: either
StringorIInstanceRef- See Also:
-
getName
The name 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
CfnPromptMixinProps.BuilderofCfnPromptMixinProps
-