interface EventSourceMappingReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Lambda.EventSourceMappingReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslambda#EventSourceMappingReference |
Java | software.amazon.awscdk.interfaces.lambda.EventSourceMappingReference |
Python | aws_cdk.interfaces.aws_lambda.EventSourceMappingReference |
TypeScript | aws-cdk-lib » interfaces » aws_lambda » EventSourceMappingReference |
A reference to a EventSourceMapping resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lambda as interfaces_aws_lambda } from 'aws-cdk-lib/interfaces';
const eventSourceMappingReference: interfaces_aws_lambda.EventSourceMappingReference = {
eventSourceMappingArn: 'eventSourceMappingArn',
eventSourceMappingId: 'eventSourceMappingId',
};
Properties
| Name | Type | Description |
|---|---|---|
| event | string | The ARN of the EventSourceMapping resource. |
| event | string | The Id of the EventSourceMapping resource. |
eventSourceMappingArn
Type:
string
The ARN of the EventSourceMapping resource.
eventSourceMappingId
Type:
string
The Id of the EventSourceMapping resource.

.NET
Go
Java
Python
TypeScript