package awslookoutmetrics // Details about an Amazon CloudWatch datasource. // // 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" // // cloudwatchConfigProperty := &CloudwatchConfigProperty{ // RoleArn: jsii.String("roleArn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-cloudwatchconfig.html // type CfnAnomalyDetector_CloudwatchConfigProperty struct { // An IAM role that gives Amazon Lookout for Metrics permission to access data in Amazon CloudWatch. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-cloudwatchconfig.html#cfn-lookoutmetrics-anomalydetector-cloudwatchconfig-rolearn // RoleArn *string `field:"required" json:"roleArn" yaml:"roleArn"` }