#AWS #Go言語 #LocalStack https://aws.github.io/aws-sdk-go-v2/docs/handling-errors/ 基本的に[[errors.As]]を使う。 ```go var nse *types.NoSuchKey if errors.As(err, &nse) { return nil, nil } ```