Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-filemetadata.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-filemetadata.html#cfn-apptest-testcase-filemetadata-datasets

Type union: either IResolvable or (either IResolvable or CfnTestCasePropsMixin.IDataSetProperty)[]

DatabaseCdc

The database CDC of the file metadata.

object? DatabaseCdc { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-filemetadata.html#cfn-apptest-testcase-filemetadata-databasecdc

Type union: either IResolvable or CfnTestCasePropsMixin.IDatabaseCDCProperty

Back to top Generated by DocFX