package awsdatabrew // Contains additional resource information needed for specific datasets. // // 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" // // metadataProperty := &MetadataProperty{ // SourceArn: jsii.String("sourceArn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-metadata.html // type CfnDataset_MetadataProperty struct { // The Amazon Resource Name (ARN) associated with the dataset. // // Currently, DataBrew only supports ARNs from Amazon AppFlow. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-metadata.html#cfn-databrew-dataset-metadata-sourcearn // SourceArn *string `field:"optional" json:"sourceArn" yaml:"sourceArn"` }