package awsappflow // Configurations of metadata catalog of the flow. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // metadataCatalogConfigProperty := &MetadataCatalogConfigProperty{ // GlueDataCatalog: &GlueDataCatalogProperty{ // DatabaseName: jsii.String("databaseName"), // RoleArn: jsii.String("roleArn"), // TablePrefix: jsii.String("tablePrefix"), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-metadatacatalogconfig.html // type CfnFlow_MetadataCatalogConfigProperty struct { // Trigger settings of the flow. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-metadatacatalogconfig.html#cfn-appflow-flow-metadatacatalogconfig-gluedatacatalog // GlueDataCatalog interface{} `field:"optional" json:"glueDataCatalog" yaml:"glueDataCatalog"` }