interface InputFileProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppTest.CfnTestCasePropsMixin.InputFileProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapptest#CfnTestCasePropsMixin_InputFileProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.apptest.CfnTestCasePropsMixin.InputFileProperty |
Python | aws_cdk.cfn_property_mixins.aws_apptest.CfnTestCasePropsMixin.InputFileProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apptest » 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 { aws_apptest as apptest } from '@aws-cdk/cfn-property-mixins';
const inputFileProperty: apptest.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