interface CfnPromptProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Connect.CfnPromptProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnPromptProps | 
|  Java | software.amazon.awscdk.services.connect.CfnPromptProps | 
|  Python | aws_cdk.aws_connect.CfnPromptProps | 
|  TypeScript | aws-cdk-lib»aws_connect»CfnPromptProps | 
Properties for defining a CfnPrompt.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-prompt.html
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
| Name | Type | Description | 
|---|---|---|
| instance | string | The identifier of the Amazon Connect instance. | 
| name | string | The name of the prompt. | 
| description? | string | The description of the prompt. | 
| s3 | string | The URI for the S3 bucket where the prompt is stored. | 
| tags? | Cfn[] | 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:
Cfn[]
(optional)
The tags used to organize, track, or control access for this resource.
For example, { "tags": {"key1":"value1", "key2":"value2"} }.
