//go:build !no_runtime_type_checking package awscognito import ( "fmt" _jsii_ "github.com/aws/jsii-runtime-go/runtime" "github.com/aws/aws-cdk-go/awscdk/v2/awsiam" ) func (i *jsiiProxy_IUserPool) validateAddClientParameters(id *string, options *UserPoolClientOptions) error { if id == nil { return fmt.Errorf("parameter id is required, but nil was provided") } if err := _jsii_.ValidateStruct(options, func() string { return "parameter options" }); err != nil { return err } return nil } func (i *jsiiProxy_IUserPool) validateAddDomainParameters(id *string, options *UserPoolDomainOptions) error { if id == nil { return fmt.Errorf("parameter id 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 (i *jsiiProxy_IUserPool) validateAddResourceServerParameters(id *string, options *UserPoolResourceServerOptions) error { if id == nil { return fmt.Errorf("parameter id 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 (i *jsiiProxy_IUserPool) validateGrantParameters(grantee awsiam.IGrantable) error { if grantee == nil { return fmt.Errorf("parameter grantee is required, but nil was provided") } return nil } func (i *jsiiProxy_IUserPool) validateRegisterIdentityProviderParameters(provider IUserPoolIdentityProvider) error { if provider == nil { return fmt.Errorf("parameter provider is required, but nil was provided") } return nil }