interface CompareActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppTest.CfnTestCasePropsMixin.CompareActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapptest#CfnTestCasePropsMixin_CompareActionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.apptest.CfnTestCasePropsMixin.CompareActionProperty |
Python | aws_cdk.cfn_property_mixins.aws_apptest.CfnTestCasePropsMixin.CompareActionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apptest » CfnTestCasePropsMixin » 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/cfn-property-mixins';
const compareActionProperty: apptest.CfnTestCasePropsMixin.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',
},
},
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
(optional)
The input of the compare action.
output?
Type:
IResolvable | Output
(optional)
The output of the compare action.

.NET
Go
Java
Python
TypeScript