package awslambda // The [dead-letter queue](https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#dlq) for failed asynchronous invocations. // // 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" // // deadLetterConfigProperty := &DeadLetterConfigProperty{ // TargetArn: jsii.String("targetArn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html // type CfnFunction_DeadLetterConfigProperty struct { // The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn // TargetArn *string `field:"optional" json:"targetArn" yaml:"targetArn"` }