package awsglue // A structure that describes a target database for resource linking. // // 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" // // databaseIdentifierProperty := &DatabaseIdentifierProperty{ // CatalogId: jsii.String("catalogId"), // DatabaseName: jsii.String("databaseName"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseidentifier.html // type CfnDatabase_DatabaseIdentifierProperty struct { // The ID of the Data Catalog in which the database resides. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseidentifier.html#cfn-glue-database-databaseidentifier-catalogid // CatalogId *string `field:"optional" json:"catalogId" yaml:"catalogId"` // The name of the catalog database. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseidentifier.html#cfn-glue-database-databaseidentifier-databasename // DatabaseName *string `field:"optional" json:"databaseName" yaml:"databaseName"` }