//go:build !no_runtime_type_checking package cdklabscdkecscodedeploy import ( "fmt" _jsii_ "github.com/aws/jsii-runtime-go/runtime" ) func validateEcsDeployment_IsConstructParameters(x interface{}) error { if x == nil { return fmt.Errorf("parameter x is required, but nil was provided") } return nil } func (j *jsiiProxy_EcsDeployment) validateSetDeploymentIdParameters(val *string) error { if val == nil { return fmt.Errorf("parameter val is required, but nil was provided") } return nil } func validateNewEcsDeploymentParameters(props *EcsDeploymentProps) 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 }