interface InputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppTest.Mixins.CfnTestCasePropsMixin.InputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapptest/mixins#CfnTestCasePropsMixin_InputProperty |
Java | software.amazon.awscdk.mixins.preview.services.apptest.mixins.CfnTestCasePropsMixin.InputProperty |
Python | aws_cdk.mixins_preview.aws_apptest.mixins.CfnTestCasePropsMixin.InputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apptest » mixins » CfnTestCasePropsMixin » InputProperty |
Specifies the input.
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 inputProperty: apptest_mixins.CfnTestCasePropsMixin.InputProperty = {
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',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| file? | IResolvable | Input | The file in the input. |
file?
Type:
IResolvable | Input
(optional)
The file in the input.

.NET
Go
Java
Python
TypeScript