Interface CfnTestCasePropsMixin.InputFileProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTestCasePropsMixin.InputFileProperty.Jsii$Proxy
- Enclosing class:
CfnTestCasePropsMixin
@Stability(Stable)
public static interface CfnTestCasePropsMixin.InputFileProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the input file.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.apptest.*;
InputFileProperty inputFileProperty = InputFileProperty.builder()
.fileMetadata(FileMetadataProperty.builder()
.databaseCdc(DatabaseCDCProperty.builder()
.sourceMetadata(SourceDatabaseMetadataProperty.builder()
.captureTool("captureTool")
.type("type")
.build())
.targetMetadata(TargetDatabaseMetadataProperty.builder()
.captureTool("captureTool")
.type("type")
.build())
.build())
.dataSets(List.of(DataSetProperty.builder()
.ccsid("ccsid")
.format("format")
.length(123)
.name("name")
.type("type")
.build()))
.build())
.sourceLocation("sourceLocation")
.targetLocation("targetLocation")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTestCasePropsMixin.InputFilePropertystatic final classAn implementation forCfnTestCasePropsMixin.InputFileProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFileMetadata
The file metadata of the input file.Returns union: either
IResolvableorCfnTestCasePropsMixin.FileMetadataProperty- See Also:
-
getSourceLocation
The source location of the input file.- See Also:
-
getTargetLocation
The target location of the input file.- See Also:
-
builder
-