package awsappflow // Trigger settings 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" // // glueDataCatalogProperty := &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-gluedatacatalog.html // type CfnFlow_GlueDataCatalogProperty struct { // A string containing the value for the tag. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-gluedatacatalog.html#cfn-appflow-flow-gluedatacatalog-databasename // DatabaseName *string `field:"required" json:"databaseName" yaml:"databaseName"` // A string containing the value for the tag. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-gluedatacatalog.html#cfn-appflow-flow-gluedatacatalog-rolearn // RoleArn *string `field:"required" json:"roleArn" yaml:"roleArn"` // A string containing the value for the tag. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-gluedatacatalog.html#cfn-appflow-flow-gluedatacatalog-tableprefix // TablePrefix *string `field:"required" json:"tablePrefix" yaml:"tablePrefix"` }