package awssagemaker // The baseline statistics file in Amazon S3 that the current monitoring job should be validated against. // // 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" // // statisticsResourceProperty := &StatisticsResourceProperty{ // S3Uri: jsii.String("s3Uri"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-monitoringschedule-statisticsresource.html // type CfnMonitoringSchedule_StatisticsResourceProperty struct { // The S3 URI for the statistics resource. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-monitoringschedule-statisticsresource.html#cfn-sagemaker-monitoringschedule-statisticsresource-s3uri // S3Uri *string `field:"optional" json:"s3Uri" yaml:"s3Uri"` }