package awssagemaker // Contains explainability metrics for a model. // // 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" // // explainabilityProperty := &ExplainabilityProperty{ // Report: &MetricsSourceProperty{ // ContentType: jsii.String("contentType"), // S3Uri: jsii.String("s3Uri"), // // // the properties below are optional // ContentDigest: jsii.String("contentDigest"), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-explainability.html // type CfnModelPackage_ExplainabilityProperty struct { // The explainability report for a model. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-explainability.html#cfn-sagemaker-modelpackage-explainability-report // Report interface{} `field:"optional" json:"report" yaml:"report"` }