aws-cdk-lib.aws_connect.CfnPromptProps

interface CfnPromptProps

LanguageType name
.NETAmazon.CDK.AWS.Connect.CfnPromptProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnPromptProps
Javasoftware.amazon.awscdk.services.connect.CfnPromptProps
Pythonaws_cdk.aws_connect.CfnPromptProps
TypeScript aws-cdk-lib » aws_connect » CfnPromptProps

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 { aws_connect as connect } from 'aws-cdk-lib';
const cfnPromptProps: connect.CfnPromptProps = {
  instanceArn: 'instanceArn',
  name: 'name',

  // the properties below are optional
  description: 'description',
  s3Uri: 's3Uri',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
instanceArnstringThe identifier of the Amazon Connect instance.
namestringThe name of the prompt.
description?stringThe description of the prompt.
s3Uri?stringThe URI for the S3 bucket where the prompt is stored.
tags?CfnTag[]The tags used to organize, track, or control access for this resource.

instanceArn

Type: string

The identifier of the Amazon Connect instance.


name

Type: string

The name of the prompt.


description?

Type: string (optional)

The description of the prompt.


s3Uri?

Type: string (optional)

The URI for the S3 bucket where the prompt is stored.

This property is required when you create a prompt.


tags?

Type: CfnTag[] (optional)

The tags used to organize, track, or control access for this resource.

For example, { "tags": {"key1":"value1", "key2":"value2"} }.