interface FileMetadataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppTest.Mixins.CfnTestCasePropsMixin.FileMetadataProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapptest/mixins#CfnTestCasePropsMixin_FileMetadataProperty |
Java | software.amazon.awscdk.mixins.preview.services.apptest.mixins.CfnTestCasePropsMixin.FileMetadataProperty |
Python | aws_cdk.mixins_preview.aws_apptest.mixins.CfnTestCasePropsMixin.FileMetadataProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apptest » mixins » 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 { mixins as apptest_mixins } from '@aws-cdk/mixins-preview/aws-apptest';
const fileMetadataProperty: apptest_mixins.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