//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 (r *jsiiProxy_RemoveTag) validateApplyTagParameters(resource ITaggable) error { if resource == nil { return fmt.Errorf("parameter resource is required, but nil was provided") } return nil } func (r *jsiiProxy_RemoveTag) validateApplyTagV2Parameters(resource ITaggableV2) error { if resource == nil { return fmt.Errorf("parameter resource is required, but nil was provided") } return nil } func (r *jsiiProxy_RemoveTag) validateVisitParameters(construct constructs.IConstruct) error { if construct == nil { return fmt.Errorf("parameter construct is required, but nil was provided") } return nil } func validateNewRemoveTagParameters(key *string, props *TagProps) error { if key == nil { return fmt.Errorf("parameter key is required, but nil was provided") } if err := _jsii_.ValidateStruct(props, func() string { return "parameter props" }); err != nil { return err } return nil }