//go:build !no_runtime_type_checking package awscdkgluealpha import ( "fmt" _jsii_ "github.com/aws/jsii-runtime-go/runtime" ) func validateJobExecutable_OfParameters(config *JobExecutableConfig) error { if config == nil { return fmt.Errorf("parameter config is required, but nil was provided") } if err := _jsii_.ValidateStruct(config, func() string { return "parameter config" }); err != nil { return err } return nil } func validateJobExecutable_PythonEtlParameters(props *PythonSparkJobExecutableProps) error { if props == nil { return fmt.Errorf("parameter props is required, but nil was provided") } if err := _jsii_.ValidateStruct(props, func() string { return "parameter props" }); err != nil { return err } return nil } func validateJobExecutable_PythonRayParameters(props *PythonRayExecutableProps) error { if props == nil { return fmt.Errorf("parameter props is required, but nil was provided") } if err := _jsii_.ValidateStruct(props, func() string { return "parameter props" }); err != nil { return err } return nil } func validateJobExecutable_PythonShellParameters(props *PythonShellExecutableProps) error { if props == nil { return fmt.Errorf("parameter props is required, but nil was provided") } if err := _jsii_.ValidateStruct(props, func() string { return "parameter props" }); err != nil { return err } return nil } func validateJobExecutable_PythonStreamingParameters(props *PythonSparkJobExecutableProps) error { if props == nil { return fmt.Errorf("parameter props is required, but nil was provided") } if err := _jsii_.ValidateStruct(props, func() string { return "parameter props" }); err != nil { return err } return nil } func validateJobExecutable_ScalaEtlParameters(props *ScalaJobExecutableProps) error { if props == nil { return fmt.Errorf("parameter props is required, but nil was provided") } if err := _jsii_.ValidateStruct(props, func() string { return "parameter props" }); err != nil { return err } return nil } func validateJobExecutable_ScalaStreamingParameters(props *ScalaJobExecutableProps) error { if props == nil { return fmt.Errorf("parameter props is required, but nil was provided") } if err := _jsii_.ValidateStruct(props, func() string { return "parameter props" }); err != nil { return err } return nil }