Interface CfnTestCasePropsMixin.CompareActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTestCasePropsMixin.CompareActionProperty.Jsii$Proxy
- Enclosing class:
CfnTestCasePropsMixin
@Stability(Stable)
public static interface CfnTestCasePropsMixin.CompareActionProperty
extends software.amazon.jsii.JsiiSerializable
Compares the action.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.apptest.mixins.*;
CompareActionProperty compareActionProperty = CompareActionProperty.builder()
.input(InputProperty.builder()
.file(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())
.build())
.output(OutputProperty.builder()
.file(OutputFileProperty.builder()
.fileLocation("fileLocation")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTestCasePropsMixin.CompareActionPropertystatic final classAn implementation forCfnTestCasePropsMixin.CompareActionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInput
The input of the compare action.Returns union: either
IResolvableorCfnTestCasePropsMixin.InputProperty- See Also:
-
getOutput
The output of the compare action.Returns union: either
IResolvableorCfnTestCasePropsMixin.OutputProperty- See Also:
-
builder
-