//go:build !no_runtime_type_checking package awscodebuild import ( "fmt" _jsii_ "github.com/aws/jsii-runtime-go/runtime" "github.com/aws/aws-cdk-go/awscdk/v2" "github.com/aws/aws-cdk-go/awscdk/v2/awsiam" "github.com/aws/constructs-go/constructs/v10" ) func (r *jsiiProxy_ReportGroup) validateApplyRemovalPolicyParameters(policy awscdk.RemovalPolicy) error { if policy == "" { return fmt.Errorf("parameter policy is required, but nil was provided") } return nil } func (r *jsiiProxy_ReportGroup) validateGetResourceArnAttributeParameters(arnAttr *string, arnComponents *awscdk.ArnComponents) error { if arnAttr == nil { return fmt.Errorf("parameter arnAttr is required, but nil was provided") } if arnComponents == nil { return fmt.Errorf("parameter arnComponents is required, but nil was provided") } if err := _jsii_.ValidateStruct(arnComponents, func() string { return "parameter arnComponents" }); err != nil { return err } return nil } func (r *jsiiProxy_ReportGroup) validateGetResourceNameAttributeParameters(nameAttr *string) error { if nameAttr == nil { return fmt.Errorf("parameter nameAttr is required, but nil was provided") } return nil } func (r *jsiiProxy_ReportGroup) validateGrantWriteParameters(identity awsiam.IGrantable) error { if identity == nil { return fmt.Errorf("parameter identity is required, but nil was provided") } return nil } func validateReportGroup_FromReportGroupNameParameters(scope constructs.Construct, id *string, reportGroupName *string) error { if scope == nil { return fmt.Errorf("parameter scope is required, but nil was provided") } if id == nil { return fmt.Errorf("parameter id is required, but nil was provided") } if reportGroupName == nil { return fmt.Errorf("parameter reportGroupName is required, but nil was provided") } return nil } func validateReportGroup_IsConstructParameters(x interface{}) error { if x == nil { return fmt.Errorf("parameter x is required, but nil was provided") } return nil } func validateReportGroup_IsOwnedResourceParameters(construct constructs.IConstruct) error { if construct == nil { return fmt.Errorf("parameter construct is required, but nil was provided") } return nil } func validateReportGroup_IsResourceParameters(construct constructs.IConstruct) error { if construct == nil { return fmt.Errorf("parameter construct is required, but nil was provided") } return nil } func validateNewReportGroupParameters(scope constructs.Construct, id *string, props *ReportGroupProps) error { if scope == nil { return fmt.Errorf("parameter scope is required, but nil was provided") } if id == nil { return fmt.Errorf("parameter id is required, but nil was provided") } if err := _jsii_.ValidateStruct(props, func() string { return "parameter props" }); err != nil { return err } return nil }