interface LambdaConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.LookoutMetrics.CfnAlertPropsMixin.LambdaConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslookoutmetrics#CfnAlertPropsMixin_LambdaConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lookoutmetrics.CfnAlertPropsMixin.LambdaConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_lookoutmetrics.CfnAlertPropsMixin.LambdaConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lookoutmetrics » CfnAlertPropsMixin » LambdaConfigurationProperty |
Contains information about a Lambda configuration.
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 lambdaConfigurationProperty: lookoutmetrics.CfnAlertPropsMixin.LambdaConfigurationProperty = {
lambdaArn: 'lambdaArn',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| lambda | string | The ARN of the Lambda function. |
| role | string | IRole | The ARN of an IAM role that has permission to invoke the Lambda function. |
lambdaArn?
Type:
string
(optional)
The ARN of the Lambda function.
roleArn?
Type:
string | IRole
(optional)
The ARN of an IAM role that has permission to invoke the Lambda function.

.NET
Go
Java
Python
TypeScript