import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AWSKinesisConfig = { /** * The name of the AWS Kinesis stream. */ streamName: string; /** * The AWS region where the Kinesis stream is located. */ region: string; /** * Optional. Custom AWS endpoint URL (e.g., for LocalStack or VPC endpoints). */ endpoint?: string | undefined; /** * Optional. JMESPath template to extract the partition key from the event payload (e.g., `metadata."event-id"`). Defaults to event ID. */ partitionKeyTemplate?: string | undefined; }; /** @internal */ export declare const AWSKinesisConfig$inboundSchema: z.ZodType; /** @internal */ export type AWSKinesisConfig$Outbound = { stream_name: string; region: string; endpoint?: string | undefined; partition_key_template?: string | undefined; }; /** @internal */ export declare const AWSKinesisConfig$outboundSchema: z.ZodType; export declare function awsKinesisConfigToJSON(awsKinesisConfig: AWSKinesisConfig): string; export declare function awsKinesisConfigFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=awskinesisconfig.d.ts.map