Interface CfnTestCasePropsMixin.IFileMetadataProperty
Specifies a file metadata.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppTest
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnTestCasePropsMixin.IFileMetadataProperty
Syntax (vb)
Public Interface CfnTestCasePropsMixin.IFileMetadataProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.AppTest;
var fileMetadataProperty = new FileMetadataProperty {
DatabaseCdc = new DatabaseCDCProperty {
SourceMetadata = new SourceDatabaseMetadataProperty {
CaptureTool = "captureTool",
Type = "type"
},
TargetMetadata = new TargetDatabaseMetadataProperty {
CaptureTool = "captureTool",
Type = "type"
}
},
DataSets = new [] { new DataSetProperty {
Ccsid = "ccsid",
Format = "format",
Length = 123,
Name = "name",
Type = "type"
} }
};
Synopsis
Properties
| DataSets | The data sets of the file metadata. |
| DatabaseCdc | The database CDC of the file metadata. |
Properties
DataSets
The data sets of the file metadata.
object? DataSets { get; }
Property Value
Remarks
DatabaseCdc
The database CDC of the file metadata.
object? DatabaseCdc { get; }