interface SchemaValidationConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lambda.Mixins.CfnEventSourceMappingPropsMixin.SchemaValidationConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslambda/mixins#CfnEventSourceMappingPropsMixin_SchemaValidationConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.lambda.mixins.CfnEventSourceMappingPropsMixin.SchemaValidationConfigProperty |
Python | aws_cdk.mixins_preview.aws_lambda.mixins.CfnEventSourceMappingPropsMixin.SchemaValidationConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lambda » mixins » CfnEventSourceMappingPropsMixin » SchemaValidationConfigProperty |
Specific schema validation configuration settings that tell Lambda the message attributes you want to validate and filter using your schema registry.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as lambda_mixins } from '@aws-cdk/mixins-preview/aws-lambda';
const schemaValidationConfigProperty: lambda_mixins.CfnEventSourceMappingPropsMixin.SchemaValidationConfigProperty = {
attribute: 'attribute',
};
Properties
| Name | Type | Description |
|---|---|---|
| attribute? | string | The attributes you want your schema registry to validate and filter for. |
attribute?
Type:
string
(optional)
The attributes you want your schema registry to validate and filter for.
If you selected JSON as the EventRecordFormat , Lambda also deserializes the selected message attributes.

.NET
Go
Java
Python
TypeScript