//go:build !no_runtime_type_checking package awscdk import ( "fmt" _jsii_ "github.com/aws/jsii-runtime-go/runtime" "github.com/aws/constructs-go/constructs/v10" ) func validateContextProvider_GetKeyParameters(scope constructs.Construct, options *GetContextKeyOptions) error { if scope == nil { return fmt.Errorf("parameter scope is required, but nil was provided") } 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 validateContextProvider_GetValueParameters(scope constructs.Construct, options *GetContextValueOptions) error { if scope == nil { return fmt.Errorf("parameter scope is required, but nil was provided") } 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 }