interface FileMetadataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppTest.CfnTestCasePropsMixin.FileMetadataProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapptest#CfnTestCasePropsMixin_FileMetadataProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.apptest.CfnTestCasePropsMixin.FileMetadataProperty |
Python | aws_cdk.cfn_property_mixins.aws_apptest.CfnTestCasePropsMixin.FileMetadataProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apptest » CfnTestCasePropsMixin » FileMetadataProperty |
Specifies a file metadata.
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 fileMetadataProperty: apptest.CfnTestCasePropsMixin.FileMetadataProperty = {
databaseCdc: {
sourceMetadata: {
captureTool: 'captureTool',
type: 'type',
},
targetMetadata: {
captureTool: 'captureTool',
type: 'type',
},
},
dataSets: [{
ccsid: 'ccsid',
format: 'format',
length: 123,
name: 'name',
type: 'type',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| data | IResolvable | (IResolvable | Data)[] | The data sets of the file metadata. |
| database | IResolvable | Database | The database CDC of the file metadata. |
dataSets?
Type:
IResolvable | (IResolvable | Data)[]
(optional)
The data sets of the file metadata.
databaseCdc?
Type:
IResolvable | Database
(optional)
The database CDC of the file metadata.

.NET
Go
Java
Python
TypeScript