//go:build !no_runtime_type_checking package awscdkbatchalpha import ( "fmt" _jsii_ "github.com/aws/jsii-runtime-go/runtime" ) func validateSecretPathVolume_EmptyDirParameters(options *EmptyDirVolumeOptions) error { if options == nil { return fmt.Errorf("parameter options is required, but nil was provided") } if err := _jsii_.ValidateStruct(options, func() string { return "parameter options" }); err != nil { return err } return nil } func validateSecretPathVolume_HostPathParameters(options *HostPathVolumeOptions) error { if options == nil { return fmt.Errorf("parameter options is required, but nil was provided") } if err := _jsii_.ValidateStruct(options, func() string { return "parameter options" }); err != nil { return err } return nil } func validateSecretPathVolume_IsSecretPathVolumeParameters(x interface{}) error { if x == nil { return fmt.Errorf("parameter x is required, but nil was provided") } return nil } func validateSecretPathVolume_SecretParameters(options *SecretPathVolumeOptions) error { if options == nil { return fmt.Errorf("parameter options is required, but nil was provided") } if err := _jsii_.ValidateStruct(options, func() string { return "parameter options" }); err != nil { return err } return nil } func validateNewSecretPathVolumeParameters(options *SecretPathVolumeOptions) error { if options == nil { return fmt.Errorf("parameter options is required, but nil was provided") } if err := _jsii_.ValidateStruct(options, func() string { return "parameter options" }); err != nil { return err } return nil }