Show / Hide Table of Contents

Interface CfnTestCase.IInputFileProperty

Specifies the input file.

Namespace: Amazon.CDK.AWS.AppTest
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnTestCase.IInputFileProperty
Syntax (vb)
Public Interface CfnTestCase.IInputFileProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-inputfile.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.AWS.AppTest;

             var inputFileProperty = new InputFileProperty {
                 FileMetadata = 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"
                     } }
                 },
                 SourceLocation = "sourceLocation",
                 TargetLocation = "targetLocation"
             };

Synopsis

Properties

FileMetadata

The file metadata of the input file.

SourceLocation

The source location of the input file.

TargetLocation

The target location of the input file.

Properties

FileMetadata

The file metadata of the input file.

object FileMetadata { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnTestCase.IFileMetadataProperty

SourceLocation

The source location of the input file.

string SourceLocation { get; }
Property Value

string

Remarks

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

TargetLocation

The target location of the input file.

string TargetLocation { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX