Interface CfnFlow.MetadataCatalogConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlow.MetadataCatalogConfigProperty.Jsii$Proxy
- Enclosing class:
CfnFlow
@Stability(Stable)
public static interface CfnFlow.MetadataCatalogConfigProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the configuration that Amazon AppFlow uses when it catalogs your data.
When Amazon AppFlow catalogs your data, it stores metadata in a data catalog.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.appflow.*;
MetadataCatalogConfigProperty metadataCatalogConfigProperty = MetadataCatalogConfigProperty.builder()
.glueDataCatalog(GlueDataCatalogProperty.builder()
.databaseName("databaseName")
.roleArn("roleArn")
.tablePrefix("tablePrefix")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlow.MetadataCatalogConfigPropertystatic final classAn implementation forCfnFlow.MetadataCatalogConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGlueDataCatalog
Specifies the configuration that Amazon AppFlow uses when it catalogs your data with the AWS Glue Data Catalog .Returns union: either
IResolvableorCfnFlow.GlueDataCatalogProperty- See Also:
-
builder
-