package cxapi // 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" // // metadataEntryResult := &MetadataEntryResult{ // Path: jsii.String("path"), // Type: jsii.String("type"), // // // the properties below are optional // Data: jsii.String("data"), // Trace: []*string{ // jsii.String("trace"), // }, // } // type MetadataEntryResult struct { // The type of the metadata entry. Type *string `field:"required" json:"type" yaml:"type"` // The data. Data interface{} `field:"optional" json:"data" yaml:"data"` // A stack trace for when the entry was created. Trace *[]*string `field:"optional" json:"trace" yaml:"trace"` // The path in which this entry was defined. Path *string `field:"required" json:"path" yaml:"path"` }