Type Alias APIDeploymentPayload

APIDeploymentPayload: {
    cors: boolean | APIEnvironmentCorsConfiguration;
    env: string;
    handler: string;
    isWafEnabled?: boolean;
    memorySize?: number;
    network?: APIEnvironmentNetworkConfiguration | null;
    routes: APIEnvironmentRoute[];
    runtime: string;
    s3: S3ObjectCredentials["s3"];
    scheduledFunctions?: APIDeploymentPayloadScheduledFunction[];
    scope: string;
    timeout: number;
    variables: {
        [key: string]: string;
    };
}