interface InputFileProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.aws_apptest.CfnTestCase.InputFileProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapptest#CfnTestCase_InputFileProperty |
Java | software.amazon.awscdk.services.apptest.CfnTestCase.InputFileProperty |
Python | aws_cdk.aws_apptest.CfnTestCase.InputFileProperty |
TypeScript | aws-cdk-lib » aws_apptest » CfnTestCase » 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 { aws_apptest as apptest } from 'aws-cdk-lib';
const inputFileProperty: apptest.CfnTestCase.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
The file metadata of the input file.
sourceLocation
Type:
string
The source location of the input file.
targetLocation
Type:
string
The target location of the input file.