package awslookoutmetrics // 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 "github.com/aws/aws-cdk-go/awscdk" // // lambdaConfigurationProperty := &LambdaConfigurationProperty{ // LambdaArn: jsii.String("lambdaArn"), // RoleArn: jsii.String("roleArn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-alert-lambdaconfiguration.html // type CfnAlert_LambdaConfigurationProperty struct { // The ARN of the Lambda function. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-alert-lambdaconfiguration.html#cfn-lookoutmetrics-alert-lambdaconfiguration-lambdaarn // LambdaArn *string `field:"required" json:"lambdaArn" yaml:"lambdaArn"` // The ARN of an IAM role that has permission to invoke the Lambda function. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-alert-lambdaconfiguration.html#cfn-lookoutmetrics-alert-lambdaconfiguration-rolearn // RoleArn *string `field:"required" json:"roleArn" yaml:"roleArn"` }