package awslookoutmetrics // Details about an Amazon AppFlow flow 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" // // appFlowConfigProperty := &AppFlowConfigProperty{ // FlowName: jsii.String("flowName"), // RoleArn: jsii.String("roleArn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-appflowconfig.html // type CfnAnomalyDetector_AppFlowConfigProperty struct { // name of the flow. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-appflowconfig.html#cfn-lookoutmetrics-anomalydetector-appflowconfig-flowname // FlowName *string `field:"required" json:"flowName" yaml:"flowName"` // An IAM role that gives Amazon Lookout for Metrics permission to access the flow. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-appflowconfig.html#cfn-lookoutmetrics-anomalydetector-appflowconfig-rolearn // RoleArn *string `field:"required" json:"roleArn" yaml:"roleArn"` }