Interface CfnTestCasePropsMixin.FileMetadataProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTestCasePropsMixin.FileMetadataProperty.Jsii$Proxy
- Enclosing class:
CfnTestCasePropsMixin
@Stability(Stable)
public static interface CfnTestCasePropsMixin.FileMetadataProperty
extends software.amazon.jsii.JsiiSerializable
Specifies a file metadata.
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.*;
FileMetadataProperty fileMetadataProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTestCasePropsMixin.FileMetadataPropertystatic final classAn implementation forCfnTestCasePropsMixin.FileMetadataProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatabaseCdc
The database CDC of the file metadata.Returns union: either
IResolvableorCfnTestCasePropsMixin.DatabaseCDCProperty- See Also:
-
getDataSets
The data sets of the file metadata.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnTestCasePropsMixin.DataSetProperty>- See Also:
-
builder
-