interface CfnTestCaseProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnTestCaseProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnTestCaseProps |
Java | software.amazon.awscdk.services.connect.CfnTestCaseProps |
Python | aws_cdk.aws_connect.CfnTestCaseProps |
TypeScript | aws-cdk-lib » aws_connect » CfnTestCaseProps |
Properties for defining a CfnTestCase.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-testcase.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 cfnTestCaseProps: connect.CfnTestCaseProps = {
content: 'content',
instanceArn: 'instanceArn',
name: 'name',
// the properties below are optional
description: 'description',
entryPoint: {
chatEntryPointParameters: {
flowId: 'flowId',
},
type: 'type',
voiceCallEntryPointParameters: {
destinationPhoneNumber: 'destinationPhoneNumber',
flowId: 'flowId',
sourcePhoneNumber: 'sourcePhoneNumber',
},
},
initializationData: 'initializationData',
status: 'status',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| content | string | The content of the test case. |
| instance | string | The identifier of the Amazon Connect instance. |
| name | string | The name of the test case. |
| description? | string | The description of the test case. |
| entry | IResolvable | Entry | The Entry Point associated with the test case. |
| initialization | string | The initialization data of the test case. |
| status? | string | The status of the test case. |
| tags? | Cfn[] | One or more tags. |
content
Type:
string
The content of the test case.
instanceArn
Type:
string
The identifier of the Amazon Connect instance.
name
Type:
string
The name of the test case.
description?
Type:
string
(optional)
The description of the test case.
entryPoint?
Type:
IResolvable | Entry
(optional)
The Entry Point associated with the test case.
initializationData?
Type:
string
(optional)
The initialization data of the test case.
status?
Type:
string
(optional)
The status of the test case.
tags?
Type:
Cfn[]
(optional)
One or more tags.

.NET
Go
Java
Python
TypeScript