@@ -19,7 +19,7 @@ import (
1919 "github.com/hashicorp/terraform-provider-aws/internal/enum"
2020 "github.com/hashicorp/terraform-provider-aws/internal/errs"
2121 "github.com/hashicorp/terraform-provider-aws/internal/errs/sdkdiag"
22- intretry "github.com/hashicorp/terraform-provider-aws/internal/retry"
22+ "github.com/hashicorp/terraform-provider-aws/internal/retry"
2323 "github.com/hashicorp/terraform-provider-aws/internal/smerr"
2424 "github.com/hashicorp/terraform-provider-aws/internal/tfresource"
2525 "github.com/hashicorp/terraform-provider-aws/names"
@@ -113,7 +113,7 @@ func resourceAPICacheRead(ctx context.Context, d *schema.ResourceData, meta any)
113113
114114 cache , err := findAPICacheByID (ctx , conn , d .Id ())
115115
116- if ! d .IsNewResource () && intretry .NotFound (err ) {
116+ if ! d .IsNewResource () && retry .NotFound (err ) {
117117 smerr .AppendOne (ctx , diags , sdkdiag .NewResourceNotFoundWarningDiagnostic (err ), smerr .ID , d .Id ())
118118 d .SetId ("" )
119119 return diags
@@ -208,7 +208,7 @@ func statusAPICache(ctx context.Context, conn *appsync.Client, name string) sdkr
208208 return func () (any , string , error ) {
209209 output , err := findAPICacheByID (ctx , conn , name )
210210
211- if intretry .NotFound (err ) {
211+ if retry .NotFound (err ) {
212212 return nil , "" , nil
213213 }
214214
0 commit comments