interface CfnTestCaseMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppTest.Mixins.CfnTestCaseMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapptest/mixins#CfnTestCaseMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.apptest.mixins.CfnTestCaseMixinProps |
Python | aws_cdk.mixins_preview.aws_apptest.mixins.CfnTestCaseMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_apptest » mixins » CfnTestCaseMixinProps |
Properties for CfnTestCasePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apptest-testcase.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as apptest_mixins } from '@aws-cdk/mixins-preview/aws-apptest';
const cfnTestCaseMixinProps: apptest_mixins.CfnTestCaseMixinProps = {
description: 'description',
name: 'name',
steps: [{
action: {
compareAction: {
input: {
file: {
fileMetadata: {
databaseCdc: {
sourceMetadata: {
captureTool: 'captureTool',
type: 'type',
},
targetMetadata: {
captureTool: 'captureTool',
type: 'type',
},
},
dataSets: [{
ccsid: 'ccsid',
format: 'format',
length: 123,
name: 'name',
type: 'type',
}],
},
sourceLocation: 'sourceLocation',
targetLocation: 'targetLocation',
},
},
output: {
file: {
fileLocation: 'fileLocation',
},
},
},
mainframeAction: {
actionType: {
batch: {
batchJobName: 'batchJobName',
batchJobParameters: {
batchJobParametersKey: 'batchJobParameters',
},
exportDataSetNames: ['exportDataSetNames'],
},
tn3270: {
exportDataSetNames: ['exportDataSetNames'],
script: {
scriptLocation: 'scriptLocation',
type: 'type',
},
},
},
properties: {
dmsTaskArn: 'dmsTaskArn',
},
resource: 'resource',
},
resourceAction: {
cloudFormationAction: {
actionType: 'actionType',
resource: 'resource',
},
m2ManagedApplicationAction: {
actionType: 'actionType',
properties: {
forceStop: false,
importDataSetLocation: 'importDataSetLocation',
},
resource: 'resource',
},
m2NonManagedApplicationAction: {
actionType: 'actionType',
resource: 'resource',
},
},
},
description: 'description',
name: 'name',
}],
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the test case. |
| name? | string | The name of the test case. |
| steps? | IResolvable | (IResolvable | Step)[] | The steps in the test case. |
| tags? | { [string]: string } | The specified tags of the test case. |
description?
Type:
string
(optional)
The description of the test case.
name?
Type:
string
(optional)
The name of the test case.
steps?
Type:
IResolvable | (IResolvable | Step)[]
(optional)
The steps in the test case.
tags?
Type:
{ [string]: string }
(optional)
The specified tags of the test case.

.NET
Go
Java
Python
TypeScript