interface InputFileProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppTest.Mixins.CfnTestCasePropsMixin.InputFileProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapptest/mixins#CfnTestCasePropsMixin_InputFileProperty |
Java | software.amazon.awscdk.mixins.preview.services.apptest.mixins.CfnTestCasePropsMixin.InputFileProperty |
Python | aws_cdk.mixins_preview.aws_apptest.mixins.CfnTestCasePropsMixin.InputFileProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apptest » mixins » CfnTestCasePropsMixin » InputFileProperty |
Specifies the input file.
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 inputFileProperty: apptest_mixins.CfnTestCasePropsMixin.InputFileProperty = {
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 | File | The file metadata of the input file. |
| source | string | The source location of the input file. |
| target | string | The target location of the input file. |
fileMetadata?
Type:
IResolvable | File
(optional)
The file metadata of the input file.
sourceLocation?
Type:
string
(optional)
The source location of the input file.
targetLocation?
Type:
string
(optional)
The target location of the input file.

.NET
Go
Java
Python
TypeScript