CfnTestCaseMixinProps
- class aws_cdk.cfn_property_mixins.aws_connect.CfnTestCaseMixinProps(*, content=None, description=None, entry_point=None, initialization_data=None, instance_arn=None, name=None, status=None, tags=None)
Bases:
objectProperties for CfnTestCasePropsMixin.
- Parameters:
content (
Optional[str]) – The content of the test case.description (
Optional[str]) – The description of the test case.entry_point (
Union[IResolvable,EntryPointProperty,Dict[str,Any],None]) – The Entry Point associated with the test case.initialization_data (
Optional[str]) – The initialization data of the test case.instance_arn (
Optional[str]) – The identifier of the Amazon Connect instance.name (
Optional[str]) – The name of the test case.status (
Optional[str]) – The status of the test case.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – One or more tags.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-testcase.html
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_connect as connect cfn_test_case_mixin_props = connect.CfnTestCaseMixinProps( content="content", description="description", entry_point=connect.CfnTestCasePropsMixin.EntryPointProperty( chat_entry_point_parameters=connect.CfnTestCasePropsMixin.ChatEntryPointParametersProperty( flow_id="flowId" ), type="type", voice_call_entry_point_parameters=connect.CfnTestCasePropsMixin.VoiceCallEntryPointParametersProperty( destination_phone_number="destinationPhoneNumber", flow_id="flowId", source_phone_number="sourcePhoneNumber" ) ), initialization_data="initializationData", instance_arn="instanceArn", name="name", status="status", tags=[CfnTag( key="key", value="value" )] )
Attributes
- content
The content of the test case.
- description
The description of the test case.
- entry_point
The Entry Point associated with the test case.
- initialization_data
The initialization data of the test case.
- instance_arn
The identifier of the Amazon Connect instance.
- name
The name of the test case.
- status
The status of the test case.