interface CfnTestCaseMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnTestCaseMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnTestCaseMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnTestCaseMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnTestCaseMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnTestCaseMixinProps |
Properties for CfnTestCasePropsMixin.
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/cfn-property-mixins';
const cfnTestCaseMixinProps: connect.CfnTestCaseMixinProps = {
content: 'content',
description: 'description',
entryPoint: {
chatEntryPointParameters: {
flowId: 'flowId',
},
type: 'type',
voiceCallEntryPointParameters: {
destinationPhoneNumber: 'destinationPhoneNumber',
flowId: 'flowId',
sourcePhoneNumber: 'sourcePhoneNumber',
},
},
initializationData: 'initializationData',
instanceArn: 'instanceArn',
name: 'name',
status: 'status',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| content? | string | The content 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. |
| instance | string | The identifier of the Amazon Connect instance. |
| name? | string | The name of the test case. |
| status? | string | The status of the test case. |
| tags? | Cfn[] | One or more tags. |
content?
Type:
string
(optional)
The content 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.
instanceArn?
Type:
string
(optional)
The identifier of the Amazon Connect instance.
name?
Type:
string
(optional)
The name 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