interface SchemaValidationConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lambda.CfnEventSourceMappingPropsMixin.SchemaValidationConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslambda#CfnEventSourceMappingPropsMixin_SchemaValidationConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lambda.CfnEventSourceMappingPropsMixin.SchemaValidationConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_lambda.CfnEventSourceMappingPropsMixin.SchemaValidationConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lambda » 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 { aws_lambda as lambda } from '@aws-cdk/cfn-property-mixins';
const schemaValidationConfigProperty: lambda.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