interface CompareActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppTest.CfnTestCase.CompareActionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapptest#CfnTestCase_CompareActionProperty |
Java | software.amazon.awscdk.services.apptest.CfnTestCase.CompareActionProperty |
Python | aws_cdk.aws_apptest.CfnTestCase.CompareActionProperty |
TypeScript | aws-cdk-lib » aws_apptest » CfnTestCase » CompareActionProperty |
Compares the action.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_apptest as apptest } from 'aws-cdk-lib';
const compareActionProperty: apptest.CfnTestCase.CompareActionProperty = {
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',
},
},
// the properties below are optional
output: {
file: {
fileLocation: 'fileLocation',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| input | IResolvable | Input | The input of the compare action. |
| output? | IResolvable | Output | The output of the compare action. |
input
Type:
IResolvable | Input
The input of the compare action.
output?
Type:
IResolvable | Output
(optional)
The output of the compare action.

.NET
Go
Java
Python
TypeScript