interface AppFlowConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.LookoutMetrics.CfnAnomalyDetectorPropsMixin.AppFlowConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslookoutmetrics#CfnAnomalyDetectorPropsMixin_AppFlowConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lookoutmetrics.CfnAnomalyDetectorPropsMixin.AppFlowConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_lookoutmetrics.CfnAnomalyDetectorPropsMixin.AppFlowConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lookoutmetrics » CfnAnomalyDetectorPropsMixin » AppFlowConfigProperty |
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 { aws_lookoutmetrics as lookoutmetrics } from '@aws-cdk/cfn-property-mixins';
const appFlowConfigProperty: lookoutmetrics.CfnAnomalyDetectorPropsMixin.AppFlowConfigProperty = {
flowName: 'flowName',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| flow | string | name of the flow. |
| role | string | IRole | An IAM role that gives Amazon Lookout for Metrics permission to access the flow. |
flowName?
Type:
string
(optional)
name of the flow.
roleArn?
Type:
string | IRole
(optional)
An IAM role that gives Amazon Lookout for Metrics permission to access the flow.

.NET
Go
Java
Python
TypeScript