interface DeadLetterQueueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SAM.CfnFunction.DeadLetterQueueProperty |
Java | software.amazon.awscdk.services.sam.CfnFunction.DeadLetterQueueProperty |
Python | aws_cdk.aws_sam.CfnFunction.DeadLetterQueueProperty |
TypeScript | @aws-cdk/aws-sam » CfnFunction » DeadLetterQueueProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sam from '@aws-cdk/aws-sam';
const deadLetterQueueProperty: sam.CfnFunction.DeadLetterQueueProperty = {
targetArn: 'targetArn',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| target | string | CfnFunction.DeadLetterQueueProperty.TargetArn. |
| type | string | CfnFunction.DeadLetterQueueProperty.Type. |
targetArn
Type:
string
CfnFunction.DeadLetterQueueProperty.TargetArn.
type
Type:
string
CfnFunction.DeadLetterQueueProperty.Type.

.NET
Java
Python
TypeScript